/* =====================================================
   RCKY ✟ VOL.001
   Chrome Hearts-inflected: blackletter, dagger crosses,
   fleur de lis, bone/jet/silver. Heavy ornament, no color.
   ===================================================== */

:root {
  --bg: #0a0a0a;
  --bg-2: #131313;
  --paper: #e8e3d4;        /* bone */
  --paper-2: #d8d3c3;
  --silver: #c9c4b7;
  --ink: #f1ece0;
  --ink-dim: #9a948a;
  --ink-mid: #635f57;
  --line: #1c1c1c;
  --line-2: #262626;

  --gothic: 'UnifrakturCook', 'Times New Roman', serif;
  --display: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --serif: 'Cormorant Garamond', 'Times New Roman', Times, serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --maxw: 1400px;
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--paper); color: var(--bg); }

em { font-style: italic; }

/* =====================================================
   FILM GRAIN
   ===================================================== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.1;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* =====================================================
   TICKER — bone strip with gothic ornament
   ===================================================== */
.ticker {
  background: var(--paper);
  color: var(--bg);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 10px 0;
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--bg);
  text-transform: uppercase;
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  animation: scroll 60s linear infinite;
  padding-left: 20px;
}
.ticker__track .sep { color: var(--bg); opacity: 0.55; font-size: 13px; }

/* MARQUEE — giant blackletter Rcky */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: var(--bg);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 30px 0;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee__track {
  display: inline-flex;
  gap: 48px;
  align-items: center;
  animation: scroll 50s linear infinite;
  padding-left: 48px;
}
.marquee__word {
  font-family: var(--gothic);
  font-weight: 700;
  font-size: clamp(72px, 11vw, 156px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-shadow: 0 0 1px rgba(255,255,255,0.08);
}
.marquee__star {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--silver);
  opacity: 0.7;
}

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

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}
.logo__img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.06)) drop-shadow(0 0 14px rgba(201,196,183,0.18));
}
@media (max-width: 520px) {
  .logo__img { height: 36px; }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.nav__links a {
  transition: color 0.2s var(--easing);
}
.nav__links a:hover { color: var(--paper); }
.nav__cta {
  color: var(--paper) !important;
  padding: 8px 14px;
  border: 1px solid var(--silver);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav__cta:hover {
  background: var(--paper);
  color: var(--bg) !important;
}

@media (max-width: 720px) {
  .nav { padding: 13px 18px; }
  .nav__links { gap: 12px; }
  .nav__links a:not(.nav__cta) { display: none; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  padding: 56px 28px 28px;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.margin-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  z-index: 2;
  text-transform: uppercase;
}
.margin-note--tl { top: 22px; left: 28px; }
.margin-note--tr { top: 22px; right: 28px; }
.margin-note__num {
  background: var(--paper);
  color: var(--bg);
  padding: 3px 7px 2px;
  font-weight: 800;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: end;
  max-width: var(--maxw);
  margin: 80px auto 40px;
  width: 100%;
}

.hero__crests {
  display: flex;
  gap: 16px;
  font-size: 18px;
  color: var(--silver);
  opacity: 0.6;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.hero__title {
  margin: 0 0 28px;
  color: var(--ink);
  line-height: 0.92;
}
.hero__logo {
  display: block;
  width: 100%;
  max-width: min(820px, 95%);
  height: auto;
  margin: 0 0 18px;
  filter:
    drop-shadow(0 2px 0 rgba(255,255,255,0.04))
    drop-shadow(0 0 28px rgba(201,196,183,0.22))
    drop-shadow(0 12px 40px rgba(0,0,0,0.6));
}
@media (max-width: 780px) {
  .hero__logo { max-width: 100%; margin-bottom: 14px; }
}
.hero__title-row--script {
  margin-top: 14px;
  display: block;
}
.hero__title-row--script em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 56px);
  color: var(--paper);
  letter-spacing: 0.005em;
  line-height: 1;
  display: inline-block;
}

.hero__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  max-width: 360px;
}
.hero__divider-line {
  flex: 1;
  height: 1px;
  background: var(--silver);
  opacity: 0.35;
}
.hero__divider-mark {
  font-size: 16px;
  color: var(--silver);
  opacity: 0.7;
}

.hero__sub {
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.5;
  font-weight: 400;
  max-width: 46ch;
  color: var(--ink);
  opacity: 0.88;
  margin: 0 0 36px;
}
.hero__sub em {
  font-style: italic;
  color: var(--paper);
}

/* SIGNUP */
.signup {
  display: flex;
  align-items: stretch;
  max-width: 520px;
  border-top: 1px solid var(--silver);
  border-bottom: 1px solid var(--silver);
  transition: border-color 0.2s;
}
.signup:focus-within { border-color: var(--paper); }
.signup__label {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 0;
  min-width: 0;
}
.signup__hint {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--ink-dim);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.signup input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  outline: none;
  padding: 0;
}
.signup input::placeholder { color: var(--ink-mid); font-style: italic; }
.signup button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0 4px 0 18px;
  transition: gap 0.2s var(--easing), opacity 0.2s;
}
.signup__cross {
  font-size: 14px;
  color: var(--paper);
  transition: transform 0.3s var(--easing);
}
.signup button:hover .signup__cross { transform: rotate(15deg); }
.signup button:active { opacity: 0.6; }
.signup__note {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  margin: 14px 0 0;
  text-transform: uppercase;
}

