:root {
  color-scheme: dark;
  --bg: #07110b;
  --bg-2: #0d1a12;
  --ink: #fffaf2;
  --muted: #d8e4d8;
  --soft: #a3b59f;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --panel: rgba(7, 17, 11, 0.88);
  --panel-strong: rgba(12, 25, 16, 0.96);
  --green: #2fa84f;
  --green-bright: #78d462;
  --red: #e6312d;
  --red-deep: #9f181a;
  --gold: #ffd36a;
  --blue: #8ed9ff;
  --shadow: rgba(0, 0, 0, 0.5);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(47, 168, 79, 0.16), transparent 28rem),
    linear-gradient(140deg, rgba(230, 49, 45, 0.12), transparent 30rem),
    var(--bg);
}

body.nav-locked,
body.age-locked {
  overflow: hidden;
}

body::selection {
  color: #fff;
  background: var(--green);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.age-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.age-panel {
  width: min(31rem, 100%);
  padding: 1.35rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(47, 168, 79, 0.2), transparent 42%),
    var(--panel-strong);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.62);
}

.age-panel img {
  width: 12rem;
  height: auto;
  margin: 0 0 1.2rem;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55));
}

.age-panel h2 {
  margin: 0 0 0.7rem;
  font-size: 2rem;
  line-height: 1;
}

.age-panel p {
  color: var(--muted);
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0.85rem auto 0;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 14, 8, 0.78);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 5.8rem;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(120, 212, 98, 0.22));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
}

.site-nav a {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 0.78rem;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.site-nav .nav-order {
  color: #07110b;
  background: linear-gradient(135deg, var(--green-bright), var(--gold));
  box-shadow: 0 0 18px rgba(120, 212, 98, 0.24);
}

.site-nav .nav-order:hover,
.site-nav .nav-order:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--red));
}

.menu-toggle {
  display: none;
  position: relative;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 0.9rem;
}

.menu-toggle span:nth-child(2) {
  top: 1.37rem;
}

.menu-toggle span:nth-child(3) {
  top: 1.84rem;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateX(-50%) translateY(0.47rem) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateX(-50%) translateY(-0.47rem) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 78svh;
  align-items: center;
  overflow: hidden;
  padding: 6.5rem max(1.25rem, calc((100% - 1180px) / 2)) 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 11, 6, 0.98) 0%, rgba(5, 13, 8, 0.88) 35%, rgba(5, 13, 8, 0.24) 72%),
    linear-gradient(180deg, rgba(7, 17, 11, 0.1), rgba(7, 17, 11, 0.9) 100%),
    linear-gradient(135deg, rgba(47, 168, 79, 0.28), rgba(230, 49, 45, 0.18) 48%, rgba(255, 211, 106, 0.06));
}

.hero-content {
  width: min(45rem, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--green-bright);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--gold);
}

h1 {
  margin: 0;
  color: #fff;
  font-size: 4.8rem;
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.72), 0 0 32px rgba(47, 168, 79, 0.32);
}

h1 span {
  display: block;
}

.accent-line {
  width: fit-content;
  margin: 0.08em 0;
  padding: 0.02em 0.12em 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(47, 168, 79, 0.96), rgba(230, 49, 45, 0.9));
  box-shadow: 0 0 28px rgba(47, 168, 79, 0.24);
}

.hero-copy {
  max-width: 42rem;
  margin: 0.95rem 0 0;
  color: var(--muted);
  font-size: 1.16rem;
  font-weight: 650;
  line-height: 1.55;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.button {
  display: inline-flex;
  min-height: 3.05rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #061108;
  background: linear-gradient(135deg, var(--green-bright), var(--gold));
  box-shadow: 0 15px 34px rgba(47, 168, 79, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--red));
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(120, 212, 98, 0.5);
  background: rgba(47, 168, 79, 0.18);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 39rem;
  margin: 1.15rem 0 0;
}

.hero-stats div {
  min-height: 5.35rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(3, 8, 5, 0.68);
}

.hero-stats dt {
  color: #fff;
  font-size: 1.72rem;
  font-weight: 950;
  line-height: 1;
}

.hero-stats dd {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.notice-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(230, 49, 45, 0.22), rgba(47, 168, 79, 0.22));
}

