/* =====================================================================
   DEFIANCE TO AVERAGE — landing page
   Brand: Black / Bone / Blood Red. Anton (display) / Oswald (tags) / Inter (body).
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --black: #0a0a0a;
  --ink: #111111;
  --steel: #2a2a2a;
  --bone: #f2efea;
  --bone-2: #e7e3dc;
  --line: #d4d1ca;
  --ash: #9a9a9a;
  --white: #ffffff;
  --red: #d7282f;
  --red-2: #b91f25;

  --font-display: 'Anton', 'Impact', 'Arial Black', sans-serif;
  --font-tag: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;

  /* Fluid type — generous for hero, tight elsewhere */
  --t-hero: clamp(64px, 14vw, 220px);
  --t-display: clamp(40px, 7vw, 96px);
  --t-section: clamp(36px, 5.5vw, 72px);
  --t-h3: clamp(20px, 1.6vw, 24px);
  --t-lead: clamp(17px, 1.3vw, 19px);
  --t-base: 16px;
  --t-sm: 14px;
  --t-xs: 12px;

  --maxw: 1280px;
  --pad-x: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}
input {
  font-family: inherit;
}

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}

/* ---------- Top tape ---------- */
.tape {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-tag);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 12px;
  overflow: hidden;
  border-bottom: 1px solid #00000022;
  position: relative;
  z-index: 60;
}
.tape__track {
  display: inline-flex;
  white-space: nowrap;
  padding: 9px 0;
  gap: 28px;
  animation: tape-scroll 38s linear infinite;
  will-change: transform;
}
.tape__track span {
  display: inline-block;
}
@keyframes tape-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .tape__track {
    animation: none;
  }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--pad-x);
  background: rgba(10, 10, 10, 0.86);
  color: var(--bone);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #ffffff14;
  transition: background 0.3s var(--ease);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav__brand-mark {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  background: var(--red);
  color: var(--white);
  padding: 4px 10px 2px;
  line-height: 1;
}
.nav__brand-name {
  font-family: var(--font-tag);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 13px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-tag);
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 12px;
  text-transform: uppercase;
}
.nav__links a {
  color: var(--bone);
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.nav__links a:hover {
  opacity: 1;
  color: var(--white);
}
.nav__cta {
  background: var(--red);
  color: var(--white) !important;
  opacity: 1 !important;
  padding: 9px 14px 7px;
  letter-spacing: 0.22em;
  border: 1px solid var(--red);
  transition: background 0.2s ease, transform 0.2s var(--ease);
}
.nav__cta:hover {
  background: var(--red-2);
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .nav__brand-name {
    display: none;
  }
  .nav__links {
    gap: 16px;
  }
  .nav__links a:not(.nav__cta) {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--bone);
  overflow: hidden;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  padding: clamp(48px, 9vh, 96px) var(--pad-x) clamp(56px, 10vh, 110px);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, #1a1a1a 0%, #0a0a0a 60%, #050505 100%);
  opacity: 1;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(215, 40, 47, 0.22), transparent 55%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero__lion {
  width: clamp(140px, 18vw, 200px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 24px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--red);
  box-shadow:
    0 0 0 6px rgba(10, 10, 10, 1),
    0 0 0 7px rgba(215, 40, 47, 0.35),
    0 18px 50px rgba(215, 40, 47, 0.22);
  background: var(--black);
}
.hero__lion img {
  width: 78%;
  height: 78%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  filter: contrast(1.05);
}

.hero__eyebrow {
  font-family: var(--font-tag);
  font-weight: 500;
  letter-spacing: 0.34em;
  font-size: 12px;
  color: var(--ash);
  text-transform: uppercase;
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 14px rgba(215, 40, 47, 0.7);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
@media (prefers-reduced-motion: reduce) { .dot { animation: none; } }

.hero__title {
  font-family: var(--font-display);
  font-size: var(--t-hero);
  line-height: 0.86;
  letter-spacing: 0.005em;
  margin: 0 0 28px;
  color: var(--bone);
  font-weight: 400;
  text-transform: uppercase;
}
.hero__title .line {
  display: block;
}
.hero__title .line--accent {
  color: var(--red);
  font-style: italic;
  letter-spacing: 0.04em;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: var(--t-lead);
  line-height: 1.55;
  color: #cdcdcd;
  max-width: 640px;
  margin: 0 auto 22px;
}

/* Audience pills */
.audience {
  list-style: none;
  margin: 0 auto 40px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 760px;
}
.audience li {
  font-family: var(--font-tag);
  font-weight: 500;
  letter-spacing: 0.22em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--bone);
  border: 1px solid #ffffff26;
  padding: 7px 12px 5px;
  background: #ffffff08;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.audience li:hover {
  border-color: var(--red);
  color: var(--red);
  background: #ffffff10;
}
@media (max-width: 480px) {
  .audience { gap: 6px; }
  .audience li { font-size: 10px; padding: 6px 10px 4px; letter-spacing: 0.18em; }
}

/* Countdown */
.countdown {
  margin: 0 auto 36px;
  max-width: 540px;
}
.countdown__label {
  font-family: var(--font-tag);
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 11px;
  color: var(--ash);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.countdown__cell {
  background: #14141480;
  border: 1px solid #ffffff18;
  padding: 14px 6px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.countdown__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.countdown__unit {
  font-family: var(--font-tag);
  font-weight: 500;
  letter-spacing: 0.24em;
  font-size: 10px;
  color: var(--ash);
}

/* Capture */
.capture {
  max-width: 560px;
  margin: 0 auto 32px;
  text-align: left;
}
.capture__label {
  display: block;
  text-align: center;
  font-family: var(--font-tag);
  font-weight: 700;
  letter-spacing: 0.24em;
  font-size: 11px;
  color: var(--bone);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.capture__row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.capture input[type='email'] {
  flex: 1 1 auto;
  background: var(--white);
  color: var(--ink);
  border: 0;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  letter-spacing: 0.01em;
  border: 2px solid var(--white);
  transition: border-color 0.2s ease;
  min-width: 0;
}
.capture input[type='email']::placeholder {
  color: #888;
  font-weight: 400;
}
.capture input[type='email']:focus {
  border-color: var(--red);
}
.capture input[type='email']:invalid:not(:placeholder-shown) {
  border-color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-tag);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 13px;
  text-transform: uppercase;
  padding: 16px 24px;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  background: var(--red-2);
  border-color: var(--red-2);
  transform: translateY(-2px);
}
.btn__arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}
.btn--ghost {
  background: transparent;
  color: var(--bone);
  border: 2px solid var(--bone);
}
.btn--ghost:hover {
  background: var(--bone);
  color: var(--black);
  border-color: var(--bone);
}

.capture__note {
  text-align: center;
  font-size: 12px;
  color: var(--ash);
  letter-spacing: 0.04em;
  margin: 14px 0 0;
}
.capture__success {
  text-align: center;
  font-family: var(--font-tag);
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--red);
  background: #ffffff10;
  border: 1px solid var(--red);
  padding: 14px 18px;
  margin: 12px 0 0;
  text-transform: uppercase;
  font-size: 13px;
}

.hero__battlecry {
  font-family: var(--font-tag);
  font-weight: 700;
  letter-spacing: 0.34em;
  font-size: 13px;
  color: var(--red);
  margin: 8px 0 0;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .capture__row {
    flex-direction: column;
  }
  .btn {
    padding: 16px 18px;
  }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-tag);
  font-weight: 500;
  letter-spacing: 0.4em;
  font-size: 10px;
  color: var(--ash);
}
.scroll-cue__line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--ash), transparent);
  display: block;
  animation: scrollLine 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); opacity: 0.4; transform-origin: bottom; }
}
@media (max-width: 720px) { .scroll-cue { display: none; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue__line { animation: none; } }

/* ---------- Section common ---------- */
.section-eyebrow {
  font-family: var(--font-tag);
  font-weight: 700;
  letter-spacing: 0.34em;
  font-size: 11px;
  color: var(--red);
  text-transform: uppercase;
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--t-section);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 0 0 32px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
}
.strike {
  position: relative;
  display: inline-block;
  color: var(--red);
}
.section-lead {
  font-size: var(--t-lead);
  line-height: 1.55;
  color: #444;
  max-width: 60ch;
  margin: 0 0 56px;
}