/* HERO FIGURE */
.hero__figure { margin: 0; }
.hero__plate {
  position: relative;
  background: var(--paper);
  padding: 22px;
  border: 1px solid var(--silver);
}
.hero__plate-frame {
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(10,10,10,0.18);
}
.frame-mark {
  position: absolute;
  font-size: 12px;
  color: var(--bg);
  opacity: 0.6;
  background: var(--paper);
  padding: 0 4px;
  line-height: 1;
}
.frame-mark--tl { top: -7px; left: 10px; }
.frame-mark--tr { top: -7px; right: 10px; }
.frame-mark--bl { bottom: -7px; left: 10px; }
.frame-mark--br { bottom: -7px; right: 10px; }

.hero__plate img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(0.94);
}
.plate-tag {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--bg);
  background: var(--paper-2);
  padding: 5px 9px 4px;
  z-index: 2;
}
.plate-tag--tl { top: 22px; left: 22px; }
.plate-tag--br {
  bottom: 22px; right: 22px;
  background: var(--bg);
  color: var(--paper);
}
.hero__caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 2px 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.hero__caption-name { color: var(--paper); }
.hero__caption-name em { font-family: var(--serif); font-style: italic; text-transform: none; letter-spacing: 0; font-size: 14px; }

/* slug bar */
.slug-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 0 4px;
  border-top: 1px solid var(--line-2);
  text-transform: uppercase;
}
.slug-bar__dots {
  flex: 1;
  overflow: hidden;
  text-overflow: clip;
  color: var(--ink-mid);
}

@media (max-width: 920px) {
  .hero { padding: 36px 18px 24px; min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; margin-top: 56px; }
  .hero__title-mark { font-size: clamp(72px, 20vw, 140px); }
  .hero__crest { width: clamp(48px, 12vw, 80px); height: clamp(48px, 12vw, 80px); }
  .hero__title-row { gap: 16px; }
  .hero__title-row--script em { font-size: clamp(22px, 6vw, 36px); }
  .margin-note--tr { display: none; }
  .margin-note--tl { left: 18px; top: 14px; }
  .hero__sub { font-size: 19px; }
  .slug-bar { font-size: 9px; gap: 8px; }
}

/* =====================================================
   SECTION HEAD
   ===================================================== */
.section-head {
  max-width: 880px;
  margin-bottom: 56px;
}
.section-head__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 26px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--paper);
  text-transform: uppercase;
}
.eyebrow--muted { color: var(--ink-dim); font-weight: 600; }
.eyebrow--dark { color: var(--bg); }
.section-head__title {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(54px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-head__gothic {
  font-family: var(--display);
  font-weight: 900;
  font-style: normal;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-transform: uppercase;
}
.section-head__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--paper);
  opacity: 0.85;
}
.section-head__title--dark { color: var(--bg); }
.section-head__title--dark .section-head__gothic { color: var(--bg); }
.section-head__title--dark em { color: var(--bg); opacity: 0.72; }
.section-head__sub {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.78;
  max-width: 54ch;
  margin: 0;
}

.section-head--light .section-head__top {
  border-bottom-color: rgba(10,10,10,0.22);
}

/* =====================================================
   STYLES SECTION
   ===================================================== */
.styles {
  padding: 110px 28px 90px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 26px;
}
@media (max-width: 960px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; gap: 22px; }
  .styles { padding: 70px 18px 60px; }
}

.card {
  position: relative;
  transition: transform 0.4s var(--easing);
}
.card:hover { transform: translateY(-4px); }

.card__media {
  position: relative;
  aspect-ratio: 1 / 1.12;
  background: var(--paper);
  overflow: hidden;
  border: 1px solid var(--line-2);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--easing), filter 0.5s;
  filter: contrast(1.05) saturate(0.94);
}
.card:hover .card__media img { transform: scale(1.04); }

.card__tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--bg);
  background: var(--paper);
  padding: 4px 8px 3px;
  z-index: 2;
}
.card__tag--soon {
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--ink-mid);
}

