/* ============================================================
   DY'OR — Fracaso Exitoso
   Premium dark cinematic landing page
   ------------------------------------------------------------
   Edit tokens in :root to retheme. Drop your hero image at
   assets/hero.jpg (or change --hero-image below) to enable
   the photographic background. The CSS-generated eclipse will
   sit on top of the image with a cinematic gradient.
   ============================================================ */

:root {
  /* ----- Color palette ----- */
  --black:      #000000;
  --ink:        #060606;
  --char:       #0d0c0b;
  --smoke:      #1a1816;
  --ash:        #3a3733;
  --bone:       #e6dfd2;
  --bone-soft:  rgba(230, 223, 210, 0.72);
  --bone-mute:  rgba(230, 223, 210, 0.45);

  --gold:       #c9a961;
  --gold-soft:  #e6c378;
  --gold-deep:  #8a7338;

  --blood:      #7a1e15;
  --ember:      #e85a1f;
  --ember-glow: #ff8a3d;
  --ember-deep: #b3370c;

  /* ----- Hero image (drop your file at assets/hero.jpg) ----- */
  --hero-image: url('assets/hero.jpg');

  /* ----- Typography ----- */
  --f-display: "Didot", "Bodoni 72", "Bodoni Moda", "Playfair Display",
               "Hoefler Text", "Times New Roman", Georgia, serif;
  --f-body:    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter",
               "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-mono:    "SF Mono", "JetBrains Mono", "Fira Code", "Menlo",
               "Consolas", monospace;

  /* ----- Sizes ----- */
  --max-w: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);

  /* ----- Motion ----- */
  --ease:    cubic-bezier(.2, .7, .2, 1);
  --ease-in: cubic-bezier(.6, 0, .8, .2);
}

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

html, body { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--black);
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bone);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga", "kern", "ss01";
  letter-spacing: 0.005em;
}

img, svg { display: block; max-width: 100%; }
ul       { list-style: none; padding: 0; margin: 0; }
a        { color: inherit; text-decoration: none; }
button   { font: inherit; }

::selection {
  background: var(--ember);
  color: var(--black);
}

/* ============================================================
   Page-load fade
   ============================================================ */
body.is-loading { opacity: 0; }
body            { opacity: 1; transition: opacity 1.2s var(--ease); }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.1s var(--ease),
    transform 1.1s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 36px) var(--pad-x);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bone);
}

.nav__mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 22px;
  font-style: italic;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  letter-spacing: 0;
}

.nav__word {
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--bone);
}

.nav__links {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
}

.nav__links a {
  position: relative;
  color: var(--bone-soft);
  transition: color 0.4s var(--ease);
  padding: 6px 0;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.5s var(--ease);
}
.nav__links a:hover            { color: var(--bone); }
.nav__links a:hover::after     { right: 0; }

@media (max-width: 640px) {
  .nav__links { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--pad-x) 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  will-change: transform;
}

/* Photographic layer — drop your image at assets/hero.jpg */
.hero__photo {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: 50% 38%;
  background-repeat: no-repeat;
  filter: grayscale(0.25) contrast(1.05) brightness(0.55);
  opacity: 0.85;
}

/* Cinematic eclipse layer (works without image) */
.hero__eclipse {
  position: absolute;
  inset: 0;
  background:
    /* eclipse corona */
    radial-gradient(circle 360px at 50% 22%,
      rgba(255, 138, 61, 0.0) 0,
      rgba(255, 138, 61, 0.0) 38%,
      rgba(255, 138, 61, 0.55) 42%,
      rgba(232, 90, 31, 0.32) 55%,
      rgba(122, 30, 21, 0.18) 75%,
      rgba(0,0,0,0) 100%),
    /* eclipse disk */
    radial-gradient(circle 140px at 50% 22%,
      rgba(0,0,0,1) 0,
      rgba(0,0,0,1) 95%,
      rgba(0,0,0,0) 100%),
    /* sky tone */
    radial-gradient(ellipse 90% 60% at 50% 0%,
      rgba(70, 28, 12, 0.55) 0%,
      rgba(20, 10, 6, 0.6) 35%,
      rgba(0, 0, 0, 0.85) 70%),
    /* base sky */
    linear-gradient(180deg,
      #1a0d08 0%,
      #0a0604 38%,
      #050302 65%,
      #000000 100%);
  mix-blend-mode: screen;
  opacity: 0.95;
  pointer-events: none;
}

/* Film grain */
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><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.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* Bottom vignette to anchor the content */
.hero__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 80% at 50% 100%,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.5) 35%,
      rgba(0,0,0,0) 65%),
    linear-gradient(180deg,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0) 25%,
      rgba(0,0,0,0) 60%,
      rgba(0,0,0,0.95) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 8px 18px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid rgba(201, 169, 97, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 12px var(--ember-glow);
  animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}