/* ---------- Manifesto ---------- */
.manifesto {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(80px, 12vh, 140px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.manifesto__lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--steel);
  margin: 0;
}
.creed {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}
.creed li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.creed__num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--red);
  letter-spacing: 0.02em;
  line-height: 1;
}
.creed li > span:last-child {
  font-family: var(--font-tag);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink);
  text-transform: uppercase;
}
@media (max-width: 860px) {
  .manifesto__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Visual breaks ---------- */
.break {
  position: relative;
  overflow: hidden;
  height: clamp(380px, 70vh, 640px);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
}
.break__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.7) 100%);
}
.break__overlay--bottom {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.85) 100%);
}
.break__quote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(34px, 6vw, 84px);
  line-height: 0.96;
  color: var(--bone);
  letter-spacing: 0.005em;
  margin: 0;
  padding: 0 var(--pad-x);
  max-width: 1100px;
  text-align: center;
  font-weight: 400;
}
.break__quote--right {
  text-align: right;
  margin-left: auto;
  width: 100%;
}
.break__mark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 140px);
  color: var(--red);
  line-height: 0.6;
  margin-bottom: 8px;
}
.break__sig {
  display: inline-block;
  font-family: var(--font-tag);
  font-weight: 500;
  letter-spacing: 0.28em;
  font-size: clamp(11px, 1vw, 14px);
  color: var(--red);
  margin-top: 18px;
  text-transform: uppercase;
}

