:root {
  --ink: #12100f;
  --charcoal: #1c1917;
  --surface: #25211e;
  --surface-soft: #302a25;
  --ember: #e66b24;
  --ember-dark: #a83f12;
  --gold: #d7a84e;
  --bone: #f4eee4;
  --paper: #fffaf1;
  --muted: #bdb2a5;
  --line: rgba(244, 238, 228, 0.16);
  --dark-line: rgba(18, 16, 15, 0.13);
  --green: #839b79;
  --max: 1180px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 9vw, 7.7rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(76px, 10vw, 140px) 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
}

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

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

.notice {
  color: var(--bone);
  background: #090807;
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.notice__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.notice__adult {
  color: var(--muted);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--bone);
  background: rgba(18, 16, 15, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  color: var(--bone);
  text-decoration: none;
}

.brand__mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--ember);
}

.brand__mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand__mark .brand__mark-detail {
  fill: none;
  stroke: var(--bone);
  stroke-width: 2.2;
}

.brand strong,
.brand small {
  display: block;
  font-family: var(--font-display);
  line-height: 0.85;
  text-transform: uppercase;
}

.brand strong {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav > a:not(.button) {
  position: relative;
  padding: 25px 0;
  color: #d8d0c7;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav > a:hover::after,
.nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  color: var(--bone);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-button svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  color: #160b06;
  background: var(--ember);
  border: 1px solid var(--ember);
  border-radius: 10px;
  box-shadow: 0 9px 24px rgba(230, 107, 36, 0.22);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: #f27d36;
  border-color: #f27d36;
  box-shadow: 0 12px 30px rgba(230, 107, 36, 0.33);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.73rem;
}

.button--ghost {
  color: var(--bone);
  background: transparent;
  border-color: rgba(244, 238, 228, 0.4);
  box-shadow: none;
}

.button--ghost:hover {
  color: var(--ink);
  background: var(--bone);
  border-color: var(--bone);
  box-shadow: none;
}

.button--ghost-dark {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
  box-shadow: none;
}

.button--ghost-dark:hover {
  color: var(--bone);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--bone);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, #332016 0, var(--ink) 45%);
  background-size: 56px 56px, 56px 56px, auto;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 180px;
  content: "";
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  padding-top: 70px;
  padding-bottom: 80px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--ember);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #cec5bb;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  padding: 0;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  list-style: none;
  text-transform: uppercase;
}

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

.trust-list svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.hero__glow {
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.hero__glow--one {
  top: -190px;
  left: -90px;
  background: var(--ember);
}

.hero__glow--two {
  right: -230px;
  bottom: -100px;
  background: var(--gold);
}

.hero-gallery {
  position: relative;
  min-height: 590px;
}

.hero-gallery figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #211c18;
  border: 1px solid rgba(215, 168, 78, 0.38);
  box-shadow: var(--shadow);
}

.hero-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gallery__main {
  inset: 25px 54px 55px 0;
  border-radius: 42% 42% 28px 28px;
  transform: rotate(-2deg);
}

.hero-gallery__main::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(10, 8, 7, 0.52));
  pointer-events: none;
}

.hero-gallery__tile {
  z-index: 2;
  width: 185px;
  aspect-ratio: 1;
  border: 7px solid #171310 !important;
  border-radius: 22px;
}

.hero-gallery__tile--keychain {
  top: 0;
  right: 0;
  transform: rotate(6deg);
}

.hero-gallery__tile--keychain img {
  object-position: 50% 70%;
}

.hero-gallery__tile--seasonal {
  right: 12px;
  bottom: 15px;
  transform: rotate(-5deg);
}

.hero-gallery__stamp {
  position: absolute;
  z-index: 3;
  bottom: 36px;
  left: 24px;
  max-width: 230px;
  padding: 15px 18px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ember);
  font-family: var(--font-display);
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(2deg);
}

.hero-gallery__stamp strong,
.hero-gallery__stamp span {
  display: block;
}

.hero-gallery__stamp strong {
  font-size: 1.55rem;
}

.hero-gallery__stamp span {
  margin-top: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-art {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(215, 168, 78, 0.28);
  border-radius: 50% 50% 44% 44% / 42% 42% 58% 58%;
  background:
    radial-gradient(circle at 50% 40%, rgba(230, 107, 36, 0.21), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.035), var(--shadow);
}

.hero-art::before {
  position: absolute;
  right: 8%;
  bottom: 7%;
  left: 8%;
  height: 18%;
  content: "";
  background: radial-gradient(ellipse, rgba(0,0,0,0.78), transparent 70%);
  filter: blur(12px);
}

.hero-art > p {
  position: absolute;
  right: 30px;
  bottom: 24px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.05;
  text-align: right;
  text-transform: uppercase;
}

.hero-art > p strong {
  color: var(--gold);
}

.hero-art__stamp {
  position: absolute;
  top: 45px;
  left: 30px;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-12deg);
}