/* artist name */
.hero__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(80px, 18vw, 240px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--bone);
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.6),
    0 0 80px rgba(232, 90, 31, 0.08);
  background: linear-gradient(180deg,
    #f6efde 0%,
    #d8cfb8 35%,
    #8c7a51 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(232, 90, 31, 0.12));
}

/* album line */
.hero__album {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 14px 0 22px;
}

.hero__album-label {
  font-size: 10.5px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 0.5em;
}

.hero__album-title {
  font-size: clamp(16px, 2.2vw, 22px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bone);
  font-weight: 500;
  position: relative;
  padding: 0 0 14px;
}

.hero__album-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(15px, 1.7vw, 20px);
  color: var(--bone-soft);
  margin: 0 0 38px;
  max-width: 520px;
  line-height: 1.5;
}

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown {
  display: inline-flex;
  align-items: stretch;
  gap: clamp(8px, 1.4vw, 18px);
  margin: 0 0 36px;
  padding: 18px 22px;
  border: 1px solid rgba(230, 223, 210, 0.10);
  border-radius: 18px;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 60px -20px rgba(0, 0, 0, 0.8);
  transition: opacity 0.6s var(--ease);
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(58px, 8vw, 84px);
}

.countdown__num {
  font-family: var(--f-display);
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  background: linear-gradient(180deg, #f3ead4, #b9a877);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.countdown__label {
  margin-top: 10px;
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.countdown__sep {
  font-family: var(--f-display);
  font-size: clamp(28px, 4.5vw, 44px);
  color: var(--bone-mute);
  align-self: flex-start;
  margin-top: 4px;
}

/* "OUT NOW" replacement state */
.countdown.is-released {
  padding: 22px 32px;
  border-color: rgba(232, 90, 31, 0.45);
  background:
    linear-gradient(180deg,
      rgba(232, 90, 31, 0.18),
      rgba(122, 30, 21, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255, 138, 61, 0.18),
    0 0 80px -10px rgba(232, 90, 31, 0.5);
}

.countdown__out {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 2.6vw, 28px);
  letter-spacing: 0.06em;
  color: var(--ember-glow);
  text-align: center;
  text-shadow: 0 0 30px rgba(255, 138, 61, 0.35);
}

.countdown__out small {
  display: block;
  margin-top: 6px;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bone-soft);
}

@media (max-width: 480px) {
  .countdown        { padding: 14px 14px; gap: 4px; }
  .countdown__sep   { display: none; }
  .countdown__unit  { min-width: 60px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.hero__cta {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  border-radius: 999px;
  border: 1px solid rgba(230, 223, 210, 0.16);
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.5s var(--ease),
    border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    color 0.4s var(--ease);
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 120% at 50% 100%,
      rgba(232, 90, 31, 0.25),
      transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 80%);
  transform: skewX(-20deg);
  transition: left 0.9s var(--ease);
  pointer-events: none;
}

.btn:hover {
  border-color: rgba(232, 90, 31, 0.55);
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px -14px rgba(232, 90, 31, 0.45),
    0 0 0 1px rgba(232, 90, 31, 0.18);
}
.btn:hover::before { opacity: 1; }
.btn:hover::after  { left: 140%; }

.btn--primary {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.10),
      rgba(255, 255, 255, 0.02));
  border-color: rgba(230, 223, 210, 0.22);
}

.btn--lg {
  padding: 20px 40px;
  font-size: 14.5px;
}

.btn__icon {
  width: 22px; height: 22px;
  fill: currentColor;
  transition: transform 0.5s var(--ease);
}
.btn:hover .btn__icon { transform: scale(1.08) rotate(-2deg); }

.btn__arrow {
  width: 18px; height: 18px;
  transition: transform 0.5s var(--ease);
  opacity: 0.85;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============================================================
   SOCIALS — hero row
   ============================================================ */
.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(230, 223, 210, 0.12);
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--bone-soft);
  transition:
    transform 0.5s var(--ease),
    color 0.4s var(--ease),
    border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.social svg {
  width: 18px; height: 18px;
  fill: currentColor;
  transition: transform 0.5s var(--ease);
}