/* ---------- Standards ---------- */
.standards {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(80px, 12vh, 140px) 0;
}
.standards .section-title {
  color: var(--bone);
}
.standards .section-lead {
  color: #aaa;
}
.standards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #ffffff14;
  border: 1px solid #ffffff14;
}
.card {
  background: var(--ink);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  position: relative;
  transition: background 0.3s ease;
}
.card:hover {
  background: #1a1a1a;
}
.card__num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--red);
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1;
}
.card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1;
}
.card__body {
  font-size: 15px;
  line-height: 1.6;
  color: #c8c8c8;
  margin: 0;
}
.card--accent {
  background: var(--red);
  color: var(--white);
}
.card--accent:hover {
  background: var(--red-2);
}
.card--accent .card__num,
.card--accent .card__title,
.card--accent .card__body {
  color: var(--white);
}

@media (max-width: 980px) {
  .standards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .standards__grid {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: auto;
  }
}

/* ---------- Why ---------- */
.why {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(80px, 12vh, 140px) 0;
}
.why__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.why__col p {
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.65;
  color: var(--steel);
  margin: 0 0 22px;
}
.why__col p:last-child {
  margin-bottom: 0;
}
.why__sig {
  font-family: var(--font-tag);
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  font-size: 16px !important;
  color: var(--ink) !important;
  border-left: 3px solid var(--red);
  padding-left: 16px;
}
.why__pull {
  position: sticky;
  top: 100px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 32px 0;
}
.why__pull-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0 0 18px;
  text-transform: uppercase;
  font-weight: 400;
}
.why__pull-byline {
  font-family: var(--font-tag);
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 11px;
  color: var(--red);
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 860px) {
  .why__grid {
    grid-template-columns: 1fr;
  }
  .why__pull {
    position: static;
    order: -1;
  }
}

/* ---------- Finale ---------- */
.finale {
  background: var(--black);
  color: var(--bone);
  padding: clamp(90px, 14vh, 160px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.finale::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 40, 47, 0.18), transparent 60%);
  pointer-events: none;
}
.finale__eyebrow {
  color: var(--red);
  justify-content: center;
}
.finale__eyebrow::before {
  background: var(--red);
}
.finale__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.9;
  margin: 0 0 22px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: 0.005em;
}
.finale__date {
  color: var(--red);
  font-style: italic;
  display: inline-block;
  letter-spacing: 0.03em;
}
.finale__sub {
  font-size: var(--t-lead);
  color: #bdbdbd;
  margin: 0 auto 36px;
  max-width: 50ch;
}
.finale__cta {
  margin: 0 auto 40px;
}
.finale__cry {
  font-family: var(--font-tag);
  font-weight: 700;
  letter-spacing: 0.34em;
  font-size: 13px;
  color: var(--red);
  margin: 0;
  text-transform: uppercase;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 56px 0 28px;
  border-top: 1px solid #ffffff14;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid #ffffff14;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__mark {
  font-family: var(--font-display);
  font-size: 22px;
  background: var(--red);
  color: var(--white);
  padding: 4px 10px 2px;
  line-height: 1;
}
.footer__name {
  font-family: var(--font-tag);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 13px;
  margin: 0;
}
.footer__tag {
  font-family: var(--font-tag);
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--ash);
  margin: 4px 0 0;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-family: var(--font-tag);
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 12px;
  text-transform: uppercase;
}
.footer__links a {
  color: #c8c8c8;
  transition: color 0.2s ease;
}
.footer__links a:hover {
  color: var(--red);
}
.footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff22;
  font-family: var(--font-tag);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: var(--bone);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.footer__social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.footer__legal {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-tag);
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--ash);
  text-transform: uppercase;
}
.footer__legal p {
  margin: 0;
}
@media (max-width: 860px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__brand,
  .footer__social {
    justify-content: center;
  }
  .footer__legal {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Utility ---------- */
.br-desktop { display: inline; }
@media (max-width: 600px) { .br-desktop { display: none; } }

::selection {
  background: var(--red);
  color: var(--white);
}
