:root {
  --ink: #140e09;
  --umber: #1c140e;
  --bark: #2b1d13;
  --bronze: #8a5724;
  --gold: #d4a017;
  --gold-bright: #f3cc4a;
  --gold-soft: #e6c56a;
  --cream: #f6ebd4;
  --cream-deep: #e4d0a6;
  --fur: #e8d4b0;
  --mist: #6f7d76;
  --halo: #fff4cc;
  --line: rgba(232, 197, 106, 0.28);
  --glass: rgba(28, 20, 14, 0.62);
  --font-dog: "Chewy", system-ui, sans-serif;
  --font-epic: "Cinzel", serif;
  --font-body: "Nunito", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 84px;
}

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

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(212, 160, 23, 0.45);
  color: #fff8dc;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  font-family: var(--font-body);
  background: var(--umber);
  overflow-x: hidden;
}

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

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

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Atmosphere */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(212, 160, 23, 0.18), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(91, 74, 48, 0.35), transparent 50%),
    radial-gradient(800px 500px at 0% 80%, rgba(61, 42, 26, 0.55), transparent 50%),
    linear-gradient(180deg, #20160f 0%, #17110c 42%, #1a140f 100%);
}

.atmosphere__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(246, 235, 212, 0.04), transparent 30%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 70px,
      rgba(212, 160, 23, 0.018) 70px,
      rgba(212, 160, 23, 0.018) 71px
    );
}

.atmosphere__rays {
  position: absolute;
  inset: -20% -10% auto;
  height: 90vh;
  background:
    conic-gradient(from 200deg at 50% 0%,
      transparent 0deg,
      rgba(255, 244, 204, 0.07) 8deg,
      transparent 14deg,
      transparent 22deg,
      rgba(243, 204, 74, 0.08) 28deg,
      transparent 34deg,
      transparent 44deg,
      rgba(255, 244, 204, 0.05) 50deg,
      transparent 58deg);
  filter: blur(8px);
  animation: ray-drift 18s ease-in-out infinite alternate;
  transform-origin: 50% 0%;
}

.atmosphere__mist {
  position: absolute;
  inset: auto 0 0;
  height: 38vh;
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(43, 29, 19, 0.85), transparent 70%),
    linear-gradient(180deg, transparent, rgba(20, 14, 9, 0.55));
}

.atmosphere__dust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.atmosphere__paws {
  position: absolute;
  inset: 0;
}

.atmosphere__paws span {
  position: absolute;
  width: 28px;
  height: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='18' cy='18' rx='7' ry='9' fill='%23d4a017'/%3E%3Cellipse cx='32' cy='12' rx='7' ry='9' fill='%23d4a017'/%3E%3Cellipse cx='46' cy='18' rx='7' ry='9' fill='%23d4a017'/%3E%3Cellipse cx='12' cy='30' rx='6' ry='8' fill='%23d4a017'/%3E%3Cpath d='M32 26c-11 0-18 9-18 17 0 8 8 11 18 9 10 2 18-1 18-9 0-8-7-17-18-17z' fill='%23d4a017'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.08;
  animation: paw-float 16s linear infinite;
}

.atmosphere__grain {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.8s steps(2) infinite;
}

.atmosphere__vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 180px 40px rgba(12, 8, 5, 0.55);
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--nav-h);
  padding: 0 28px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}

.nav.is-scrolled {
  background: rgba(20, 14, 9, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.18), 0 0 22px rgba(243, 204, 74, 0.28);
  animation: mark-glow 3.4s ease-in-out infinite;
}

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

.nav__word {
  font-family: var(--font-dog);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #fff4cc, #d4a017);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav__links {
  display: flex;
  gap: 28px;
}

.nav__links a {
  font-family: var(--font-epic);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-deep);
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: 12px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.btn--gold {
  background: linear-gradient(180deg, #f3cc4a 0%, #d4a017 48%, #9a6d12 100%);
  color: #1a120c;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: sheen 4.5s ease-in-out infinite;
}

.btn--ghost {
  border-color: var(--line);
  background: rgba(246, 235, 212, 0.04);
  color: var(--cream);
}

.btn--lg {
  min-height: 56px;
  padding: 0 26px;
  font-size: 1.02rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 160, 23, 0.34);
}

.icon-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--glass);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.icon-btn img,
img[src$="x.svg"] {
  width: 16px;
  height: 16px;
  filter: invert(89%) sepia(17%) saturate(430%) hue-rotate(356deg) brightness(104%);
}

.hero__partners img[src$="x.svg"],
.pack__card img[src$="x.svg"] {
  width: 22px;
  height: 22px;
}

.icon-btn:hover {
  transform: translateY(-2px) rotate(-6deg);
  border-color: var(--gold);
}

/* Hero */
.hero,
.section,
.footer,
.ticker,
.nav {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 28px) 20px 80px;
  text-align: center;
}

