:root {
  --black: #050605;
  --charcoal: #111312;
  --charcoal-2: #191b18;
  --red: #9d241d;
  --red-dark: #5f1511;
  --cream: #f3ead8;
  --paper: #dfcfad;
  --brass: #b6914a;
  --brass-light: #d8bd72;
  --forest: #0b241c;
  --forest-2: #143b2f;
  --white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.88);
  --muted-light: rgba(255, 255, 255, 0.66);
  --text-dark: #191812;
  --muted-dark: rgba(25, 24, 18, 0.72);
  --line-light: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(25, 24, 18, 0.15);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
  --max: 1180px;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

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

html {
  background: var(--black);
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--black);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--brass-light);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--text-dark);
  background: var(--brass-light);
  font-weight: 850;
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line-light);
  background: rgba(5, 6, 5, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 48px;
}

.brand span {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line-light);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  position: absolute;
  left: 16px;
  right: 16px;
  top: calc(100% + 1px);
  display: none;
  padding: 8px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  background: #070807;
  box-shadow: var(--shadow);
}

.primary-nav.open {
  display: grid;
  gap: 3px;
}

.primary-nav a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--muted-light);
  font-size: 0.9rem;
  font-weight: 800;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.primary-nav .nav-action {
  color: #171108;
  background: var(--brass-light);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: 3.15rem;
  line-height: 0.94;
}

h2 {
  font-size: 2.55rem;
  line-height: 0.98;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.08;
}

p {
  margin: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--line-light);
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-red {
  color: var(--white);
  background: var(--red);
}

.button-red:hover {
  background: #ad2a23;
}

.button-brass {
  color: #171108;
  border-color: rgba(0, 0, 0, 0.15);
  background: var(--brass-light);
}

.button-brass:hover {
  background: #e2c77a;
}

.button-ghost {
  color: var(--cream);
  background: transparent;
}

.button-dark {
  color: var(--cream);
  background: var(--charcoal);
}

.button-quiet {
  color: var(--text-dark);
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.55);
}

.small-note {
  margin-top: 14px;
  color: var(--muted-light);
  font-size: 0.82rem;
  line-height: 1.55;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  background:
    linear-gradient(180deg, rgba(5, 6, 5, 0.1), rgba(5, 6, 5, 0.94)),
    var(--black);
}

.hero-grid {
  min-height: calc(100svh - 170px);
  display: grid;
  gap: 30px;
  align-items: center;
  padding: 30px 0 34px;
}

.hero-copy {
  max-width: 680px;
}

.hero-lead {
  max-width: 620px;
  margin-top: 18px;
  color: var(--text-light);
  font-size: 1.07rem;
  line-height: 1.72;
}

.hero-scene {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 5, 0.03), rgba(5, 6, 5, 0.24));
  pointer-events: none;
}

.hero-scene img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: 56% center;
}

.signal-bar {
  border-bottom: 1px solid var(--line-light);
  background: #080908;
}

.signal-grid {
  display: grid;
}

.signal-grid div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.signal-grid div:last-child {
  border-bottom: 0;
}

.signal-grid strong {
  display: block;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1;
}

.signal-grid span {
  display: block;
  margin-top: 7px;
  color: var(--muted-light);
  font-size: 0.92rem;
}

.section {
  padding: 72px 0;
}

.section-product {
  background:
    linear-gradient(180deg, #07130f, #050605 78%),
    var(--black);
}

.product-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.product-can {
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(157, 36, 29, 0.18), rgba(5, 6, 5, 0.28)),
    var(--charcoal);
}

.product-can img {
  width: min(70vw, 310px);
  height: auto;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.56));
}

.product-copy {
  max-width: 660px;
}

.product-copy p {
  margin-top: 18px;
  color: var(--text-light);
  font-size: 1.06rem;
  line-height: 1.72;
}

.fact-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line-light);
}

.fact-list div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
}

.fact-list dt {
  color: var(--brass-light);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
  color: var(--text-light);
}

.section-story {
  background: var(--forest);
}

.story-grid {
  display: grid;
  gap: 26px;
}

.story-copy,
.story-text {
  max-width: 720px;
}

.story-text {
  display: grid;
  gap: 16px;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-outdoors {
  color: var(--text-dark);
  background:
    linear-gradient(180deg, var(--cream), var(--paper));
}

.section-outdoors .eyebrow,
.section-merch .eyebrow,
.legal-main .eyebrow {
  color: var(--red);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted-dark);
  font-size: 1.05rem;
  line-height: 1.72;
}

.editorial-grid {
  display: grid;
  gap: 16px;
}

.editorial-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.editorial-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.editorial-large img {
  object-position: 50% center;
}

.editorial-item:nth-child(2) img {
  object-position: 58% center;
}

.editorial-item:nth-child(3) img {
  object-position: 43% center;
}

.editorial-item figcaption {
  padding: 16px;
}

.editorial-item span {
  display: block;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.editorial-item strong {
  display: block;
  margin-top: 6px;
  color: var(--text-dark);
  font-family: var(--serif);
  font-size: 1.38rem;
  line-height: 1.08;
}

.section-merch {
  color: var(--text-dark);
  background: #ebe0c8;
}

.merch-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.merch-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--charcoal);
}

