/* Celmorix Grand — production stylesheet */
:root {
  --ink: #070c14;
  --ink-soft: #0b121e;
  --ink-card: #101927;
  --paper: #f2eee5;
  --paper-soft: #d5d0c7;
  --muted: #969ca4;
  --gold: #d7b36a;
  --gold-bright: #f0d393;
  --gold-deep: #9b7738;
  --red: #ba3a2e;
  --red-bright: #ec5b4b;
  --line: rgba(242, 238, 229, .14);
  --line-strong: rgba(215, 179, 106, .32);
  --shadow: 0 30px 80px rgba(0, 0, 0, .42);
  --radius: 3px;
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --container: 1240px;
  --header-height: 94px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold-deep) var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.age-locked {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--ink);
  background: var(--gold-deep);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 140px 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  color: var(--red-bright);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.craft-panel__copy h3,
.entry-copy h2,
.rules-section h2,
.faq-section h2,
.privacy-section h2 {
  margin-bottom: 28px;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .92;
}

h1 em,
h2 em,
.craft-panel h3 em,
.entry-copy h2 em,
.privacy-section h2 em {
  color: var(--gold-bright);
  font-weight: 400;
}

h2 {
  font-size: clamp(3.4rem, 6vw, 6.25rem);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 15px 23px;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.primary-nav a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
.check-field input:focus-visible + .check-box {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.button--gold {
  background: linear-gradient(115deg, #b88d42, #e4c57f 48%, #c29950);
  box-shadow: inset 0 1px rgba(255, 255, 255, .3), 0 12px 32px rgba(205, 159, 77, .15);
  color: #080d14;
}

.button--gold:hover {
  box-shadow: inset 0 1px rgba(255, 255, 255, .45), 0 17px 38px rgba(205, 159, 77, .25);
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .02);
  color: var(--paper);
}

.button--ghost:hover {
  border-color: var(--gold);
  background: rgba(215, 179, 106, .08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(215, 179, 106, .5);
  padding: 7px 0;
  color: var(--paper);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease;
}

.text-link:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

/* Age gate */
.age-gate {
  position: fixed;
  z-index: 1900;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(2, 6, 11, .9), rgba(2, 6, 11, .97)),
    url("assets/images/celmorix-hero.webp") center / cover;
  backdrop-filter: blur(15px);
}

.age-gate__card {
  position: relative;
  width: min(100%, 590px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  padding: 58px;
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 179, 106, .13), transparent 40%),
    var(--ink-soft);
  box-shadow: var(--shadow);
  text-align: center;
}

.age-gate__card::before,
.age-gate__card::after {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--gold);
  content: "";
}