.card__meta { padding: 16px 2px 2px; }
.card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 10px;
}
.card__no { color: var(--paper); font-weight: 700; }
.card__price { color: var(--paper); }
.card__name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.03em;
  margin: 0 0 4px;
  color: var(--ink);
  line-height: 1;
  text-transform: uppercase;
}
.card__sub {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

/* placeholder textures — gothic ornament */
.card__media--placeholder { background: var(--bg-2); }
.placeholder__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}
.placeholder__pattern[data-style="dagger"] {
  background:
    repeating-linear-gradient(0deg, transparent 0 40px, rgba(232,227,212,0.06) 40px 41px),
    repeating-linear-gradient(90deg, transparent 0 40px, rgba(232,227,212,0.06) 40px 41px),
    #131313;
}
.placeholder__pattern[data-style="dagger"]::after,
.placeholder__pattern[data-style="cross"]::after,
.placeholder__pattern[data-style="fleur"]::after {
  content: '✟';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 140px;
  color: rgba(232,227,212,0.12);
  font-family: var(--gothic);
}
.placeholder__pattern[data-style="cross"] {
  background:
    radial-gradient(ellipse at center, rgba(232,227,212,0.06) 0%, transparent 60%),
    #131313;
}
.placeholder__pattern[data-style="cross"]::after { content: '✠'; font-size: 160px; }
.placeholder__pattern[data-style="fleur"] {
  background:
    repeating-linear-gradient(45deg, transparent 0 30px, rgba(232,227,212,0.05) 30px 31px),
    #131313;
}
.placeholder__pattern[data-style="fleur"]::after { content: '⚜'; font-size: 130px; }

.card--soon .card__media::before {
  content: 'SEALED ✟ TBA';
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--silver);
  opacity: 0.6;
  z-index: 3;
  white-space: nowrap;
}

/* =====================================================
   FIT — bone background, gospel
   ===================================================== */
.fit {
  background: var(--paper);
  color: var(--bg);
  padding: 110px 28px;
  position: relative;
}
.fit::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(rgba(10,10,10,0.05) 1px, transparent 1px);
  background-size: 3px 3px;
}
.fit__inner { max-width: var(--maxw); margin: 0 auto; position: relative; }

.fit__crest {
  position: absolute;
  top: -20px;
  right: 0;
  width: 90px;
  height: 90px;
  color: var(--bg);
  opacity: 0.85;
}
.fit__crest svg { width: 100%; height: 100%; }

.spec {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.spec__row {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 32px;
  padding: 26px 0;
  border-top: 1px solid rgba(10,10,10,0.22);
  align-items: baseline;
}
.spec__row:last-child { border-bottom: 1px solid rgba(10,10,10,0.22); }
.spec dt {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.03em;
  color: var(--bg);
  display: flex;
  align-items: baseline;
  gap: 14px;
  text-transform: uppercase;
}
.spec__num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(10,10,10,0.5);
}
.spec dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(10,10,10,0.82);
  max-width: 58ch;
}
@media (max-width: 720px) {
  .fit { padding: 70px 18px; }
  .spec__row { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .fit__crest { width: 60px; height: 60px; top: -10px; }
}

/* =====================================================
   CTA
   ===================================================== */
.cta {
  padding: 130px 28px 120px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--line-2);
}
.cta__inner { max-width: 820px; margin: 0 auto; }
.cta__crest {
  font-size: 22px;
  color: var(--silver);
  letter-spacing: 0.4em;
  margin-bottom: 22px;
  opacity: 0.7;
}
.cta .eyebrow {
  display: block;
  margin-bottom: 24px;
  color: var(--ink-dim);
  font-weight: 600;
}
.cta__title {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(60px, 10vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--ink);
}
.cta__gothic {
  font-family: var(--display);
  font-weight: 900;
  font-style: normal;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-transform: uppercase;
}
.cta__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--paper);
}
.cta__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.82;
  max-width: 50ch;
  margin: 0 auto 38px;
}
.cta__sub em { color: var(--paper); }
.btn-big {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--paper);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  padding: 20px 32px;
  border: 1px solid var(--paper);
  transition: gap 0.25s var(--easing), background 0.25s, color 0.25s, border-color 0.25s;
  text-transform: uppercase;
}
.btn-big__cross {
  font-size: 16px;
  transition: transform 0.3s var(--easing);
}
.btn-big:hover {
  gap: 22px;
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn-big:hover .btn-big__cross { transform: rotate(15deg); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  border-top: 1px solid var(--line-2);
  padding: 44px 28px 22px;
  background: var(--bg);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto 32px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; flex-direction: column; gap: 6px; }
.footer__logo {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 16px rgba(201,196,183,0.18));
}
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-dim);
}
.footer__links {
  display: flex;
  gap: 22px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.footer__links a { transition: color 0.2s; }
.footer__links a:hover { color: var(--paper); }
.footer__bot {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--ink-mid);
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
  flex-wrap: wrap;
  text-transform: uppercase;
}
.footer__mid { font-style: italic; font-family: var(--serif); letter-spacing: 0; font-size: 14px; text-transform: none; }
@media (max-width: 520px) {
  .footer { padding: 32px 18px 18px; }
  .footer__mark { font-size: 34px; }
}

/* =====================================================
   MOTION REDUCE
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