.hero-art__stamp::before,
.hero-art__stamp::after {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.hero-art__stamp::before {
  left: 10px;
}

.hero-art__stamp::after {
  right: 10px;
}

.token {
  position: absolute;
  width: 230px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  background:
    repeating-radial-gradient(circle at 35% 35%, transparent 0 5px, rgba(255,255,255,0.025) 6px 7px),
    #1b1816;
  border: 13px solid #2b2724;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 4px var(--gold),
    inset 0 0 0 10px #13110f,
    inset 0 0 35px rgba(0,0,0,0.8),
    0 28px 45px rgba(0,0,0,0.45);
  font-family: var(--font-display);
  line-height: 0.85;
  text-align: center;
  text-transform: uppercase;
}

.token::after {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px dashed rgba(215, 168, 78, 0.6);
  border-radius: 50%;
}

.token span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.token strong {
  color: var(--ember);
  font-size: 6.4rem;
  font-weight: 900;
}

.token--back {
  top: 128px;
  right: 12px;
  opacity: 0.62;
  transform: rotate(13deg) scale(0.88);
}

.token--front {
  z-index: 2;
  top: 205px;
  left: 22px;
  transform: rotate(-8deg);
}

.keychain {
  position: absolute;
  z-index: 3;
  top: 82px;
  right: 102px;
  transform: rotate(14deg);
}

.keychain__ring {
  width: 58px;
  height: 58px;
  display: block;
  margin: 0 auto -11px;
  border: 9px solid #a99b8e;
  border-radius: 50%;
  box-shadow: inset 2px 2px 0 #e2ddd7;
}

.keychain__body {
  width: 110px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--ember);
  border: 7px solid #2a211c;
  border-radius: 26px 26px 34px 34px;
  box-shadow: inset 0 0 0 3px var(--gold), 0 24px 35px rgba(0,0,0,0.4);
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.6;
  text-align: center;
}

.keychain__body small {
  margin-top: 15px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 16px 5px rgba(215, 168, 78, 0.48);
}

.spark--one { top: 25%; left: 44%; }
.spark--two { top: 54%; right: 7%; }
.spark--three { bottom: 16%; left: 20%; }

.ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--gold);
  border-block: 1px solid rgba(0,0,0,0.2);
}

.ticker__track {
  width: max-content;
  min-width: 100%;
  min-height: 57px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 26px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ticker i {
  width: 7px;
  height: 7px;
  display: block;
  background: var(--ink);
  transform: rotate(45deg);
}

.shop {
  background:
    radial-gradient(circle at 10% 15%, rgba(215, 168, 78, 0.13), transparent 22%),
    var(--bone);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading > p:last-child {
  max-width: 650px;
  color: #5d554e;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 60px;
}

.section-heading--split > p {
  max-width: 470px;
  margin-bottom: 14px;
}

.store-note {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  margin-bottom: 26px;
  color: #4c423a;
  background: rgba(255, 250, 241, 0.8);
  border: 1px solid var(--dark-line);
  border-left: 4px solid var(--ember);
  border-radius: 10px;
}

.store-note svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--ember-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.store-note p,
.store-loading p,
.store-error {
  margin: 0;
}

.beastforge-store {
  min-height: 340px;
}

.store-loading {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 30px;
  color: #5d554e;
  background: rgba(255, 250, 241, 0.74);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
}

.store-loading strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.store-loading__mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
}

.store-error {
  padding: 16px;
  color: #84251e;
  background: #fff0ec;
  border: 1px solid #dcb2aa;
  border-radius: 10px;
}

.shop .telos-store {
  --ts-ink: #12100f;
  --ts-muted: #665d55;
  --ts-line: rgba(18, 16, 15, 0.16);
  --ts-accent: #a83f12;
  --ts-gold: #d7a84e;
}

.shop .telos-store__title,
.shop .telos-store__product-title {
  font-family: var(--font-display);
  text-transform: uppercase;
}

.shop .telos-store__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.025em;
}

.shop .telos-store__grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.shop .telos-store__card {
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(77, 51, 29, 0.08);
}

.shop .telos-store__image {
  aspect-ratio: 1;
  background: #e7dfd3;
}

.shop .telos-store__body {
  padding: 20px;
}

.shop .telos-store button {
  min-height: 44px;
  background: var(--ember);
  border-radius: 8px;
  text-transform: uppercase;
}