.age-gate__card::before {
  top: 12px;
  left: 12px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.age-gate__card::after {
  right: 12px;
  bottom: 12px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.age-gate .brand-mark {
  width: 66px;
  height: 66px;
  margin: 0 auto 25px;
}

.age-gate .eyebrow {
  justify-content: center;
}

.age-gate h2 {
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 8vw, 4.3rem);
}

.age-gate p:not(.eyebrow) {
  max-width: 450px;
  margin: 0 auto 28px;
  color: var(--paper-soft);
}

.age-gate__actions {
  display: grid;
  gap: 10px;
}

.age-gate small {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: .7rem;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
}

.announcement {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(5, 9, 15, .8);
  color: #c3c3be;
  font-size: .64rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.announcement strong {
  color: var(--gold-bright);
  font-weight: 700;
}

.announcement__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5dc476;
  box-shadow: 0 0 0 4px rgba(93, 196, 118, .12);
}

.announcement__divider {
  width: 1px;
  height: 11px;
  background: rgba(255, 255, 255, .23);
}

.nav-wrap {
  position: relative;
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.site-header.is-fixed {
  position: fixed;
  transform: translateY(-35px);
  animation: header-in .35s ease both;
  background: rgba(7, 12, 20, .94);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}

@keyframes header-in {
  from { transform: translateY(calc(-100% - 35px)); }
  to { transform: translateY(-35px); }
}

.site-header.is-fixed .announcement {
  visibility: hidden;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-mark svg path:first-child {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}

.brand-mark svg path:last-child {
  fill: var(--gold);
}

.brand-type {
  display: grid;
  line-height: 1;
}

.brand-type strong {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: .1em;
}

.brand-type small {
  margin-top: 5px;
  color: var(--gold);
  font-size: .53rem;
  letter-spacing: .45em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(19px, 2.5vw, 38px);
}

.primary-nav > a:not(.button) {
  position: relative;
  color: #c4c5c3;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 100%;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: right .25s ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button).is-active::after {
  right: 0;
}

.button--nav {
  min-height: 42px;
  border-color: var(--line-strong);
  padding: 12px 18px;
  color: var(--gold-bright);
}

.button--nav:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 1px;
  margin: 6px auto;
  background: var(--paper);
  transition: transform .25s ease;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: min(960px, 100vh);
  overflow: hidden;
  align-items: end;
  padding: calc(var(--header-height) + 92px) 0 45px;
  isolation: isolate;
}

.hero__media,
.hero__grain {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.93) contrast(1.02);
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 15, 1) 0%, rgba(5, 9, 15, .94) 23%, rgba(5, 9, 15, .37) 48%, rgba(5, 9, 15, .06) 78%),
    linear-gradient(0deg, rgba(5, 9, 15, .96) 0%, transparent 34%),
    linear-gradient(180deg, rgba(4, 8, 14, .5), transparent 30%);
  content: "";
}

.hero__grain {
  z-index: -1;
  opacity: .11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  display: grid;
  align-items: end;
  gap: 50px;
  grid-template-columns: minmax(0, 1fr) 380px;
}

.hero__copy {
  max-width: 680px;
}

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(4.7rem, 8vw, 8.4rem);
  text-shadow: 0 8px 40px rgba(0, 0, 0, .35);
}

.hero h1 em {
  display: inline-block;
  color: var(--gold-bright);
}

.hero__lede {
  max-width: 565px;
  margin-bottom: 33px;
  color: #d2d0c9;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 30px 0 0;
  padding: 0;
  color: #a9aaa7;
  font-size: .68rem;
  letter-spacing: .05em;
  list-style: none;
  text-transform: uppercase;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-list svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
}

.hero-panel {
  border: 1px solid var(--line-strong);
  padding: 27px;
  background: rgba(7, 12, 20, .82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  color: var(--muted);
  font-size: .61rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #bfe5c7;
}

.status-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #64c67a;
  box-shadow: 0 0 0 5px rgba(100, 198, 122, .1);
}

.hero-panel__label {
  margin: 24px 0 11px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
}

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

.countdown > div {
  position: relative;
  padding: 11px 4px 9px;
  background: rgba(255, 255, 255, .035);
  text-align: center;
}

.countdown > div:not(:last-child)::after {
  position: absolute;
  top: 21px;
  right: -6px;
  color: var(--gold-deep);
  content: ":";
}

.countdown strong,
.countdown span {
  display: block;
}

.countdown strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.countdown span {
  margin-top: 7px;
  color: var(--muted);
  font-size: .54rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.entry-meter {
  margin-top: 24px;
}

.entry-meter__count {
  display: flex;
  align-items: center;
  color: var(--paper-soft);
  font-size: .68rem;
  letter-spacing: .02em;
}

.entry-meter__count strong {
  margin: 0 4px 0 8px;
  color: var(--paper);
  font-size: .9rem;
  font-variant-numeric: tabular-nums;
}

.live-icon {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
}

.live-icon::after {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--red-bright);
  border-radius: 50%;
  content: "";
  animation: live 1.8s ease-out infinite;
}

@keyframes live {
  from { opacity: .9; transform: scale(.5); }
  to { opacity: 0; transform: scale(1.45); }
}

.entry-meter__bar {
  height: 3px;
  margin: 13px 0 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, .07);
}