.merch-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: 50% center;
}

.merch-copy p {
  margin-top: 16px;
  color: var(--muted-dark);
  font-size: 1.05rem;
  line-height: 1.72;
}

.hat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.hat-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: var(--white);
}

.section-contact {
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.9), rgba(5, 6, 5, 0.68)),
    var(--forest-2);
}

.contact-grid {
  display: grid;
  gap: 18px;
}

.contact-copy {
  padding: 24px 0;
  border-top: 1px solid var(--line-light);
}

.contact-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--text-light);
  font-size: 1.04rem;
  line-height: 1.72;
}

.contact-copy > .button {
  margin-top: 26px;
}

.site-footer {
  padding: 38px 0 26px;
  border-top: 1px solid var(--line-light);
  color: var(--muted-light);
  background: #050605;
}

.footer-grid {
  display: grid;
  gap: 26px;
}

.footer-logo {
  width: auto;
  height: 62px;
  margin-bottom: 14px;
}

.footer-grid p {
  max-width: 460px;
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted-light);
  font-size: 0.92rem;
}

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

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(5, 6, 5, 0.76), rgba(5, 6, 5, 0.96)),
    url("assets/Buckshot Lager Campfire.png") center / cover no-repeat;
}

.age-gate.open {
  display: flex;
}

.age-panel {
  width: min(610px, calc(100vw - 36px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--text-dark);
  background: linear-gradient(180deg, var(--cream), var(--paper));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.66);
}

.age-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-dark);
}

.age-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.age-brand img {
  width: auto;
  height: 48px;
}

.age-brand strong {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1;
}

.age-panel-top span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.age-panel-body {
  padding: 24px 18px;
}

.age-panel-body .eyebrow {
  color: var(--red);
}

.age-panel-body h2 {
  font-size: 2.45rem;
  line-height: 0.98;
}

.age-panel-body p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted-dark);
  line-height: 1.65;
}

.age-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.legal-main {
  color: var(--text-dark);
  background: linear-gradient(180deg, var(--cream), var(--paper));
}

.legal-hero {
  padding: 52px 0 28px;
}

.legal-content {
  padding: 0 0 72px;
}

.legal-card {
  max-width: 900px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
}

.legal-card h2 {
  margin: 28px 0 8px;
  color: var(--text-dark);
  font-family: var(--sans);
  font-size: 1.25rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted-dark);
  line-height: 1.72;
}

.legal-card a {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-main .small-note {
  color: var(--muted-dark);
}

.review-note {
  max-width: 900px;
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--brass);
  color: var(--muted-dark);
  background: rgba(255, 255, 255, 0.5);
}

.shop-hero {
  padding: 30px 0 38px;
  background: var(--black);
}

.shop-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.shop-grid p {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.72;
}

.shop-grid h1 {
  font-size: 2.36rem;
}

.shop-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.shop-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: 48% center;
}

.shop-panels {
  display: grid;
  gap: 14px;
}

.shop-panel {
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.shop-panel p {
  margin-top: 10px;
  color: var(--muted-light);
  line-height: 1.7;
}

.shop-panel h2 {
  font-size: 1.75rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js .hero .reveal,
.js .shop-hero .reveal {
  opacity: 1;
  transform: none;
}

@media (min-width: 620px) {
  .button {
    width: auto;
  }

  .age-actions {
    display: flex;
  }

  .age-actions .button {
    min-width: 150px;
  }

  .hat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .signal-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .signal-grid div {
    padding: 20px 20px;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .signal-grid div:first-child {
    padding-left: 0;
  }

  .signal-grid div:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .editorial-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .editorial-large {
    grid-row: span 2;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .shop-panels {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 940px) {
  .wrap {
    width: min(var(--max), calc(100% - 48px));
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 2px;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .primary-nav a {
    padding: 9px 11px;
    font-size: 0.82rem;
  }

  .primary-nav .nav-action {
    margin-left: 8px;
    padding-inline: 14px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    padding: 42px 0 50px;
  }

  .section {
    padding: 92px 0;
  }

  .product-grid {
    grid-template-columns: 0.74fr 1fr;
    gap: 56px;
  }

  .product-can {
    min-height: 610px;
  }

  .product-can img {
    width: min(29vw, 350px);
  }

  .story-grid {
    grid-template-columns: 0.86fr 1fr;
    gap: 54px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .merch-grid {
    grid-template-columns: 0.96fr 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    align-items: start;
  }

  .shop-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 4.05rem;
  }

  .primary-nav a {
    padding-inline: 13px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.7rem;
    line-height: 0.96;
  }

  .hero-grid {
    min-height: auto;
    gap: 24px;
    padding: 28px 0 26px;
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero .button-row,
  .shop-hero .button-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .hero .button-row .button:first-child,
  .shop-hero .button-row .button:first-child {
    grid-column: 1 / -1;
  }

  .age-panel-body h2 {
    font-size: 2.12rem;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.48rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .age-panel-body h2 {
    font-size: 2rem;
  }

  .fact-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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