.shop .telos-store button.secondary,
.shop .telos-store__qty button {
  background: #eee7dc;
}

.shop .telos-store__cart-wrap {
  top: 128px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.filter {
  min-height: 44px;
  padding: 9px 16px;
  color: #534b45;
  background: rgba(255,255,255,0.43);
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.filter:hover,
.filter.is-active {
  color: var(--bone);
  background: var(--ink);
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(77, 51, 29, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  box-shadow: 0 22px 45px rgba(77, 51, 29, 0.13);
  transform: translateY(-5px);
}

.product-card[hidden] {
  display: none;
}

.product-card__visual {
  position: relative;
  min-height: 305px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), transparent 50%),
    #2b231e;
}

.product-card__visual::before {
  position: absolute;
  right: -40px;
  bottom: -65px;
  width: 230px;
  height: 230px;
  content: "";
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.product-card__visual::after {
  position: absolute;
  right: 10%;
  bottom: 14px;
  left: 10%;
  height: 28px;
  content: "";
  background: rgba(0,0,0,0.38);
  border-radius: 50%;
  filter: blur(12px);
}

.product-card__visual--gold { background-color: #8d5d20; }
.product-card__visual--bone { background-color: #c9b99e; }
.product-card__visual--pumpkin { background-color: #8b3217; }
.product-card__visual--steel { background-color: #3e494c; }
.product-card__visual--green { background-color: #485747; }

.product-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  color: var(--bone);
  background: rgba(18, 16, 15, 0.74);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-coin {
  position: relative;
  z-index: 1;
  width: 190px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  background: #161311;
  border: 11px solid #312a25;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--gold), inset 0 0 30px #000, 0 24px 32px rgba(0,0,0,0.42);
  font-family: var(--font-display);
  line-height: 0.8;
  transform: rotate(-8deg);
}

.mini-coin::before {
  position: absolute;
  inset: 15px;
  content: "";
  border: 1px dashed var(--gold);
  border-radius: 50%;
}

.mini-coin b {
  z-index: 1;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
}

.mini-coin strong {
  z-index: 1;
  color: var(--ember);
  font-size: 5rem;
}

.mini-coin--light {
  color: var(--ink);
  background: var(--bone);
  border-color: #ded2bf;
  box-shadow: inset 0 0 0 3px var(--ink), inset 0 0 25px rgba(74,54,33,0.17), 0 24px 32px rgba(0,0,0,0.28);
}

.mini-coin--light::before {
  border-color: var(--ink);
}

.mini-coin--steel {
  background: #242b2d;
  border-color: #556164;
}

.mini-keychain {
  position: relative;
  z-index: 1;
  width: 130px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--bone);
  border: 8px solid var(--ink);
  border-radius: 28px 28px 38px 38px;
  box-shadow: inset 0 0 0 3px var(--gold), 0 25px 32px rgba(0,0,0,0.4);
  font-family: var(--font-display);
  line-height: 0.7;
  transform: rotate(7deg);
}

.mini-keychain i {
  position: absolute;
  top: -56px;
  width: 62px;
  height: 62px;
  border: 10px solid #a79c90;
  border-radius: 50%;
}

.mini-keychain b {
  font-size: 5.8rem;
}

.mini-keychain small {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mini-keychain--wide {
  width: 180px;
  height: 135px;
  background: #acbf98;
}

.mini-keychain--wide i {
  top: -53px;
}

.mini-keychain--wide b {
  font-size: 3.2rem;
}

.mini-pumpkin {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #db6b22;
  border: 8px solid var(--ink);
  border-radius: 42% 42% 45% 45%;
  box-shadow: inset 30px 0 rgba(109,42,15,0.24), inset -30px 0 rgba(109,42,15,0.24), 0 25px 32px rgba(0,0,0,0.4);
  font-family: var(--font-display);
  line-height: 0.72;
  transform: rotate(-4deg);
}

.mini-pumpkin i {
  position: absolute;
  top: -32px;
  width: 28px;
  height: 42px;
  background: #5e6d42;
  border: 6px solid var(--ink);
  border-radius: 10px 10px 3px 3px;
}

.mini-pumpkin b {
  font-size: 5rem;
}

.mini-pumpkin small {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-card__body {
  padding: 24px 24px 25px;
}

.product-card__type {
  margin-bottom: 9px;
  color: var(--ember-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__body > p:not(.product-card__type) {
  min-height: 52px;
  margin-bottom: 18px;
  color: #625a53;
  font-size: 0.92rem;
  line-height: 1.5;
}

.text-button {
  min-height: 44px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-button span {
  display: inline-block;
  margin-left: 5px;
  color: var(--ember);
  font-size: 1.15rem;
  transition: transform 160ms ease;
}

.text-button:hover span {
  transform: translateX(4px);
}

.moods {
  color: var(--bone);
  background:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    var(--ink);
  background-size: 48px 48px;
}

.moods .section-heading > p:last-child {
  color: var(--muted);
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mood-card {
  position: relative;
  min-height: 310px;
  padding: 32px 28px;
  background: #1a1715;
  transition: background 180ms ease;
}

.mood-card:hover {
  background: #221d19;
}

.mood-card--accent {
  color: var(--ink);
  background: var(--gold);
}

.mood-card--accent:hover {
  background: #e1b45d;
}

.mood-card > span {
  display: block;
  margin-bottom: 110px;
  color: var(--ember);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
}

.mood-card--accent > span {
  color: var(--ember-dark);
}

.mood-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.mood-card--accent p {
  color: #4a361e;
}

.process {
  background: var(--paper);
}

.process__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(60px, 10vw, 130px);
}

.process__intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.process__maker-mark {
  width: 196px;
  margin-bottom: 34px;
  padding: 13px 13px 10px;
  background:
    linear-gradient(145deg, rgba(215, 168, 78, 0.2), transparent 55%),
    #f0e5d4;
  border: 1px solid rgba(18, 16, 15, 0.16);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(77, 51, 29, 0.1);
  transform: rotate(-2deg);
}

.process__maker-mark img {
  width: 100%;
  height: auto;
  display: block;
}

.process__maker-mark span {
  display: block;
  margin-top: 4px;
  color: #66574b;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.process__intro > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 28px;
  color: #625a53;
}

.process__steps {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--dark-line);
  list-style: none;
}

.process__steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 35px 0;
  border-bottom: 1px solid var(--dark-line);
}

.process__steps li > span {
  color: var(--ember);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.process__steps h3 {
  font-size: 2.1rem;
}

.process__steps p {
  max-width: 500px;
  margin: 0;
  color: #625a53;
}

.custom {
  color: var(--bone);
  background:
    radial-gradient(circle at 13% 28%, rgba(230,107,36,0.16), transparent 22%),
    linear-gradient(135deg, #171311, #0d0c0b);
}

.custom__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  align-items: start;
  gap: clamp(55px, 9vw, 110px);
}

.custom__copy {
  padding-top: 18px;
}

.custom__copy > p:not(.eyebrow) {
  max-width: 550px;
  color: var(--muted);
}

.custom__examples {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 30px 0 44px;
}

.custom__examples span {
  padding: 8px 12px;
  color: var(--gold);
  border: 1px solid rgba(215,168,78,0.3);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bulk-note {
  padding: 25px;
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line);
  border-left: 4px solid var(--ember);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.bulk-note strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
}

.bulk-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.request-form {
  padding: clamp(27px, 5vw, 45px);
  color: var(--ink);
  background: var(--bone);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--dark-line);
}

.form-heading span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.form-heading p {
  margin: 8px 0 0;
  color: #665d55;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field label span {
  color: var(--ember-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffaf3;
  border: 1px solid rgba(18,16,15,0.22);
  border-radius: 9px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 4px rgba(230,107,36,0.13);
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #9f261f;
}

.field__error {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: #92251e;
  font-size: 0.75rem;
}

.form-note {
  margin: 13px 0 0;
  color: #70665e;
  font-size: 0.75rem;
  line-height: 1.45;
  text-align: center;
}

.form-status {
  min-height: 24px;
  margin-top: 10px;
  color: #36592d;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.faq {
  background: var(--bone);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
}

.accordion {
  border-top: 1px solid var(--dark-line);
}

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

.accordion summary {
  position: relative;
  min-height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 56px 20px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
  list-style: none;
}

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

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 50%;
  right: 9px;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--ember);
  transition: transform 180ms ease;
}

.accordion summary span::after {
  transform: rotate(90deg);
}

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

.accordion details p {
  max-width: 680px;
  padding: 0 50px 25px 0;
  margin: 0;
  color: #625a53;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(85px, 12vw, 150px) 0;
  color: var(--bone);
  background:
    radial-gradient(circle at 50% 130%, rgba(230,107,36,0.48), transparent 35%),
    var(--ink);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 340px;
  height: 340px;
  content: "";
  border: 1px solid rgba(215,168,78,0.1);
  border-radius: 50%;
}

.final-cta::before {
  top: -170px;
  left: -100px;
}

.final-cta::after {
  right: -100px;
  bottom: -170px;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
  text-align: center;
}

.final-cta__inner > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 auto 30px;
  color: var(--muted);
}

.final-cta .hero__actions {
  justify-content: center;
}

.footer {
  padding: 70px 0 25px;
  color: var(--muted);
  background: #090807;
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.brand--footer {
  margin-bottom: 15px;
}

.footer h3 {
  margin: 8px 0 20px;
  color: var(--bone);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer p {
  max-width: 300px;
  margin-bottom: 0;
  font-size: 0.82rem;
}

.footer__grid > div > a:not(.brand) {
  width: fit-content;
  display: block;
  min-height: 44px;
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer__grid > div > a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.telos-credit {
  width: min(calc(100% - 40px), var(--max));
  margin: 18px auto 0;
  color: #7f766d;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.telos-credit a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.telos-credit a:hover {
  color: var(--gold);
}

@media (max-width: 1020px) {
  .notice__adult {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .nav {
    position: fixed;
    z-index: 99;
    top: 112px;
    right: 0;
    bottom: 0;
    width: min(88vw, 390px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 30px;
    background: #11100f;
    border-left: 1px solid var(--line);
    box-shadow: -20px 20px 45px rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav > a:not(.button) {
    min-height: 55px;
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

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

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

  .hero__grid {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }

  .hero__copy {
    max-width: 800px;
  }

  .hero-art {
    width: min(100%, 600px);
    min-height: 520px;
    margin: 0 auto;
  }

  .hero-gallery {
    width: min(100%, 620px);
    min-height: 620px;
    margin: 0 auto;
  }

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

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

  .process__grid,
  .custom__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .process__intro {
    position: static;
  }

  .custom__copy {
    max-width: 750px;
  }

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

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

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

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 80px 0;
  }

  .notice__inner {
    justify-content: center;
  }

  .header__inner {
    min-height: 68px;
  }

  .nav {
    top: 104px;
  }

  .brand strong {
    font-size: 1.28rem;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    gap: 55px;
    padding-top: 72px;
    padding-bottom: 70px;
  }

  h1 {
    font-size: clamp(3.55rem, 18vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .hero-art {
    min-height: 400px;
  }

  .hero-gallery {
    min-height: 470px;
  }

  .hero-gallery__main {
    inset: 20px 35px 45px 0;
  }

  .hero-gallery__tile {
    width: 132px;
    border-width: 5px !important;
  }

  .hero-gallery__tile--seasonal {
    right: 2px;
    bottom: 20px;
  }

  .hero-gallery__stamp {
    bottom: 24px;
    left: 12px;
    max-width: 180px;
    padding: 12px 14px;
    box-shadow: 5px 5px 0 var(--ember);
  }

  .hero-gallery__stamp strong {
    font-size: 1.25rem;
  }

  .hero-gallery__stamp span {
    font-size: 0.62rem;
  }

  .token {
    width: 165px;
    border-width: 9px;
  }

  .token strong {
    font-size: 4.6rem;
  }

  .token span {
    font-size: 0.72rem;
  }

  .token--back {
    top: 100px;
    right: 2px;
  }

  .token--front {
    top: 168px;
    left: 10px;
  }

  .keychain {
    top: 64px;
    right: 72px;
    transform: rotate(14deg) scale(0.72);
    transform-origin: top right;
  }

  .hero-art__stamp {
    top: 30px;
    left: 18px;
    width: 82px;
    height: 82px;
    font-size: 0.82rem;
  }

  .hero-art > p {
    right: 20px;
    bottom: 15px;
    font-size: 0.82rem;
  }

  .ticker__track {
    justify-content: flex-start;
    font-size: 0.83rem;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .product-card__visual {
    min-height: 280px;
  }

  .store-note {
    align-items: flex-start;
  }

  .shop .telos-store__cart-wrap {
    top: auto;
    right: 16px;
    bottom: 16px;
  }

  .mood-card {
    min-height: 245px;
  }

  .mood-card > span {
    margin-bottom: 70px;
  }

  .process__grid,
  .custom__grid,
  .faq__grid {
    gap: 55px;
  }

  .process__maker-mark {
    width: 164px;
    margin-bottom: 28px;
  }

  .process__steps li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

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

  .request-form {
    border-radius: var(--radius);
  }

  .accordion summary {
    font-size: 1.35rem;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 20px;
  }

  .footer__grid > div:first-child,
  .footer__grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }

  .telos-credit {
    width: min(calc(100% - 28px), var(--max));
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .notice,
  .site-header,
  .ticker,
  .hero__actions,
  .filters,
  .final-cta,
  .footer {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 35px 0;
  }
}
