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

:root {
  --bg: #0f1419;
  --bg-alt: #0a0e14;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f3f4f6;
  --muted: #94a3b8;
  --accent: #e11d2e;
  --accent-hover: #c41928;
  --accent-soft: rgba(225, 29, 46, 0.15);
  --gold: #c9a227;
  --sans: 'DM Sans', system-ui, sans-serif;
  --wrap: 1140px;
  --header-h: 72px;
  --tagline-h: 0px;
  --radius: 16px;
}

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;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { 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: #fff;
  font-weight: 600;
  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(--gold);
  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,
.about-main h2,
.lottery-banner h2,
.locations-intro 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(15, 20, 25, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.site-header.scrolled {
  background: rgba(15, 20, 25, 0.96);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(225, 29, 46, 0.35);
}

.brand-name {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.site-nav a.nav-lottery {
  color: #fff;
  background: var(--accent);
  font-weight: 600;
  padding: 0.45rem 0.85rem;
}

.site-nav a.nav-lottery:hover,
.site-nav a.nav-lottery.active {
  color: #fff;
  background: var(--accent-hover);
}

.site-nav a.nav-facebook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem;
  color: #1877f2;
}

.site-nav a.nav-facebook:hover {
  color: #4599ff;
  background: rgba(24, 119, 242, 0.12);
}

.site-nav a.nav-facebook svg {
  display: block;
}

.footer-facebook {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-facebook svg {
  flex-shrink: 0;
  color: #1877f2;
}

.header-actions { flex-shrink: 0; }

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 1px;
  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); }

/* Tagline */
.tagline-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  height: var(--tagline-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.08), transparent);
  border-bottom: 1px solid var(--border);
}

.tagline-bar p {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.875rem;
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--tagline-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 20, 25, 0.92) 0%, rgba(15, 20, 25, 0.82) 38%, rgba(15, 20, 25, 0.55) 62%, rgba(15, 20, 25, 0.35) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
  width: 100%;
}

.hero-copy h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.hero-trust li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.hero-trust li::before {
  content: '·';
  margin-right: 0.5rem;
  color: var(--accent);
}

.hero-trust li:first-child::before { content: none; margin: 0; }

/* Hero locations list — no box */
.hero-locations {
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
}

.hero-locations-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.hero-store-list li {
  margin-bottom: 1rem;
}

.hero-store-list li:last-child { margin-bottom: 0; }

.hero-store-link {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  transition: transform 0.2s;
}

.hero-store-link:hover {
  transform: translateX(4px);
}

.hero-store-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 50%;
}

.hero-store-details strong {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.hero-store-details span {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
}

.hero-hours {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Trust bar */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.trust-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0;
}

.trust-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

.trust-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.trust-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.trust-item span:last-child {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Products + section visuals */
.shop-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.section-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.section-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.shop-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.shop-content .product-list {
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
}

.shop-content .product-list li {
  padding: 1rem 0;
  border-right: none;
  padding-right: 0;
}

.shop-content .product-list li:last-child {
  border-bottom: none;
}

.photo-band {
  position: relative;
  height: clamp(220px, 32vw, 360px);
  overflow: hidden;
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.photo-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 18%, transparent 82%, var(--bg) 100%);
  pointer-events: none;
}

/* Product list — flowing rows, no boxes */
.product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.product-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.product-list li:nth-child(odd) {
  padding-right: 2rem;
  border-right: 1px solid var(--border);
}

.product-list li:nth-last-child(-n+2) {
  border-bottom: none;
}

.product-list-icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.product-list li strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.product-list li span {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.55;
}

.product-list a {
  color: var(--accent);
  font-weight: 500;
}

.product-list a:hover { text-decoration: underline; }

/* Locations intro */
.locations-intro {
  padding: clamp(3rem, 6vw, 4.5rem) 0 1rem;
  text-align: center;
}

.locations-intro p:last-child {
  max-width: 560px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* Store spotlight — full-width bands, alternating */
.store-spotlight {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  scroll-margin-top: calc(var(--header-h) + var(--tagline-h) + 1rem);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02) 50%, transparent);
}

.store-spotlight-reverse {
  background: linear-gradient(180deg, rgba(225, 29, 46, 0.04), rgba(225, 29, 46, 0.02) 50%, transparent);
}

.store-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.store-spotlight-reverse .store-spotlight-inner {
  direction: rtl;
}

.store-spotlight-reverse .store-spotlight-inner > * {
  direction: ltr;
}

.store-spotlight-content {
  position: relative;
}

.store-spotlight-content h3 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  position: relative;
}

.store-spotlight-lead {
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  position: relative;
}

.store-spotlight-body {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  position: relative;
}

.store-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  position: relative;
}

