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

:root {
  --asphalt: #1A1A1A;
  --asphalt-mid: #252525;
  --red: #D62828;
  --red-bright: #FF3232;
  --chrome: #C8C8C8;
  --offwhite: #F0EDE8;
  --amber: #F4A61D;
  --amber-dim: #C4831A;
  --green: #2ED573;
  --panel-bg: #111111;
  --led-glow: rgba(244, 166, 29, 0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--asphalt);
  color: var(--offwhite);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  background: rgba(26,26,26,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,200,200,0.08);
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--offwhite);
}

.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chrome);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--amber); }

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 3px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--red-bright) !important; color: #fff !important; }

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--asphalt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 60%, rgba(214,40,40,0.08) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.012) 60px,
      rgba(255,255,255,0.012) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.012) 60px,
      rgba(255,255,255,0.012) 61px
    );
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 48px;
}

.hero-headline .line2 { color: var(--amber); display: block; }

/* LED PRICE BOARD */
.price-board {
  background: var(--asphalt-mid);
  border: 2px solid rgba(200,200,200,0.12);
  border-radius: 6px;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  box-shadow: 0 0 60px rgba(0,0,0,0.6), inset 0 0 30px rgba(0,0,0,0.4);
  margin-bottom: 56px;
  width: 100%;
  max-width: 680px;
}

.price-board::before {
  content: 'TODAY\'S PRICES';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--asphalt-mid);
  padding: 0 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--chrome);
  white-space: nowrap;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
}

.price-divider {
  width: 100%;
  height: 1px;
  background: rgba(200,200,200,0.1);
}

.fuel-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome);
  min-width: 100px;
}

.fuel-grade {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #666;
  text-transform: uppercase;
  min-width: 80px;
  text-align: center;
}

.led-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--amber);
  text-shadow:
    0 0 12px var(--led-glow),
    0 0 30px rgba(244,166,29,0.2);
  line-height: 1;
  min-width: 120px;
  text-align: right;
  animation: ledPulse 4s ease-in-out infinite;
}

.led-price.green {
  color: var(--green);
  text-shadow: 0 0 12px rgba(46,213,115,0.35), 0 0 30px rgba(46,213,115,0.15);
  animation: ledPulseGreen 4s ease-in-out infinite;
}

@keyframes ledPulse {
  0%, 100% { text-shadow: 0 0 12px rgba(244,166,29,0.35), 0 0 30px rgba(244,166,29,0.2); }
  50% { text-shadow: 0 0 18px rgba(244,166,29,0.55), 0 0 45px rgba(244,166,29,0.3); }
}

@keyframes ledPulseGreen {
  0%, 100% { text-shadow: 0 0 12px rgba(46,213,115,0.35), 0 0 30px rgba(46,213,115,0.15); }
  50% { text-shadow: 0 0 18px rgba(46,213,115,0.55), 0 0 45px rgba(46,213,115,0.25); }
}

.price-per {
  font-size: 0.7rem;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.08em;
  align-self: flex-end;
  padding-bottom: 8px;
}

.hero-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--offwhite);
  display: block;
}

.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #666;
}

.hero-stat-sep {
  width: 1px;
  background: rgba(200,200,200,0.12);
  align-self: stretch;
}

/* STRIP */
.strip {
  background: var(--red);
  padding: 16px 48px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.strip-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.strip-item svg { flex-shrink: 0; }

/* SERVICES */
.section {
  padding: 96px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 48px;
  color: var(--offwhite);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: rgba(200,200,200,0.08);
}

.service-card {
  background: var(--asphalt-mid);
  padding: 36px 32px;
  transition: background 0.2s;
}

.service-card:hover { background: #2d2d2d; }

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--amber);
}

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  color: var(--offwhite);
}

.service-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #888;
}

/* HOURS / LOCATION */
.split-section {
  background: var(--asphalt);
  padding: 96px 48px;
}

.split-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.hours-table tr {
  border-bottom: 1px solid rgba(200,200,200,0.07);
}

.hours-table td {
  padding: 14px 0;
  font-size: 0.9rem;
  color: #999;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--offwhite);
  letter-spacing: 0.05em;
}

.hours-table td:last-child { text-align: right; }

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(46,213,115,0.12);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  border: 1px solid rgba(46,213,115,0.25);
  margin-top: 28px;
}

.open-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.map-placeholder {
  margin-top: 32px;
  background: var(--asphalt-mid);
  border: 1px solid rgba(200,200,200,0.1);
  border-radius: 4px;
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #555;
}

.map-placeholder svg { color: var(--red); opacity: 0.7; }

.map-address {
  font-size: 0.85rem;
  color: #777;
  text-align: center;
  line-height: 1.6;
}

.map-address strong {
  display: block;
  color: var(--offwhite);
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(244,166,29,0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.directions-link:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

/* AMENITIES */
.amenities-section {
  padding: 96px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px 16px;
  border: 1px solid rgba(200,200,200,0.08);
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}

.amenity:hover {
  border-color: rgba(244,166,29,0.3);
  background: rgba(244,166,29,0.04);
}

.amenity-icon { color: var(--amber); }

.amenity-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--offwhite);
}

/* CTA */
.cta-section {
  background: var(--red);
  padding: 80px 48px;
  text-align: center;
}

.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #fff;
  color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-primary:hover { background: var(--asphalt); color: #fff; }

.btn-ghost {
  background: transparent;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* FOOTER */
footer {
  background: var(--asphalt);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(200,200,200,0.06);
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--offwhite);
}

.footer-logo span { color: var(--red); }

.footer-copy {
  font-size: 0.8rem;
  color: #555;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--chrome); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .section { padding: 64px 20px; }
  .split-inner { grid-template-columns: 1fr; gap: 48px; }
  .split-section { padding: 64px 20px; }
  .amenities-section { padding: 64px 20px; }
  .cta-section { padding: 64px 20px; }
  footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
  .price-board { padding: 28px 20px; }
  .led-price { font-size: 2.2rem; }
  .strip { padding: 14px 20px; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .led-price { animation: none; }
  .open-dot { animation: none; }
}