.hero__glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 204, 74, 0.2), transparent 68%);
  filter: blur(10px);
  animation: glow-breathe 5.5s ease-in-out infinite;
}

.hero__inner {
  width: min(860px, 100%);
}

.reliquary {
  width: min(320px, 72vw);
  aspect-ratio: 1;
  margin: 0 auto 28px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease);
}

.reliquary__orbit {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(243, 204, 74, 0.45);
  animation: spin 28s linear infinite;
}

.reliquary__orbit--mid {
  inset: -28px;
  border-style: dotted;
  animation-duration: 42s;
  animation-direction: reverse;
  opacity: 0.7;
}

.reliquary__halo {
  position: absolute;
  inset: -36px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 244, 204, 0.55), transparent 28%, transparent 50%, rgba(212, 160, 23, 0.4), transparent 72%);
  filter: blur(8px);
  animation: spin 12s linear infinite;
}

.reliquary__frame {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f3cc4a;
  box-shadow:
    0 0 0 8px rgba(212, 160, 23, 0.16),
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 0 40px rgba(255, 244, 204, 0.12);
  animation: frame-breathe 4.8s ease-in-out infinite;
}

.reliquary__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.reliquary__paws .paw {
  position: absolute;
  width: 22px;
  height: 22px;
  fill: var(--gold-soft);
  opacity: 0.85;
  animation: paw-orbit 10s ease-in-out infinite;
}

.paw--n { top: -8px; left: calc(50% - 11px); }
.paw--e { right: -8px; top: calc(50% - 11px); animation-delay: 1.2s; }
.paw--s { bottom: -8px; left: calc(50% - 11px); animation-delay: 2.4s; }
.paw--w { left: -8px; top: calc(50% - 11px); animation-delay: 3.6s; }

.eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-epic);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero__title {
  margin: 0;
  line-height: 0.9;
}

.hero__name {
  display: inline-block;
  font-family: var(--font-dog);
  font-size: clamp(5.2rem, 16vw, 9.5rem);
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #fff8dc 10%, #f3cc4a 42%, #c48912 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 40px rgba(212, 160, 23, 0.18);
  position: relative;
  animation: title-bob 5s ease-in-out infinite;
}

.hero__name::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
  mix-blend-mode: screen;
  -webkit-background-clip: text;
  background-clip: text;
  animation: title-sheen 5.5s ease-in-out infinite;
}

.hero__symbol {
  margin: 6px 0 14px;
  font-family: var(--font-epic);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__lead {
  margin: 0 auto 28px;
  max-width: 34rem;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.55;
  color: var(--fur);
}

.ca-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(640px, 100%);
  margin: 0 auto 22px;
  padding: 10px 10px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 14, 9, 0.55);
  backdrop-filter: blur(10px);
}

.ca-bar__label {
  font-family: var(--font-epic);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.ca-bar__value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.92rem;
  color: var(--cream-deep);
}

.ca-bar__copy {
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.ca-bar.is-copied .ca-bar__copy {
  background: #7dbe6a;
}

.hero__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.hero__partners a,
.hero__sol {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: rgba(246, 235, 212, 0.04);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.hero__partners img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero__partners a:hover {
  transform: translateY(-4px) scale(1.06);
  border-color: var(--gold);
}

.hero__sol img {
  filter: invert(86%) sepia(21%) saturate(650%) hue-rotate(358deg);
}

.scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  translate: -50% 0;
  width: 22px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.scroll-hint span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  translate: -50% 0;
  animation: scroll-dot 1.6s ease-in-out infinite;
}

/* Ticker */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(212, 160, 23, 0.06);
  padding: 12px 0;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  font-family: var(--font-epic);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-soft);
  animation: ticker 28s linear infinite;
}

.ticker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

/* Sections */
.section {
  padding: 110px 0;
}

.section__head {
  text-align: center;
  margin-bottom: 48px;
}

.section__head h2 {
  margin: 0 0 12px;
  font-family: var(--font-dog);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  background: linear-gradient(180deg, #fff4cc, #d4a017);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__head h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 14px;
  margin: 10px auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='18' cy='18' rx='7' ry='9' fill='%23d4a017'/%3E%3Cellipse cx='32' cy='12' rx='7' ry='9' fill='%23d4a017'/%3E%3Cellipse cx='46' cy='18' rx='7' ry='9' fill='%23d4a017'/%3E%3Cellipse cx='12' cy='30' rx='6' ry='8' fill='%23d4a017'/%3E%3Cpath d='M32 26c-11 0-18 9-18 17 0 8 8 11 18 9 10 2 18-1 18-9 0-8-7-17-18-17z' fill='%23d4a017'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.8;
}

.section__sub {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--fur);
  font-size: 1.08rem;
}

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

.tablet {
  padding: 28px 24px 30px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(246, 235, 212, 0.06), rgba(20, 14, 9, 0.25)),
    rgba(28, 20, 14, 0.55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.45s var(--ease), border-color 0.45s;
}