.entry-meter__bar span {
  display: block;
  width: 67%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
}

.entry-meter small {
  display: block;
  color: #737a83;
  font-size: .59rem;
  line-height: 1.5;
}

.hero__legal {
  margin-top: 48px;
  color: #777d84;
  font-size: .57rem;
  letter-spacing: .06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero__legal a {
  color: #a4a7a9;
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid #a37a3a;
  border-bottom: 1px solid #a37a3a;
  background: #cba65e;
  color: #0a0e14;
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  padding: 12px 0;
  animation: marquee 32s linear infinite;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.marquee__track i {
  color: var(--red);
  font-size: .52rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Collection */
.collection {
  background:
    radial-gradient(circle at 80% 22%, rgba(126, 48, 42, .15), transparent 29%),
    radial-gradient(circle at 12% 65%, rgba(215, 179, 106, .07), transparent 31%),
    var(--ink-soft);
}

.collection::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7vw;
  width: 1px;
  background: linear-gradient(transparent, var(--line), transparent);
  content: "";
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 70px;
  margin-bottom: 72px;
  grid-template-columns: 1.4fr .6fr;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 10px;
  color: var(--muted);
}

.collection-grid {
  display: grid;
  align-items: start;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.product-card:nth-child(2) {
  margin-top: 55px;
}

.product-card__visual {
  position: relative;
  height: 505px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #09111d;
}

.product-card__visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .05);
  background: linear-gradient(0deg, rgba(4, 8, 14, .2), transparent 45%);
  content: "";
  pointer-events: none;
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .7s ease;
}

.product-card--one img { object-position: 70% center; }
.product-card--two img { object-position: 46% 55%; }
.product-card--three img { object-position: 92% 65%; }

.product-card:hover img {
  transform: scale(1.035);
  filter: brightness(1.06);
}

.product-card__number {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(215, 179, 106, .55);
  border-radius: 50%;
  background: rgba(7, 12, 20, .65);
  color: var(--gold-bright);
  font-size: .62rem;
  backdrop-filter: blur(8px);
}

.product-card__body {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 5px 0;
}

.product-card__body p {
  margin-bottom: 3px;
  color: var(--red-bright);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-card__body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 400;
}

.tag {
  border: 1px solid var(--line);
  padding: 5px 8px;
  color: var(--muted);
  font-size: .52rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.craft-panel {
  display: grid;
  overflow: hidden;
  margin-top: 130px;
  border: 1px solid var(--line);
  background: #0a1019;
  grid-template-columns: 1.3fr .7fr;
}

.craft-panel__image {
  min-height: 650px;
  overflow: hidden;
}

.craft-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-panel__copy {
  display: flex;
  padding: 70px 55px;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 179, 106, .12), transparent 36%),
    #101722;
}

.craft-panel__copy h3 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 4.7vw, 5rem);
}

.craft-panel__copy > p:not(.eyebrow) {
  color: var(--muted);
}

.spec-list {
  margin: 25px 0 0;
}

.spec-list > div {
  display: grid;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding: 13px 0;
  grid-template-columns: 75px 1fr;
}

.spec-list dt {
  color: var(--gold);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: #d3d2ce;
  font-size: .82rem;
}

/* Process */
.process {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.process::after {
  position: absolute;
  top: 50px;
  right: -110px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(7, 12, 20, .1);
  border-radius: 50%;
  box-shadow: inset 0 0 0 45px var(--paper), inset 0 0 0 46px rgba(7, 12, 20, .1), inset 0 0 0 90px var(--paper), inset 0 0 0 91px rgba(7, 12, 20, .1);
  content: "";
}

.process .eyebrow {
  color: var(--red);
}

.process h2 em {
  color: #9a6a2a;
}

.process-intro {
  display: grid;
  align-items: end;
  gap: 55px;
  margin-bottom: 65px;
  grid-template-columns: 1fr 1fr;
}

.process-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -25px;
}

.process-intro h2,
.process-intro > p {
  margin-bottom: 0;
}

