* {
  box-sizing: border-box;
}

:root {
  --black: #030403;
  --charcoal: #0a0f0d;
  --charcoal-2: #111712;
  --white: #f2f2ed;
  --muted: #c9c9c1;
  --green: #9cff00;
  --line: rgba(156, 255, 0, 0.55);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.top-strip {
  height: 22px;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
  color: var(--white);
  background: #000;
  border-bottom: 1px solid rgba(156, 255, 0, 0.18);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.top-strip span::before {
  content: "•";
  color: var(--green);
  margin-right: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(22px, 6vw, 92px);
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.brand-lockup strong,
.brand-lockup span,
.brand-lockup small {
  display: none;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
  text-decoration: none;
  background: transparent;
}

.brand-logo-img {
  display: block;
  width: clamp(180px, 17vw, 280px);
  height: auto;
  max-height: 82px;
  object-fit: contain;
  background: transparent;
}

.site-footer .brand-logo-img {
  width: clamp(150px, 13vw, 220px);
  max-height: 64px;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 30px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header nav a,
.site-footer nav a {
  text-decoration: none;
  opacity: 0.94;
}

.site-header nav a:first-child {
  color: var(--green);
  border-bottom: 3px solid var(--green);
  padding-bottom: 8px;
}

.site-header .header-directions-btn {
  min-height: 38px;
  padding: 0 14px;
  font-size: 9px;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: start;
  padding: clamp(40px, 5vw, 72px) clamp(22px, 6vw, 92px) 70px;
  background:
    radial-gradient(circle at 70% 28%, rgba(156, 255, 0, 0.10), transparent 22%),
    radial-gradient(circle at 25% 48%, rgba(156, 255, 0, 0.06), transparent 28%),
    linear-gradient(135deg, #07100d 0%, #020302 62%, #000 100%);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(58px, 6.8vw, 112px);
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--green);
}

.hero-text {
  max-width: 560px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn.primary {
  background: #76bd00;
  color: #fff;
}

.btn.secondary {
  border: 1px solid var(--green);
  color: var(--white);
  background: rgba(0, 0, 0, 0.35);
}

.hero-photo {
  margin: 0;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: min(58vh, 560px);
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
  border: 1px solid rgba(156, 255, 0, 0.32);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 28px clamp(22px, 6vw, 92px);
  border-top: 1px solid rgba(156, 255, 0, 0.35);
  border-bottom: 1px solid rgba(156, 255, 0, 0.22);
  background: #030403;
}

.trust-row div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 52px;
}

.trust-row span {
  color: var(--green);
  font-size: 28px;
}

.trust-row strong {
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  padding: clamp(72px, 8vw, 120px) clamp(22px, 6vw, 92px);
  border-bottom: 1px solid rgba(156, 255, 0, 0.18);
  background: #030403;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.42em;
  text-align: center;
  text-transform: uppercase;
}

.section h2 {
  margin: 0 0 42px;
  text-align: center;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.product-selling-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(156, 255, 0, 0.08), transparent 28%),
    #030403;
}

.product-selling-section .zone-grid {
  margin-top: 34px;
}

.product-selling-section .zone-card {
  min-height: 190px;
}

.product-section {
  display: none;
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.zone-card {
  min-height: 178px;
  padding: 28px;
  border: 1px solid rgba(156, 255, 0, 0.52);
  background:
    radial-gradient(circle at 55% 20%, rgba(156, 255, 0, 0.08), transparent 26%),
    linear-gradient(145deg, #07100d, #030403);
}

.zone-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.zone-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.brands-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(156, 255, 0, 0.08), transparent 30%),
    #030403;
}

.brand-logo-grids {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.brand-logo-grid {
  display: grid;
  gap: 14px;
  width: 100%;
}

.brand-logo-grid-main {
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  max-width: 860px;
  margin: 0 auto;
}

.brand-logo-grid-bottom {
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  max-width: calc((min(100%, 860px) - 56px) / 5 * 4 + 42px);
  margin: 0 auto;
}

.brand-logo-tile {
  aspect-ratio: 1 / 1;
  margin: 0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(156, 255, 0, 0.68);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 10%, rgba(156, 255, 0, 0.10), transparent 45%),
    linear-gradient(145deg, rgba(20, 24, 24, 0.94), rgba(2, 4, 3, 0.98));
  box-shadow:
    0 0 0 1px rgba(156, 255, 0, 0.18),
    0 0 22px rgba(156, 255, 0, 0.18);
  overflow: hidden;
}

.brand-logo-tile img {
  display: block;
  width: 88%;
  height: 88%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform: none;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.brand-disclaimer {
  max-width: 920px;
  margin: 28px auto 0;
  color: rgba(242, 242, 237, 0.58);
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
}

.photo-grid,
.product-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.photo-card,
.product-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(156, 255, 0, 0.44);
  background: #050505;
  border-radius: 8px;
  content-visibility: auto;
  contain-intrinsic-size: 320px 240px;
}

.photo-card img,
.product-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.link-story-section {
  padding: clamp(72px, 8vw, 120px) clamp(28px, 6vw, 84px);
  border-top: 1px solid rgba(156, 255, 0, 0.22);
  border-bottom: 1px solid rgba(156, 255, 0, 0.22);
  background:
    radial-gradient(circle at 25% 20%, rgba(156, 255, 0, 0.10), transparent 32%),
    linear-gradient(135deg, rgba(8, 20, 12, 0.95), rgba(0, 0, 0, 0.98));
}

.link-story-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(400px, 1.1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.link-story-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.link-story-art img,
.link-story-cat {
  display: block;
  width: min(100%, 500px);
  max-width: 500px;
  height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.link-story-copy {
  max-width: 680px;
}

.link-story-copy .eyebrow {
  margin: 0 0 10px;
  text-align: left;
}

.link-story-copy h2 {
  margin: 8px 0 22px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.link-story-copy p {
  margin: 0 0 16px;
  color: rgba(242, 242, 237, 0.78);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.65;
}

.link-story-copy p:last-child {
  margin-bottom: 0;
}

.link-story-copy strong {
  color: #f2f2ed;
}

.social-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(156, 255, 0, 0.7);
  border-radius: 999px;
  background: rgba(156, 255, 0, 0.08);
  color: var(--green);
  text-decoration: none;
}

.social-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-icon.facebook::before,
.social-icon.facebook::after,
.fb-mark::before,
.fb-mark::after {
  content: none;
  display: none;
}

.social-icon.facebook .fb-mark {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  color: currentColor;
  transform: translateY(0);
}

.map-review-section .social-icon.facebook .fb-mark,
.site-footer .social-icon.facebook .fb-mark {
  font-size: 22px;
  transform: translateY(1px);
}

.site-header-end {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 30px);
}

.site-header .social-icon-row {
  gap: 9px;
}

.site-header .social-icon {
  width: 34px;
  height: 34px;
}

.site-header .social-icon svg {
  width: 17px;
  height: 17px;
}

.site-header .social-icon.facebook .fb-mark {
  display: block;
  text-transform: none;
  letter-spacing: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  color: currentColor;
  transform: translateY(1px);
}

.map-review-section .social-icon-row {
  margin-top: 18px;
}

.map-review-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(72px, 8vw, 112px) clamp(22px, 6vw, 92px);
  background: radial-gradient(circle at 18% 16%, rgba(156, 255, 0, 0.09), transparent 30%), #030403;
  border-top: 1px solid rgba(156, 255, 0, 0.22);
  border-bottom: 1px solid rgba(156, 255, 0, 0.4);
}

.map-review-section .eyebrow {
  text-align: left;
}

.map-review-section h2 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.map-review-section p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 20px;
}

.map-frame {
  border: 1px solid rgba(156, 255, 0, 0.55);
  border-radius: 10px;
  overflow: hidden;
  min-height: 420px;
  background: #050505;
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(36px, 5vw, 56px) clamp(22px, 6vw, 92px) clamp(28px, 4vw, 40px);
  background: #000;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 920px;
  gap: 18px;
}

.site-footer .brand-logo-link {
  display: inline-flex;
  justify-content: center;
}

.site-footer nav {
  justify-content: center;
}

.site-footer .social-icon-row {
  justify-content: center;
}

.site-footer .age-box {
  margin-top: 4px;
  border: 2px solid var(--green);
  color: var(--green);
  font-size: 30px;
  font-weight: 950;
  padding: 15px 16px;
}

.site-footer .footer-disclaimer {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.footer-credit {
  width: 100%;
  max-width: 720px;
  margin: 10px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(156, 255, 0, 0.15);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.footer-credit a {
  color: var(--green);
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .link-story-grid {
    grid-template-columns: 1fr;
  }

  .link-story-art {
    justify-content: flex-start;
  }

  .link-story-art img,
  .link-story-cat {
    max-width: 360px;
  }
}

@media (max-width: 1100px) {
  .brand-logo-grid-main {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }

  .brand-logo-grid-bottom {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    max-width: 100%;
  }
}

@media (max-width: 1000px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .map-review-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero h1 {
    font-size: clamp(56px, 15vw, 92px);
    line-height: 0.88;
  }

  .hero-photo img {
    height: auto;
  }

  .zone-grid,
  .photo-grid,
  .product-photo-grid,
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-review-section {
    grid-template-columns: 1fr;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
    height: 360px;
  }
}

@media (max-width: 560px) {
  .top-strip {
    display: none;
  }

  .zone-grid,
  .photo-grid,
  .product-photo-grid,
  .trust-row,
  .brand-logo-grid-main,
  .brand-logo-grid-bottom {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

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