.notice-strip span {
  padding: 0.45rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.74fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.section-heading h2,
.product-copy h2,
.blog-header h2 {
  margin: 0;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 950;
  line-height: 1;
}

.section-heading p,
.product-copy p,
.blog-header p,
.blog-section p,
.faq-section p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.party-grid,
.availability-cards,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.party-grid article,
.availability-cards article,
.match-list article,
.faq-grid details {
  min-height: 12rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(47, 168, 79, 0.13), transparent 50%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.card-number {
  display: inline-block;
  margin-bottom: 1.15rem;
  color: var(--green-bright);
  font-size: 0.82rem;
  font-weight: 950;
}

h3 {
  margin: 0 0 0.62rem;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.15;
}

.party-grid p,
.availability-cards p,
.match-list p,
.gallery-grid figcaption,
.feature-list span,
.checker-result {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.product-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f7f2;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-copy {
  padding: 0.25rem 0;
}

.product-copy p {
  margin-top: 1rem;
}

.feature-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  gap: 0.18rem;
  padding: 0.82rem;
  border-left: 3px solid var(--green-bright);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.055);
}

.feature-list strong {
  color: #fff;
}

.availability-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.availability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: 1.4rem;
  align-items: start;
}

.availability-layout .section-heading {
  display: block;
  margin: 0;
}

.availability-layout .section-heading p {
  margin-top: 1rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--gold);
  font-weight: 950;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
}

.availability-checker {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.availability-checker label {
  display: block;
  margin-bottom: 0.55rem;
  color: #fff;
  font-weight: 950;
}

.checker-row {
  display: flex;
  gap: 0.55rem;
}

.checker-row input {
  width: 100%;
  min-height: 3.05rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
}

.checker-row input:focus {
  border-color: var(--green-bright);
  outline: none;
  box-shadow: 0 0 0 3px rgba(120, 212, 98, 0.14);
}

.checker-result {
  min-height: 3rem;
  margin-top: 0.9rem;
}

.availability-cards {
  margin-top: 1rem;
}

.match-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.match-list article {
  min-height: 11rem;
}

.match-list time {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 950;
}

.gallery-section {
  border-top: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  left: 0.7rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 950;
  background: rgba(5, 14, 8, 0.76);
  backdrop-filter: blur(10px);
}

.blog-section {
  width: 100%;
  padding: 5rem max(1rem, calc((100% - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(230, 49, 45, 0.12), transparent 24rem),
    linear-gradient(315deg, rgba(47, 168, 79, 0.14), transparent 26rem),
    #0a140e;
}

.blog-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.blog-header {
  position: sticky;
  top: 6.2rem;
}

.blog-header p {
  margin-top: 1rem;
}

.blog-section section {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.blog-section section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.blog-section h3 {
  font-size: 1.32rem;
}

.source-list {
  grid-column: 2;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.source-list ul {
  display: grid;
  gap: 0.5rem;
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.source-list a {
  color: var(--gold);
  font-weight: 800;
  text-underline-offset: 0.2em;
}

.faq-grid details {
  min-height: auto;
}

.faq-grid summary {
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}

.faq-grid p {
  margin-top: 0.7rem;
}

.site-footer {
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: 3rem 1rem;
  text-align: center;
  background: #040806;
}

.footer-brand img {
  width: 8.8rem;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
}

.site-footer p {
  max-width: 58rem;
}

.fine-print {
  color: var(--soft);
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 5rem;
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.4rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 14, 8, 0.96);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.46);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 170ms ease, transform 170ms ease;
  }

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

  .site-nav a {
    justify-content: flex-start;
  }

  h1 {
    font-size: 4.6rem;
  }

  .section-heading,
  .availability-layout,
  .product-section,
  .blog-shell {
    grid-template-columns: 1fr;
  }

  .blog-header {
    position: static;
  }

  .source-list {
    grid-column: auto;
  }

  .party-grid,
  .availability-cards,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .match-list,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 1rem, 1180px);
    margin-top: 0.5rem;
  }

  .brand img {
    width: 5.2rem;
  }

  .hero {
    min-height: 78svh;
    padding: 6.25rem 1rem 1.25rem;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 11, 6, 0.98) 0%, rgba(5, 13, 8, 0.85) 56%, rgba(5, 13, 8, 0.25)),
      linear-gradient(180deg, rgba(7, 17, 11, 0.1), rgba(7, 17, 11, 0.92) 100%);
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .inline-actions,
  .age-actions {
    display: grid;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .hero-stats div {
    min-height: 5.2rem;
    padding: 0.65rem;
  }

  .hero-stats dt {
    font-size: 1.45rem;
  }

  .hero-stats dd {
    font-size: 0.72rem;
  }

  .section {
    width: min(100% - 1rem, 1180px);
    padding: 3.7rem 0;
  }

  .section-heading h2,
  .product-copy h2,
  .blog-header h2 {
    font-size: 2.05rem;
  }

  .checker-row {
    display: grid;
  }

  .match-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .notice-strip {
    justify-content: flex-start;
  }
}