.process-intro > p {
  max-width: 470px;
  padding-bottom: 10px;
  color: #5d6268;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 390px;
  border-top: 1px solid rgba(7, 12, 20, .18);
  border-right: 1px solid rgba(7, 12, 20, .12);
  padding: 50px 46px 35px 0;
}

.steps li:not(:first-child) {
  padding-left: 46px;
}

.steps li:last-child {
  border-right: 0;
  padding-right: 0;
}

.step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  color: rgba(7, 12, 20, .22);
  font-family: var(--display);
  font-size: 3rem;
  font-style: italic;
}

.step-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 63px;
  place-items: center;
  border: 1px solid rgba(155, 106, 42, .5);
  border-radius: 50%;
}

.step-icon svg {
  width: 36px;
  fill: none;
  stroke: #8e642f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.steps h3 {
  margin: 0 0 13px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.steps p {
  margin: 0;
  color: #64676c;
  font-size: .91rem;
}

/* Free banner */
.free-banner {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: var(--red);
}

.free-banner__pattern {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: repeating-linear-gradient(120deg, transparent 0 25px, rgba(255, 255, 255, .15) 25px 26px);
}

.free-banner__inner {
  position: relative;
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: 135px 1fr 1.25fr;
}

.seal {
  display: grid;
  width: 130px;
  height: 130px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px var(--red), inset 0 0 0 8px rgba(255, 255, 255, .35);
  text-align: center;
  transform: rotate(-9deg);
}

.seal span {
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 1;
}

.seal small {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .3em;
}

.free-banner .eyebrow {
  margin-bottom: 10px;
  color: #f4c9c3;
}

.free-banner h2 {
  margin: 0;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
}

.free-banner h2 em {
  color: var(--paper);
}

.free-banner__inner > p {
  margin: 0;
  color: #f0deda;
}

.free-banner a {
  font-weight: 700;
}

/* Entry */
.entry-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(215, 179, 106, .08), transparent 25%),
    linear-gradient(140deg, #07101b, #070b12 70%);
}

.entry-orbit {
  position: absolute;
  top: 50%;
  left: -350px;
  width: 820px;
  height: 820px;
  border: 1px solid rgba(215, 179, 106, .12);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 70px var(--ink), inset 0 0 0 71px rgba(215, 179, 106, .12), inset 0 0 0 140px var(--ink), inset 0 0 0 141px rgba(215, 179, 106, .12), inset 0 0 0 210px var(--ink), inset 0 0 0 211px rgba(215, 179, 106, .12);
}

.entry-layout {
  position: relative;
  display: grid;
  align-items: center;
  gap: 100px;
  grid-template-columns: minmax(0, .85fr) minmax(450px, .7fr);
}

.entry-copy h2 {
  font-size: clamp(4rem, 6.6vw, 7rem);
}

.entry-copy > p:not(.eyebrow) {
  max-width: 510px;
  color: var(--muted);
}

.entry-copy > p strong {
  color: var(--paper);
}

.entry-facts {
  max-width: 520px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.entry-facts li {
  display: grid;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 17px 0;
  grid-template-columns: 60px 1fr;
}

.entry-facts li > span {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
}

.entry-facts p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
}

.entry-facts strong {
  color: var(--paper);
}

.form-card {
  position: relative;
  border: 1px solid var(--line-strong);
  padding: 40px;
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 179, 106, .08), transparent 34%),
    #0e1723;
  box-shadow: var(--shadow);
}

.form-card::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 54px;
  height: 54px;
  border-right: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  content: "";
  pointer-events: none;
}

.form-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
  padding-bottom: 23px;
}

.form-card__header div {
  display: grid;
}