.tablet:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  border-color: rgba(243, 204, 74, 0.55);
}

.tablet__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(212, 160, 23, 0.12);
  margin-bottom: 16px;
}

.tablet__icon svg,
.tablet__icon img {
  width: 26px;
  height: 26px;
  fill: var(--gold);
}

.tablet h3 {
  margin: 0 0 10px;
  font-family: var(--font-dog);
  font-size: 1.7rem;
  color: var(--halo);
}

.tablet p {
  margin: 0;
  color: var(--cream-deep);
  line-height: 1.65;
}

.oath {
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(20, 14, 9, 0.45);
}

.oath img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 24px rgba(212, 160, 23, 0.28);
}

.oath p {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.7;
}

.oath cite {
  font-family: var(--font-epic);
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold-soft);
}

/* How to buy */
.trail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.trail::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
}

.trail__step {
  position: relative;
}

.trail__num {
  font-family: var(--font-epic);
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.trail__card {
  min-height: 260px;
  padding: 22px 18px 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(28, 20, 14, 0.58);
  transition: transform 0.4s var(--ease);
}

.trail__card:hover {
  transform: translateY(-8px);
}

.trail__logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(246, 235, 212, 0.06);
  margin-bottom: 16px;
}

.trail__logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.trail__logo--sol img {
  filter: invert(86%) sepia(21%) saturate(650%) hue-rotate(358deg);
}

.trail__logo--portrait {
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.trail__logo--portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trail__card h3 {
  margin: 0 0 10px;
  font-family: var(--font-dog);
  font-size: 1.45rem;
}

.trail__card p {
  margin: 0;
  color: var(--cream-deep);
  line-height: 1.6;
}

.howtobuy__cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* Chart */
.kennel {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d0b08;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 8px rgba(212, 160, 23, 0.06);
}

.kennel__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #2a1f14, #1a140e);
  border-bottom: 1px solid var(--line);
}

.kennel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c48912;
}

.kennel__dot:nth-child(2) { background: #f3cc4a; }
.kennel__dot:nth-child(3) { background: #8a5724; }

.kennel__link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--cream-deep);
}

.kennel__link img {
  width: 18px;
  height: 18px;
}

.kennel__stage {
  height: min(640px, 78vh);
}

.kennel__stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Join us */
.banner-plate {
  margin: 0 0 28px;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(243, 204, 74, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 10px rgba(212, 160, 23, 0.08);
}

.banner-plate img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: center 28%;
  animation: kenburns 22s ease-in-out infinite alternate;
}

.banner-plate::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(20, 14, 9, 0.28);
}

.pack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pack__card {
  min-height: 88px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(28, 20, 14, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.pack__card img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.pack__card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

/* Footer */
.footer {
  padding: 40px 0 50px;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.footer p {
  margin: 0;
  color: var(--cream-deep);
}

.footer__note {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) forwards;
  animation-play-state: paused;
}

.reveal.is-in {
  animation-play-state: running;
}

/* Mobile */
@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 16px auto;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(20, 14, 9, 0.94);
    border: 1px solid var(--line);
  }

  .nav.is-open .nav__links {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  .nav .btn--gold span {
    display: none;
  }

  .about__grid,
  .trail,
  .pack {
    grid-template-columns: 1fr;
  }

  .trail::before {
    display: none;
  }

  .oath {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .banner-plate img {
    aspect-ratio: 4 / 5;
    object-position: center 20%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes ray-drift {
  from { transform: rotate(-6deg) scale(1); }
  to { transform: rotate(7deg) scale(1.05); }
}

@keyframes grain-shift {
  from { transform: translate(0, 0); }
  to { transform: translate(-2%, 2%); }
}

@keyframes paw-float {
  0% { transform: translateY(10vh) rotate(0deg); opacity: 0; }
  15% { opacity: 0.1; }
  100% { transform: translateY(-20vh) rotate(30deg); opacity: 0; }
}

@keyframes mark-glow {
  0%, 100% { box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.16), 0 0 18px rgba(243, 204, 74, 0.2); }
  50% { box-shadow: 0 0 0 5px rgba(212, 160, 23, 0.28), 0 0 28px rgba(243, 204, 74, 0.42); }
}

@keyframes sheen {
  0%, 60% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.7; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes frame-breathe {
  0%, 100% { box-shadow: 0 0 0 8px rgba(212, 160, 23, 0.16), 0 20px 50px rgba(0, 0, 0, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(212, 160, 23, 0.28), 0 20px 60px rgba(243, 204, 74, 0.2); }
}

@keyframes paw-orbit {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes title-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes title-sheen {
  0%, 55% { opacity: 0; transform: translateX(-8%); }
  70% { opacity: 0.8; transform: translateX(8%); }
  100% { opacity: 0; }
}

@keyframes scroll-dot {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}