.store-tags span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.store-contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  position: relative;
}

.store-contact-row > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
  font-size: 0.9375rem;
}

.contact-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 4rem;
}

.store-contact-row a {
  color: var(--accent);
  font-weight: 600;
}

.store-contact-row a:hover { text-decoration: underline; }

.store-spotlight-map {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.store-spotlight-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

/* About */
.about-section {
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
}

.about-flow {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: end;
}

.about-main p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 52ch;
}

.about-list {
  margin-bottom: 2rem;
}

.about-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.about-stats {
  display: flex;
  gap: 2rem;
  padding-bottom: 0.5rem;
}

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

.about-stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.about-stat span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Lottery banner */
.lottery-banner {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lottery-banner-bg {
  position: absolute;
  inset: 0;
}

.lottery-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 20, 25, 0.94) 0%, rgba(15, 20, 25, 0.78) 45%, rgba(15, 20, 25, 0.88) 100%);
}

.lottery-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lottery-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3.5rem 0;
}

.lottery-banner p {
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Reviews */
.reviews-section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 6.5rem) 0;
  overflow: hidden;
}

.reviews-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(225, 29, 46, 0.1), transparent 65%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  pointer-events: none;
}

.reviews-section .wrap {
  position: relative;
}

.reviews-header {
  margin-bottom: 3rem;
}

.reviews-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.reviews-header h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 14ch;
}

.reviews-score-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.reviews-score {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--gold);
}

.reviews-score-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.review-stars {
  color: var(--gold);
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.review-card-featured {
  background: linear-gradient(165deg, rgba(225, 29, 46, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(225, 29, 46, 0.25);
  transform: translateY(-8px);
}

.review-card-featured:hover {
  transform: translateY(-12px);
}

.review-card-accent {
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  opacity: 0.85;
}

.review-card-featured .review-card-accent {
  height: 4px;
  opacity: 1;
}

.review-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(243, 244, 246, 0.88);
  margin-bottom: 1.75rem;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #7f1d1d);
  border-radius: 50%;
}

.review-author strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.review-author span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.footer-muted {
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.footer-list li {
  margin-bottom: 0.4rem;
  font-size: 0.9375rem;
  color: var(--muted);
}

.footer-list a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted);
}

.back-top:hover { color: #fff; }

.site-footer-minimal { padding-top: 0; }

.site-footer-minimal .footer-bottom {
  justify-content: center;
  border-top: none;
  padding: 1.5rem 0;
}

/* Mobile call */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  padding: 0.875rem 1rem;
  padding-bottom: max(0.875rem, env(safe-area-inset-bottom));
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: center;
}

/* Lottery page */
.lottery-page-main {
  min-height: calc(100vh - var(--header-h) - var(--tagline-h));
}

.lottery-page-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--tagline-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.lottery-page-bg {
  position: absolute;
  inset: 0;
}

.lottery-page-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 25, 0.88);
}

.lottery-page-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lottery-page-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  text-align: center;
  margin: 0 auto;
}

.lottery-page-inner h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.lottery-page-brand {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.lottery-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.lottery-stats div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
}

.lottery-stats strong {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.lottery-stats span {
  font-size: 0.875rem;
  color: var(--muted);
}

.lottery-disclaimer-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}

.lottery-disclaimer-box p {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.lottery-age-line {
  margin-top: 0.75rem !important;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  color: var(--gold) !important;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner,
  .about-flow,
  .store-spotlight-inner,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .section-visual {
    max-height: 320px;
  }

  .store-spotlight-reverse .store-spotlight-inner {
    direction: ltr;
  }

  .store-spotlight-map {
    order: -1;
  }

  .product-list {
    grid-template-columns: 1fr;
  }

  .product-list li:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }

  .product-list li:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .product-list li:last-child {
    border-bottom: none;
  }

  .review-flow,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .review-card-featured {
    transform: none;
  }

  .review-card-featured:hover {
    transform: translateY(-4px);
  }

  .reviews-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-bar-inner {
    flex-wrap: wrap;
  }

  .trust-item {
    flex: 1 1 40%;
  }

  .trust-item::after { display: none; }

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

  .about-stats {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.75rem 1rem;
    border-radius: 8px;
  }

  .header-actions { display: none; }
  .menu-btn { display: flex; }

  .hero-locations {
    padding-left: 0;
    border-left: none;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }

  .trust-item {
    flex: 1 1 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .trust-icon { margin-bottom: 0; }

  .lottery-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .mobile-call { display: block; }
  body { padding-bottom: 3.5rem; }
}

@media (max-width: 480px) {
  .about-stats {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .about-stat { text-align: left; }

  .lottery-stats {
    grid-template-columns: 1fr;
  }
}