.social:hover {
  color: var(--ember-glow);
  border-color: rgba(232, 90, 31, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -10px rgba(232, 90, 31, 0.55);
}
.social:hover svg { transform: scale(1.1); }

/* hero scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 38px;
  border: 1px solid rgba(230, 223, 210, 0.25);
  border-radius: 12px;
  display: grid;
  place-items: start center;
  padding-top: 6px;
  opacity: 0.6;
  transition: opacity 0.4s var(--ease);
}
.hero__scroll:hover { opacity: 1; }
.hero__scroll span {
  display: block;
  width: 2px; height: 8px;
  background: var(--bone-soft);
  border-radius: 2px;
  animation: scrollCue 1.8s var(--ease) infinite;
}
@keyframes scrollCue {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 60px var(--pad-x);
  font-size: 10.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}

.divider__line {
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201, 169, 97, 0.5),
    transparent);
}

.divider__caps {
  white-space: nowrap;
}

@media (max-width: 540px) {
  .divider        { padding: 40px var(--pad-x); gap: 14px; font-size: 9px; letter-spacing: 0.3em; }
  .divider__line  { max-width: 60px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  position: relative;
  padding: 80px var(--pad-x) 120px;
  background: var(--ink);
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 0%,
      rgba(232, 90, 31, 0.08),
      transparent 40%),
    radial-gradient(circle at 0% 100%,
      rgba(122, 30, 21, 0.10),
      transparent 50%);
}

.about__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
}

.about__eyebrow,
.follow__eyebrow,
.finale__eyebrow {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}

.about__heading,
.follow__heading,
.finale__heading {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 60px;
  color: var(--bone);
}

.about__heading em,
.finale__heading em {
  font-style: italic;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
}

.about__body p {
  margin: 0 0 22px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
  color: var(--bone-soft);
}

.about__body em {
  color: var(--gold-soft);
  font-style: italic;
}

.about__quote {
  position: relative;
  padding: 36px 32px;
  border: 1px solid rgba(230, 223, 210, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0.005));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 30px 60px -20px rgba(0, 0, 0, 0.8);
}

.about__quote-mark {
  position: absolute;
  top: -10px; left: 22px;
  font-family: var(--f-display);
  font-size: 90px;
  line-height: 1;
  color: var(--ember);
  opacity: 0.35;
}

.about__quote p {
  margin: 0 0 18px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
  color: var(--bone);
}

.about__quote .hl {
  background: linear-gradient(120deg, var(--ember-glow), var(--gold-soft));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.about__quote-author {
  font-size: 10.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bone-mute);
}

/* ============================================================
   FOLLOW
   ============================================================ */
.follow {
  position: relative;
  padding: 100px var(--pad-x) 120px;
  background:
    radial-gradient(ellipse at 50% 0%,
      rgba(232, 90, 31, 0.08),
      transparent 40%),
    var(--black);
  border-top: 1px solid rgba(230, 223, 210, 0.06);
  border-bottom: 1px solid rgba(230, 223, 210, 0.06);
}

.follow__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.follow__sub {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--bone-soft);
  font-size: clamp(15px, 1.4vw, 18px);
  margin: -36px auto 50px;
  max-width: 520px;
}

.follow__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

.link-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(230, 223, 210, 0.10);
  border-radius: 16px;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
  transition:
    transform 0.5s var(--ease),
    border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    background 0.5s var(--ease);
  overflow: hidden;
}

.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(232, 90, 31, 0.12),
    rgba(201, 169, 97, 0.06) 60%,
    transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 90, 31, 0.45);
  box-shadow: 0 18px 40px -16px rgba(232, 90, 31, 0.4);
}
.link-card:hover::before { opacity: 1; }

.link-card__icon {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(230, 223, 210, 0.14);
  background: rgba(0, 0, 0, 0.4);
  color: var(--bone);
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.link-card__icon svg {
  width: 18px; height: 18px;
  fill: currentColor;
}
.link-card:hover .link-card__icon {
  color: var(--ember-glow);
  border-color: rgba(232, 90, 31, 0.5);
}

.link-card__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.link-card__title {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.link-card__handle {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--bone);
}

.link-card__arrow {
  font-size: 22px;
  color: var(--bone-mute);
  transition: transform 0.5s var(--ease), color 0.4s var(--ease);
}
.link-card:hover .link-card__arrow {
  transform: translateX(4px);
  color: var(--ember-glow);
}

/* ============================================================
   FINALE (Final CTA)
   ============================================================ */
.finale {
  position: relative;
  padding: 120px var(--pad-x);
  text-align: center;
  background: var(--black);
  overflow: hidden;
  isolation: isolate;
}

.finale::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(232, 90, 31, 0.18),
      transparent 50%),
    radial-gradient(circle at 50% 50%,
      rgba(0, 0, 0, 1) 0,
      rgba(0, 0, 0, 0) 70%);
  filter: blur(40px);
  opacity: 0.7;
}

.finale__inner {
  max-width: 880px;
  margin: 0 auto;
}

.finale__heading {
  margin-bottom: 48px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 60px var(--pad-x) 50px;
  text-align: center;
  border-top: 1px solid rgba(230, 223, 210, 0.06);
  background: var(--black);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer__brand {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  letter-spacing: 0.32em;
  margin: 0;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__copy,
.footer__line {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-mute);
}

.footer__line { color: var(--bone-soft); opacity: 0.55; }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .dot    { animation: none; }
}
