:root {
  --black: #000;
  --panel: #070707;
  --line: rgba(240, 236, 225, 0.18);
  --text: #f0ece1;
  --muted: rgba(240, 236, 225, 0.72);
  --gold: #c8a85b;
  --gold-soft: rgba(200, 168, 91, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 22rem),
    var(--black);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(240,236,225,0.05) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.28;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 100vh;
  padding: clamp(0.75rem, 2.4vmin, 1.75rem);
  overflow: hidden;
  background: var(--black);
  transition: opacity 500ms ease, visibility 500ms ease;
}

@supports (height: 100svh) {
  .intro {
    height: 100svh;
  }
}

@supports (height: 100dvh) {
  .intro {
    height: 100dvh;
  }
}

.intro__inner {
  width: min(92vw, 980px);
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  align-items: center;
  gap: clamp(0.65rem, 2vmin, 1.25rem);
}

.intro picture {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
}

.brand-logo {
  width: min(80vw, 760px);
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.intro .brand-logo {
  animation: introFade 700ms ease both;
  transform-origin: center top;
  transition: transform 2500ms cubic-bezier(.16,.84,.2,1), opacity 500ms ease;
}

.age-gate {
  width: min(92vw, 520px);
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.92);
  padding: clamp(0.85rem, 2.6vmin, 1.35rem);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
}

.age-gate h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.25rem, 4.4vmin, 2.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.age-gate p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 2.4vmin, 1rem);
  line-height: 1.42;
}

.age-gate__actions {
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(0.75rem, 2.2vmin, 1rem);
}

.btn {
  min-height: 2.55rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.btn:hover {
  border-color: rgba(240, 236, 225, 0.55);
  transform: translateY(-1px);
}

.btn--primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #070707;
  font-weight: 700;
}

.age-gate__declined {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  outline: none;
}

.age-gate__declined strong {
  display: block;
  margin-bottom: 0.25rem;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease 2600ms, visibility 700ms ease 2600ms;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  height: 0;
  pointer-events: none;
}

.site-logo {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 12;
  width: clamp(12rem, 24vw, 20rem);
  opacity: 0;
  transform: translate(0, 0) scale(1);
  transition: opacity 220ms ease 3020ms;
}

.site-logo img {
  width: 100%;
  display: block;
}

.menu-button {
  position: fixed;
  top: calc(1.2rem + 75px);
  right: calc(1rem + 75px);
  z-index: 14;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.82);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  display: block;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button::before {
  transform: translateY(-0.45rem);
}

