:root {
  --page: #000000;
  --chrome: #141414;
  --gold: #e5b365;
  --navgold: #dcb471;
  --champagne: #e5c490;
  --rule: #dba343;
  --nameplate: #a2281c;
  --ink: #3d3d3d;
  --soft: #e8e8e8;
  --hint: #8c8c8c;
  --legal: #222222;
  --utility: #282828;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--page);
  color: #ffffff;
  font-family: Lato, Helvetica, Arial, sans-serif;
}

::selection {
  background: #66e5b365;
  color: #ffffff;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.veil {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.25) 34%,
    rgba(0, 0, 0, 0.45) 62%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.hero-art {
  animation: drift 22s ease-in-out alternate infinite;
  transform: scale(1.08);
}

@keyframes drift {
  from {
    transform: scale(1.08) translate3d(-1.2%, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(1.4%, -1%, 0);
  }
}

.gold-rule {
  width: 3px;
  background: var(--rule);
  flex-shrink: 0;
}

.phone-frame {
  border: 1px solid var(--utility);
  border-radius: 22px;
  overflow: hidden;
  background: #111111;
  box-shadow: 0 0 0 1px rgba(229, 179, 101, 0.08);
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.drawer {
  transform: translateX(100%);
  transition: transform 320ms ease-out;
}

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

.scrim {
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease-out;
}

.scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

.faq-panel {
  display: none;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.store-badge {
  min-height: 44px;
  border-radius: 6px;
  background: #111111;
  color: #ffffff;
  border: 1px solid var(--gold);
}

.store-badge:hover {
  background: #1c1c1c;
  border-color: var(--champagne);
}

.accept-btn {
  min-height: 44px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
}

.accept-btn:hover {
  background: #fffefc;
}

.cookie-bar {
  padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
}

.site-header {
  padding-top: env(safe-area-inset-top, 0px);
}

.legal-prose h2 {
  font-family: Cinzel, Georgia, serif;
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--champagne);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal-prose h3 {
  font-family: Lato, Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--navgold);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-prose p,
.legal-prose li {
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-prose ul {
  list-style: none;
  padding-left: 0;
}

.legal-prose li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
}

.legal-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 3px;
  height: 0.7em;
  background: var(--rule);
}

.legal-prose a {
  color: var(--navgold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 767px) {
  [data-aos] {
    --aos-distance: 12px;
  }
}

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

  .hero-art,
  .drawer,
  .scrim,
  .faq-chevron {
    animation: none !important;
    transition: none !important;
  }

  .hero-art {
    transform: none;
  }
}
