*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #141210;
  --bg-alt: #1c1814;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f3f0eb;
  --muted: #a89f92;
  --accent: #e8a317;
  --accent-hover: #f0b830;
  --accent-soft: rgba(232, 163, 23, 0.14);
  --accent-glow: rgba(232, 163, 23, 0.25);
  --sans: 'DM Sans', system-ui, sans-serif;
  --wrap: 1140px;
  --header-h: 72px;
  --radius: 16px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.lottery-page { overflow-x: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, dl { list-style: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 300;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #1c1814;
  font-weight: 700;
  border-radius: 8px;
}

.skip-link:focus { top: 1rem; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section { padding: clamp(4rem, 8vw, 6rem) 0; }

.section-head { max-width: 640px; margin-bottom: 2.5rem; }

.section-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2,
.drive-copy h2,
.visit-info h2,
.lottery-banner h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-desc {
  margin-top: 0.75rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 52ch;
}

.section-head-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(20, 18, 16, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.site-header.scrolled {
  background: rgba(20, 18, 16, 0.96);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex-shrink: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
}

.brand-text { min-width: 0; }

.brand-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-left: auto;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.site-nav a.active {
  background: var(--surface);
}

.header-actions { flex-shrink: 0; }

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body.menu-open { overflow: hidden; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #1c1814;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 12px 28px var(--accent-glow);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.8125rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(232, 163, 23, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 80%, rgba(232, 163, 23, 0.08) 0%, transparent 50%),
    linear-gradient(165deg, #1c1814 0%, #141210 45%, #0f0d0b 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero-copy { max-width: 600px; }

.hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(232, 163, 23, 0.25);
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(2.125rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--accent);
}

.lead {
  margin-top: 1rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 54ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-trust li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.hero-trust li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 700;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.hero-panel-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-panel-list {
  display: grid;
  gap: 0.85rem;
}

.hero-panel-list li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.hero-panel-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.hero-panel-list strong {
  font-size: 0.9375rem;
  font-weight: 600;
}

.hero-panel-list span {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Trust bar */
.trust-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.trust-icon {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.trust-item strong {
  font-size: 0.9375rem;
  font-weight: 600;
}

.trust-item span {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Product list — flowing rows */
.product-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--surface);
}

.product-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.product-list li:last-child { border-bottom: none; }

.product-list li:hover {
  background: rgba(255, 255, 255, 0.03);
}

.product-list-icon {
  font-size: 1.35rem;
  line-height: 1;
  margin-top: 0.15rem;
}

.product-list strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-list span {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.55;
}

.product-list a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-list a:hover { color: var(--accent-hover); }

/* Drive-thru section */
.drive-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.drive-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

.drive-copy p {
  color: var(--muted);
  margin-top: 1rem;
  max-width: 52ch;
}

.drive-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.drive-tags li {
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(232, 163, 23, 0.2);
  border-radius: 999px;
}

.drive-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.drive-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.drive-card-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.hours-list li:last-child { border-bottom: none; }

.hours-list span:last-child { font-weight: 600; }

.drive-card .btn { margin-top: 1.25rem; }

/* Visit */
.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: stretch;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-card {
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.info-card-wide { grid-column: span 2; }

.info-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.info-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.info-value:hover { color: var(--accent); }

.info-text {
  font-size: 0.9375rem;
  line-height: 1.55;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.info-card .btn { margin-top: 0.25rem; }

.map-wrap {
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  flex: 1;
  min-height: 420px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.map-col {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.map-address {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  text-align: center;
}

.map-address a {
  color: var(--accent);
  font-weight: 600;
}

.map-address a:hover { color: var(--accent-hover); }

/* FAQ */
.faq-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.faq-item dt {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-item dd {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: #0c0a08;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand .brand-name-sm {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.footer-brand p {
  font-size: 0.8125rem;
  color: var(--muted);
  max-width: 36ch;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.back-top {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}

.back-top:hover { color: var(--accent); }

.site-footer-minimal {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

.site-footer-minimal a { color: var(--accent); }

.mobile-call {
  display: none;
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 99;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #1c1814;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 32px var(--accent-glow);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Lottery page */
.lottery-main {
  min-height: calc(100vh - var(--header-h));
}

.lottery-banner {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.lottery-banner-bg {
  position: absolute;
  inset: 0;
}

.lottery-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(232, 163, 23, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, rgba(20, 18, 16, 0.72) 0%, rgba(20, 18, 16, 0.88) 45%, rgba(20, 18, 16, 0.94) 100%);
}

.lottery-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.lottery-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.lottery-banner h2 {
  margin-bottom: 0.5rem;
}

.lottery-banner .section-desc {
  margin: 0.75rem auto 0;
}

.lottery-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}

.lottery-stat {
  padding: 1.5rem 1rem;
  background: rgba(20, 18, 16, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.lottery-stat strong {
  display: block;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.lottery-stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lottery-disclaimer {
  max-width: 480px;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(20, 18, 16, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  backdrop-filter: blur(8px);
}

.lottery-disclaimer p + p { margin-top: 0.35rem; }

.lottery-age {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
}

.lottery-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 960px) {
  .hero-inner,
  .drive-layout,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-panel { order: -1; }
}

@media (max-width: 768px) {
  .header-actions { display: none; }
}

@media (max-width: 640px) {
  .menu-btn { display: flex; }

  .site-nav {
    display: flex;
    position: fixed;
    inset: var(--header-h) 0 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    background: rgba(20, 18, 16, 0.98);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .site-nav a {
    display: block;
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .trust-bar-inner,
  .info-cards {
    grid-template-columns: 1fr;
  }

  .info-card-wide { grid-column: auto; }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }

  .mobile-call { display: block; }

  .site-footer {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