.menu-button::after {
  transform: translateY(0.45rem);
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(2px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-2px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  top: calc(5rem + 75px);
  right: calc(1rem + 75px);
  z-index: 13;
  width: min(18rem, calc(100vw - 2rem));
  border: 1px solid var(--line);
  background: rgba(6, 6, 6, 0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.62);
  opacity: 0;
  transform: translateY(-0.75rem);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.main-nav a {
  display: flex;
  min-height: 3.2rem;
  align-items: center;
  border-bottom: 1px solid rgba(240, 236, 225, 0.1);
  padding: 0 1.1rem;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.main-nav a:last-child {
  border-bottom: 0;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--gold-soft);
  color: #fff;
}

.page-wrap {
  width: 100%;
  flex: 1;
  min-height: 0;
  display: grid;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.content-shell {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 800ms ease 2800ms, transform 800ms ease 2800ms;
}

.content-panel {
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.82);
  padding: clamp(1.2rem, 4vw, 2.4rem);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

.kicker {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

.page-title {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 6vw, 4.25rem);
  line-height: 0.98;
}

.prose {
  color: var(--muted);
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  line-height: 1.75;
}

.prose p {
  margin: 0 0 1.15rem;
}

.gallery {
  display: grid;
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  background: #050505;
}

.product-grid {
  display: grid;
  gap: 1rem;
}

.product {
  display: grid;
  gap: 0.85rem;
  border: 1px solid var(--line);
  padding: clamp(0.85rem, 2.4vw, 1.15rem);
  background: rgba(255, 255, 255, 0.025);
}

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

.product__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  display: block;
  border: 1px solid var(--line);
  background: #050505;
}

.product h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.product p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.15rem;
}

.product__price {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field span {
  color: var(--muted);
  font-size: 0.9rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #050505;
  color: var(--text);
  padding: 0.85rem 0.95rem;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.form-note {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.25rem 1rem 2rem;
  color: rgba(240, 236, 225, 0.58);
  font-size: 0.9rem;
  text-align: center;
}

.is-verified .intro {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-delay: 2500ms, 2500ms;
}

.is-verified .intro .brand-logo {
  transform: translate(calc(-50vw + clamp(6rem, 12vw, 11rem)), 0) scale(0.42);
}

.is-verified .site-shell {
  opacity: 1;
  visibility: visible;
}

.is-verified .site-logo {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.is-verified .content-shell {
  opacity: 1;
  transform: none;
}

.has-seen-intro .site-shell,
.has-seen-intro .content-shell,
.has-seen-intro .site-logo,
.has-seen-intro .intro {
  transition-delay: 0ms;
}

@keyframes introFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 900px) {
  .content-shell {
    width: 50%;
    min-width: 640px;
    max-width: 880px;
    padding: 0;
  }

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


@media (max-width: 899px) {
  .page-wrap {
    align-items: start;
    padding-top: calc(1rem + clamp(12rem, 24vw, 20rem) + 4.8rem);
    padding-bottom: 2rem;
  }
}

@media (max-width: 620px) {
  .intro {
    padding: 0.75rem;
  }

  .intro__inner {
    width: 100%;
    gap: 0.65rem;
  }

  .brand-logo {
    width: min(78vw, 22rem);
  }

  .age-gate {
    width: 100%;
  }

  .menu-button {
    top: 0.75rem;
    right: 0.75rem;
  }

  .main-nav {
    top: 4.25rem;
    right: 0.75rem;
    width: calc(100vw - 1.5rem);
  }
  .page-wrap {
    flex: 1;
    min-height: 0;
    display: grid;
    align-items: start;
    padding: 17.5rem 0 2rem;
  }

  .content-shell {
    padding: 0;
  }

  .content-panel {
    border-left: 0;
    border-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-height: 640px) {
  .intro {
    padding: 0.55rem;
  }

  .intro__inner {
    gap: 0.5rem;
  }

  .age-gate {
    padding: 0.7rem;
  }

  .age-gate h1 {
    margin-bottom: 0.4rem;
  }

  .age-gate__declined {
    margin-top: 0.6rem;
    padding-top: 0.6rem;
  }

  .btn {
    min-height: 2.35rem;
    padding: 0.55rem 0.75rem;
  }
}
@media (max-width: 620px) {
  .site-logo {
    top: 0.75rem;
    left: 0.75rem;
    width: 12rem;
  }

  .is-verified .intro .brand-logo {
    transform: translate(calc(-50vw + 6.75rem), 0) scale(0.545);
  }
}

.is-verified .age-gate {
  opacity: 0;
  transform: translateY(0.5rem);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.has-seen-intro .age-gate {
  transition-delay: 0ms;
}

.audio-controls {
  position: fixed;
  top: calc(1rem + clamp(12rem, 24vw, 20rem) + 1.15rem);
  left: 1rem;
  z-index: 12;
  width: clamp(12rem, 24vw, 20rem);
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  opacity: 0;
  transform: translateY(-0.25rem);
  pointer-events: none;
  transition: opacity 220ms ease 3100ms, transform 220ms ease 3100ms;
}

.is-verified .audio-controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.audio-button {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.82);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.audio-button:hover {
  border-color: rgba(240, 236, 225, 0.55);
  transform: translateY(-1px);
}

.audio-button--play span {
  width: 0;
  height: 0;
  margin-left: 0.15rem;
  border-top: 0.42rem solid transparent;
  border-bottom: 0.42rem solid transparent;
  border-left: 0.66rem solid currentColor;
}

.audio-button--stop span {
  width: 0.72rem;
  height: 0.72rem;
  background: currentColor;
}

.audio-button.is-active {
  border-color: var(--gold);
  color: var(--gold);
}

.has-seen-intro .audio-controls {
  transition-delay: 0ms;
}

@media (max-width: 620px) {
  .audio-controls {
    top: calc(0.75rem + 12rem + 1rem);
    left: 0.75rem;
    width: 12rem;
  }
}
.site-logo,
.audio-controls,
.menu-button {
  pointer-events: auto;
}

@supports (min-height: 100svh) {
  .site-shell {
    min-height: 100svh;
  }
}

@supports (min-height: 100dvh) {
  .site-shell {
    min-height: 100dvh;
  }
}

.form-status {
  margin: 0;
  border: 1px solid var(--line);
  padding: 0.85rem 0.95rem;
  color: var(--muted);
  line-height: 1.45;
}

.form-status--success {
  border-color: rgba(200, 168, 91, 0.7);
  color: var(--text);
  background: rgba(200, 168, 91, 0.12);
}

.form-status--error {
  border-color: rgba(220, 80, 80, 0.7);
  color: var(--text);
  background: rgba(220, 80, 80, 0.1);
}
.field--trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.social-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.4rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--gold);
  background: rgba(207, 177, 95, 0.1);
  transform: translateY(-1px);
}

.social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link span {
  color: var(--muted);
  font-size: 0.92rem;
}
/* Mobile header scrolls with content */
@media (max-width: 620px) {
  .site-header,
  .site-logo,
  .audio-controls,
  .menu-button,
  .main-nav {
    position: absolute;
  }
}
.product__media .product__image:only-child {
  grid-column: 1 / -1;
}

@media (max-width: 420px) {
  .product__media {
    gap: 0.45rem;
  }
}
.btn--product {
  width: fit-content;
  margin-left: auto;
  border-color: rgba(200, 168, 91, 0.55);
  color: var(--text);
  background: rgba(200, 168, 91, 0.08);
}

.btn--product:hover,
.btn--product:focus-visible {
  border-color: var(--gold);
  background: rgba(200, 168, 91, 0.16);
}

.has-modal {
  overflow: hidden;
}

.order-modal[hidden] {
  display: none;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
  padding: clamp(0.75rem, 3vw, 2rem);
}

@supports (height: 100svh) {
  .order-modal {
    height: 100svh;
  }
}

@supports (height: 100dvh) {
  .order-modal {
    height: 100dvh;
  }
}

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.order-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(90vh, 760px);
  overflow: auto;
  border: 1px solid rgba(240, 236, 225, 0.22);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(5, 5, 5, 0.98));
  padding: clamp(1.1rem, 4vw, 1.8rem);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.72);
}

.order-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.order-modal__close::before,
.order-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  background: currentColor;
}

.order-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.order-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.order-modal h2 {
  padding-right: 2.75rem;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1;
}

.order-modal__note {
  margin: 0.9rem 0 1.25rem;
  color: var(--muted);
  line-height: 1.55;
}

.order-form {
  display: grid;
  gap: 0.85rem;
}

.order-form input[readonly] {
  color: var(--muted);
}

@media (max-width: 620px) {
  .order-modal {
    place-items: center;
    padding: 0.75rem;
  }

  .order-modal__dialog {
    max-height: calc(100svh - 1.5rem);
  }
}
.order-result {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  text-align: center;
  padding: clamp(0.5rem, 2vw, 1rem) 0;
}

.order-result h2 {
  padding-right: 0;
}

.order-result__product {
  margin: 0;
  color: var(--gold);
  font-weight: 700;
}

.order-result__message {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.order-result--success .order-result__message {
  color: var(--text);
}