.form-card__header div span {
  color: var(--gold);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.form-card__header div strong {
  margin-top: 3px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
}

.secure-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.secure-label svg {
  width: 16px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
}

.field {
  position: relative;
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #d7d5cf;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 55px;
  border: 1px solid rgba(242, 238, 229, .17);
  border-radius: 0;
  padding: 13px 15px;
  background: rgba(0, 0, 0, .18);
  color: var(--paper);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input::placeholder {
  color: #666d76;
}

.field select {
  cursor: pointer;
  color-scheme: dark;
}

.field select option {
  background: #101927;
  color: #f2eee5;
}

.field select option:checked {
  background: #d7b36a;
  color: #070c14;
}

.field select option:disabled {
  background: #0b121e;
  color: #969ca4;
}

.field input:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(215, 179, 106, .08);
}

.field.is-invalid input,
.field.is-invalid select {
  border-color: var(--red-bright);
}

.field-note {
  display: block;
  margin-top: 6px;
  color: #757b84;
  font-size: .61rem;
}

.field-error {
  display: block;
  min-height: 0;
  margin-top: 5px;
  color: #ff8377;
  font-size: .65rem;
  line-height: 1.35;
}

.field-error:not(:empty) {
  min-height: 15px;
}

.check-field {
  position: relative;
  display: grid;
  cursor: pointer;
  gap: 12px;
  margin-top: 15px;
  color: #aeb1b3;
  font-size: .71rem;
  line-height: 1.5;
  grid-template-columns: 20px 1fr;
}

.check-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.check-box {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(242, 238, 229, .26);
  background: rgba(0, 0, 0, .18);
}

.check-box svg {
  width: 13px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  opacity: 0;
}

.check-field input:checked + .check-box {
  border-color: var(--gold);
  background: var(--gold);
}

.check-field input:checked + .check-box svg {
  opacity: 1;
}

.check-field a {
  color: var(--gold-bright);
}

.check-field.is-invalid .check-box {
  border-color: var(--red-bright);
}

.check-error {
  margin-left: 32px;
}

.button--submit {
  width: 100%;
  margin-top: 25px;
}

.button--submit[disabled] {
  cursor: wait;
  filter: saturate(.5);
  opacity: .7;
}

.website-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-submit-error {
  border: 1px solid rgba(236, 91, 75, .45);
  margin: 14px 0 0;
  padding: 10px 13px;
  background: rgba(186, 58, 46, .1);
  color: #ff9a90;
  font-size: .7rem;
  line-height: 1.45;
  text-align: center;
}

.form-fineprint {
  margin: 15px 0 0;
  color: #707781;
  font-size: .59rem;
  line-height: 1.55;
  text-align: center;
}

.form-success {
  padding: 35px 5px 15px;
  text-align: center;
}

.success-mark {
  width: 78px;
  margin: 0 auto 25px;
}

.success-mark svg {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.form-success .eyebrow {
  justify-content: center;
  margin-bottom: 10px;
}

.form-success h3 {
  margin: 0 0 15px;
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 400;
}

.form-success > p:not(.eyebrow):not(.form-fineprint) {
  color: var(--muted);
}

.form-success strong {
  color: var(--paper);
}

.confirmation-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed var(--line-strong);
  margin-top: 25px;
  padding: 13px 17px;
  color: var(--muted);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.confirmation-code strong {
  color: var(--gold-bright);
  font-family: monospace;
  font-size: .9rem;
  letter-spacing: .08em;
}

/* Rules */
.rules-section {
  background: #e9e4da;
  color: var(--ink);
}

.rules-section .eyebrow {
  color: var(--red);
}

.rules-section h2 em {
  color: #98692d;
}

.section-heading--rules > p {
  color: #65686a;
}

.rules-snapshot {
  display: grid;
  border-top: 1px solid rgba(7, 12, 20, .2);
  border-bottom: 1px solid rgba(7, 12, 20, .2);
  margin-bottom: 55px;
  grid-template-columns: repeat(4, 1fr);
}

.rules-snapshot > div {
  padding: 27px;
  border-right: 1px solid rgba(7, 12, 20, .13);
}

.rules-snapshot > div:first-child {
  padding-left: 0;
}

.rules-snapshot > div:last-child {
  border-right: 0;
}

.rules-snapshot span,
.rules-snapshot strong,
.rules-snapshot small {
  display: block;
}

.rules-snapshot span {
  margin-bottom: 7px;
  color: #7a6350;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.rules-snapshot strong {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
}

.rules-snapshot small {
  color: #777979;
  font-size: .64rem;
}

.rules-document {
  border: 1px solid rgba(7, 12, 20, .17);
  padding: 60px;
  background: #f5f1e9;
  box-shadow: 0 20px 55px rgba(55, 43, 25, .08);
}

.rules-document__intro {
  max-width: 780px;
  margin-bottom: 50px;
}

.rules-document__intro > span {
  color: var(--red);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.rules-document__intro h3 {
  margin: 10px 0 17px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
}

.rules-document__intro p {
  color: #555a5c;
  font-size: .82rem;
}

.rules-columns {
  display: grid;
  gap: 65px;
  grid-template-columns: 1fr 1fr;
}

.rules-columns section {
  border-top: 1px solid rgba(7, 12, 20, .13);
  padding: 20px 0 18px;
}

.rules-columns h4 {
  margin: 0 0 10px;
  color: #302b25;
  font-size: .73rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.rules-columns p {
  margin: 0;
  color: #5e6262;
  font-size: .77rem;
  line-height: 1.75;
}

.rules-columns a,
.privacy-copy a {
  color: #7c4f24;
}

.rules-version {
  border-top: 1px solid rgba(7, 12, 20, .13);
  margin: 25px 0 0;
  padding-top: 17px;
  color: #858785;
  font-size: .62rem;
}

/* FAQ */
.faq-section {
  background:
    radial-gradient(circle at 14% 30%, rgba(215, 179, 106, .08), transparent 24%),
    var(--ink-soft);
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: 110px;
  grid-template-columns: .7fr 1fr;
}

.faq-intro {
  position: sticky;
  top: 140px;
}

.faq-intro h2 {
  font-size: clamp(3.8rem, 6vw, 6.4rem);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 360px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 50px 26px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.25;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 17px;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: transform .2s ease;
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details[open] summary {
  color: var(--gold-bright);
}

.faq-list details p {
  max-width: 660px;
  margin: -5px 50px 27px 0;
  color: var(--muted);
  font-size: .9rem;
}

/* Privacy */
.privacy-section {
  padding: 120px 0;
  background: var(--paper);
  color: var(--ink);
}

.privacy-section .eyebrow {
  color: var(--red);
}

.privacy-section h2 {
  margin: 0;
  font-size: clamp(3.4rem, 5vw, 5.8rem);
}

.privacy-section h2 em {
  color: #98692d;
}

.privacy-layout {
  display: grid;
  gap: 85px;
  grid-template-columns: .8fr 1.2fr;
}

.privacy-copy {
  columns: 2;
  column-gap: 45px;
}

.privacy-copy p {
  break-inside: avoid;
  color: #5c6061;
  font-size: .79rem;
  line-height: 1.75;
}

.privacy-copy strong {
  color: #24201c;
}

.privacy-copy .privacy-updated {
  border-top: 1px solid rgba(7, 12, 20, .14);
  padding-top: 12px;
  color: #848786;
  font-size: .62rem;
}

/* Notice and footer */
.play-notice {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 42px 0;
  background: #0e1520;
}

.play-notice__inner {
  display: grid;
  align-items: center;
  gap: 28px;
  grid-template-columns: 75px 1fr auto;
}

.age-badge {
  display: flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 2rem;
}

.age-badge span {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 800;
}

.play-notice h2 {
  margin: 0 0 3px;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
}

.play-notice p {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  font-size: .77rem;
}

.play-notice .button {
  min-height: 48px;
}

.site-footer {
  padding: 90px 0 25px;
  background: #05080d;
}

.footer-main {
  display: grid;
  align-items: start;
  gap: 60px;
  grid-template-columns: .75fr .8fr 1.45fr;
}

.brand--footer .brand-mark {
  width: 49px;
  height: 49px;
}

.brand--footer .brand-type strong {
  font-size: 1.4rem;
}

.footer-tagline {
  color: var(--muted);
  font-family: var(--display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
}

.footer-tagline span {
  color: var(--paper);
}

.footer-links {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-links a {
  color: #8e949b;
  font-size: .72rem;
  text-decoration: none;
}

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

.footer-bottom {
  position: relative;
  display: grid;
  align-items: center;
  gap: 45px;
  border-top: 1px solid var(--line);
  margin-top: 70px;
  padding-top: 24px;
  padding-right: 60px;
  color: #616871;
  font-size: .57rem;
  line-height: 1.55;
  grid-template-columns: auto 1fr;
}

.footer-bottom p {
  margin: 0;
}

.back-top {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 1rem;
  text-decoration: none;
}

.noscript {
  position: fixed;
  z-index: 3000;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 20px;
  background: #fff3b8;
  color: #17130b;
  font-size: .8rem;
  text-align: center;
}

/* Scroll reveals */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .75, .25, 1);
}

.js .reveal--delay {
  transition-delay: .12s;
}

.js .reveal--delay-2 {
  transition-delay: .24s;
}

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

/* Tablet */
@media (max-width: 1080px) {
  :root { --header-height: 78px; }

  .primary-nav {
    gap: 18px;
  }

  .primary-nav > a:not(.button) {
    font-size: .61rem;
  }

  .hero {
    min-height: 900px;
  }

  .hero__content {
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 9.5vw, 6.7rem);
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card:nth-child(2) {
    margin-top: 0;
  }

  .product-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    margin: 0 auto;
  }

  .craft-panel {
    grid-template-columns: 1fr 1fr;
  }

  .craft-panel__copy {
    padding: 55px 40px;
  }

  .free-banner__inner {
    gap: 35px;
    grid-template-columns: 110px 1fr 1.2fr;
  }

  .seal {
    width: 105px;
    height: 105px;
  }

  .entry-layout {
    gap: 55px;
    grid-template-columns: .8fr 1fr;
  }

  .rules-document {
    padding: 45px;
  }

  .faq-layout {
    gap: 70px;
  }

  .footer-main {
    grid-template-columns: .65fr 1.35fr;
  }

  .footer-tagline {
    display: none;
  }
}

/* Mobile navigation and layouts */
@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .section {
    padding: 95px 0;
  }

  .announcement {
    padding: 8px 12px;
    text-align: center;
  }

  .announcement > span:not(.announcement__dot),
  .announcement__divider {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: block;
    visibility: visible;
    flex: 0 0 46px;
    opacity: 1;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    display: flex;
    width: min(88vw, 430px);
    height: 100dvh;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 120px 40px 40px;
    transform: translateX(105%);
    background:
      radial-gradient(circle at 100% 0%, rgba(215, 179, 106, .13), transparent 30%),
      #090f18;
    box-shadow: -30px 0 60px rgba(0, 0, 0, .45);
    flex-direction: column;
    transition: transform .35s cubic-bezier(.2, .8, .2, 1);
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav > a:not(.button) {
    border-bottom: 1px solid var(--line);
    padding: 17px 0;
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .primary-nav .button {
    margin-top: 25px;
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  body.nav-open::after {
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    content: "";
  }

  .hero {
    min-height: 1040px;
    align-items: end;
    padding-bottom: 35px;
  }

  .hero__media img {
    object-position: 68% top;
  }

  .hero__media::after {
    background:
      linear-gradient(0deg, #05090f 0%, rgba(5, 9, 15, .95) 45%, rgba(5, 9, 15, .1) 78%),
      linear-gradient(180deg, rgba(4, 8, 14, .5), transparent 25%);
  }

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

  .hero__copy {
    padding-top: 380px;
  }

  .hero-panel {
    max-width: 430px;
  }

  .hero__legal {
    margin-top: 25px;
  }

  .section-heading,
  .process-intro {
    gap: 25px;
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    max-width: 570px;
  }

  .process-intro .eyebrow {
    grid-column: auto;
    margin-bottom: -5px;
  }

  .craft-panel {
    grid-template-columns: 1fr;
  }

  .craft-panel__image {
    min-height: 440px;
  }

  .craft-panel__copy {
    padding: 50px 35px;
  }

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

  .steps li,
  .steps li:not(:first-child),
  .steps li:last-child {
    min-height: 0;
    border-right: 0;
    padding: 42px 15px 42px 100px;
  }

  .step-icon {
    position: absolute;
    top: 40px;
    left: 0;
    width: 70px;
    height: 70px;
    margin: 0;
  }

  .step-number {
    top: 31px;
  }

  .free-banner__inner {
    grid-template-columns: 110px 1fr;
  }

  .free-banner__inner > p {
    grid-column: 1 / -1;
  }

  .entry-layout {
    gap: 70px;
    grid-template-columns: 1fr;
  }

  .entry-copy {
    max-width: 650px;
  }

  .form-card {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .rules-snapshot {
    grid-template-columns: repeat(2, 1fr);
  }

  .rules-snapshot > div:nth-child(2) {
    border-right: 0;
  }

  .rules-snapshot > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(7, 12, 20, .13);
  }

  .rules-snapshot > div:first-child,
  .rules-snapshot > div {
    padding: 23px;
  }

  .rules-columns {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .faq-layout {
    gap: 55px;
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .privacy-layout {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .play-notice__inner {
    grid-template-columns: 70px 1fr;
  }

  .play-notice .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .footer-links {
    margin-top: 10px;
  }

  .footer-bottom {
    gap: 15px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  h2 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .age-gate__card {
    padding: 45px 25px 35px;
  }

  .age-gate__card::before,
  .age-gate__card::after {
    width: 40px;
    height: 40px;
  }

  .brand-type strong {
    font-size: 1rem;
  }

  .brand-type small {
    font-size: .48rem;
  }

  .hero {
    min-height: 1080px;
  }

  .hero__copy {
    padding-top: 335px;
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 5.5rem);
  }

  .hero h1 em {
    display: block;
    max-width: 100%;
    font-size: .92em;
    white-space: normal;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .trust-list {
    display: grid;
    gap: 8px;
  }

  .hero-panel {
    padding: 20px;
  }

  .hero-panel__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .countdown strong {
    font-size: 1.7rem;
  }

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

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

  .product-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .product-card__visual {
    height: 460px;
  }

  .product-card__body {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .craft-panel {
    margin-top: 80px;
  }

  .craft-panel__image {
    min-height: 330px;
  }

  .craft-panel__copy {
    padding: 45px 25px;
  }

  .free-banner {
    padding: 70px 0;
  }

  .free-banner__inner {
    gap: 30px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .seal {
    margin: 0 auto;
  }

  .free-banner .eyebrow {
    justify-content: center;
  }

  .free-banner__inner > p {
    grid-column: auto;
  }

  .entry-copy h2 {
    font-size: clamp(3.7rem, 18vw, 5rem);
  }

  .form-card {
    padding: 29px 20px;
  }

  .form-card__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .rules-snapshot {
    grid-template-columns: 1fr;
  }

  .rules-snapshot > div,
  .rules-snapshot > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 12, 20, .13);
  }

  .rules-document {
    margin-right: -7px;
    margin-left: -7px;
    padding: 32px 23px;
  }

  .faq-list summary {
    font-size: 1.25rem;
  }

  .privacy-copy {
    columns: 1;
  }

  .play-notice__inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 37px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .age-gate,
  .hero,
  .marquee,
  .collection,
  .process,
  .free-banner,
  .entry-section,
  .faq-section,
  .privacy-section,
  .play-notice,
  .site-footer {
    display: none !important;
  }
  .rules-section {
    display: block;
    padding: 0;
    background: #fff;
    color: #000;
  }
  .rules-document {
    border: 0;
    padding: 0;
    box-shadow: none;
  }
}
