/* ─────────────────────────────────────────────────────────
   DEN ESPINOZA — Linktree
   Glass morphism · iOS style · Dark #1f1f1f · Red #e93f3f
───────────────────────────────────────────────────────── */

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: #1f1f1f;
  color: #ededed;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Background layers ────────────────────────────────── */
.bg-base {
  position: fixed;
  inset: 0;
  background: #1f1f1f;
  z-index: 0;
}

.bg-glow-top {
  position: fixed;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(ellipse at center, rgba(233,63,63,0.16) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.bg-glow-mid {
  position: fixed;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(233,63,63,0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* ── Page container ───────────────────────────────────── */
.page {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 430px;
  min-height: 100dvh;
  border-left:  1px solid rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 96px;
}

/* ── Header ───────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: rgba(31,31,31,0.72);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  z-index: 100;
}

.header-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.6px;
  color: #e93f3f;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.icon-btn {
  background: none;
  border: none;
  color: #e93f3f;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.icon-btn:active { color: #ff6a4f; }

.icon-btn.shared {
  color: #e93f3f;
}

/* ── Main ─────────────────────────────────────────────── */
main {
  padding-top: 56px;
  display: flex;
  flex-direction: column;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 44px 20px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow: hidden;
  min-height: 236px;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -70px -42px auto;
  height: 430px;
  background:
    radial-gradient(ellipse at 66% 4%, rgba(255,150,55,0.7) 0%, rgba(233,63,63,0.28) 23%, transparent 54%),
    radial-gradient(circle at center, rgba(255,255,255,0.11) 0 1px, transparent 1px);
  background-size: auto, 6px 6px;
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
  animation: heroHeat 7s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  left: 44%;
  width: 130px;
  height: 310px;
  z-index: 0;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(255,212,135,0.68), rgba(255,113,35,0.28), transparent);
  filter: blur(18px);
  transform: rotate(12deg);
  opacity: 0.7;
  pointer-events: none;
  animation: heroBeam 6.5s ease-in-out infinite alternate;
}

.hero-deco {
  position: absolute;
  top: -24px;
  right: -52px;
  opacity: 0.18;
  pointer-events: none;
  animation: decoSpin 40s linear infinite;
}

@keyframes decoSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes heroHeat {
  from {
    transform: translate3d(-16px, -12px, 0) scale(1);
    opacity: 0.56;
  }
  to {
    transform: translate3d(18px, 8px, 0) scale(1.08);
    opacity: 0.82;
  }
}

@keyframes heroBeam {
  from {
    transform: translate3d(-18px, -6px, 0) rotate(10deg) scaleY(0.92);
    opacity: 0.45;
  }
  to {
    transform: translate3d(18px, 18px, 0) rotate(15deg) scaleY(1.08);
    opacity: 0.82;
  }
}

.logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 4.5px;
  color: rgba(233,63,63,0.75);
  text-transform: uppercase;
  border: 1px solid rgba(233,63,63,0.2);
  background: rgba(233,63,63,0.06);
  padding: 6px 12px;
  border-radius: 5px;
  width: fit-content;
}

.identity {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.profile-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-photo {
  width: 76px;
  height: 76px;
  max-width: 76px;
  max-height: 76px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,0.36);
}

.name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 6.1vw, 26px);
  letter-spacing: 0;
  text-transform: none;
  color: #ededed;
  line-height: 1.15;
  white-space: nowrap;
}

.tagline {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(237,237,237,0.58);
}

/* CTA button */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  background: #e93f3f;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 14px 20px;
  line-height: 1.45;
  box-shadow: 0 8px 36px rgba(233,63,63,0.38), 0 0 0 1px rgba(233,63,63,0.22);
  animation: ctaGlow 2.8s ease-in-out infinite;
  transition: transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.cta-btn:active {
  transform: scale(0.97);
  animation-play-state: paused;
  box-shadow: 0 4px 16px rgba(233,63,63,0.22);
}

.huly-cta {
  position: relative;
  isolation: isolate;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  background:
    radial-gradient(circle at var(--cta-x, 50%) 50%, rgba(255,131,41,0.7), transparent 25%),
    linear-gradient(90deg, #efefed, #d7d7d5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 16px 34px rgba(0,0,0,0.24);
  color: #4f1d0f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  overflow: hidden;
  animation: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.huly-cta::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  background:
    radial-gradient(circle at var(--cta-x, 50%) 50%, rgba(255,188,79,0.92), transparent 19%),
    linear-gradient(90deg, rgba(255,255,255,0.95), rgba(216,216,214,0.95));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.huly-cta::after {
  content: '→';
  margin-left: 6px;
  transform: translateX(0);
  transition: transform 0.25s ease;
}

.huly-cta:active {
  transform: scale(0.98);
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 8px 36px rgba(233,63,63,0.38), 0 0 0 1px rgba(233,63,63,0.22); }
  50%       { box-shadow: 0 8px 52px rgba(233,63,63,0.58), 0 0 0 1px rgba(233,63,63,0.35); }
}

/* ── Sections ─────────────────────────────────────────── */
.section {
  padding: 0 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 4px;
}

.section-label {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e93f3f;
  white-space: nowrap;
}

.divider {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* ── Glass shared ─────────────────────────────────────── */
.link-card,
.accordion,
.music-card,
.book-card,
.contact-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}

/* Top-edge shimmer — iOS glass signature */
.link-card::before,
.accordion::before,
.music-card::before,
.book-card::before,
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 12px; right: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  pointer-events: none;
  z-index: 1;
}

/* ── Link cards ───────────────────────────────────────── */
.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 72px;
  padding: 0 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.link-card:active { background: rgba(255,255,255,0.075); }

/* icon wrapper */
.link-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(237,237,237,0.72);
}

.link-icon.red {
  background: rgba(233,63,63,0.06);
  border-color: rgba(233,63,63,0.28);
  color: #e93f3f;
}

.link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.link-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #ededed;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-sub {
  font-size: 11px;
  color: rgba(237,237,237,0.48);
  line-height: 1.4;
}

.ext-icon {
  color: rgba(237,237,237,0.3);
  flex-shrink: 0;
}

/* ── Accordion ────────────────────────────────────────── */
.accordion {
  border-radius: 8px;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 72px;
  padding: 0 16px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s ease;
}

.accordion-trigger:active { background: rgba(255,255,255,0.04); }

.chevron {
  color: rgba(237,237,237,0.32);
  flex-shrink: 0;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.chevron.open { transform: rotate(180deg); }

/* Smooth height animation using CSS grid trick */
.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body.open { grid-template-rows: 1fr; }

.accordion-inner { overflow: hidden; }

.sub-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.sub-link:active { background: rgba(255,255,255,0.05); }

.sub-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e93f3f;
  flex-shrink: 0;
  box-shadow: 0 0 7px rgba(233,63,63,0.65);
}

.sub-text {
  flex: 1;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(237,237,237,0.8);
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sub-text small {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  color: rgba(237,237,237,0.35);
  font-weight: 400;
}

.ext-sm {
  color: rgba(237,237,237,0.3);
  flex-shrink: 0;
}

/* ── Music cards ──────────────────────────────────────── */
.music-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.music-card:active { background: rgba(255,255,255,0.08); }

.music-emoji {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.chevron-right {
  color: rgba(237,237,237,0.28);
  flex-shrink: 0;
}

/* ── Books ────────────────────────────────────────────── */
.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.book-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.book-card:not(.coming-soon):active { background: rgba(255,255,255,0.08); }

.book-card.coming-soon {
  opacity: 0.9;
  cursor: default;
  pointer-events: none;
}

.book-cover {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.17;
  object-fit: cover;
  border-radius: 2px;
  background: rgba(0,0,0,0.24);
  box-shadow: 0 16px 28px rgba(0,0,0,0.24);
}

.book-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.book-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #ededed;
  line-height: 1.18;
}

.book-sub {
  font-size: 16px;
  color: rgba(237,237,237,0.5);
  margin-top: 2px;
  line-height: 1.35;
}

/* ── Shop ─────────────────────────────────────────────── */
.shop-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 17px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.shop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  pointer-events: none;
  z-index: 1;
}

.shop-card:active {
  transform: scale(0.99);
  background: rgba(255,255,255,0.1);
}

.shop-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  background: rgba(255,255,255,0.06);
}

.shop-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.shop-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #ededed;
  line-height: 1.5;
}

.shop-sub {
  font-size: 10px;
  color: rgba(237,237,237,0.42);
  line-height: 1.5;
}

/* ── Contact ──────────────────────────────────────────── */
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 60px;
  padding: 0 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.contact-card:active { background: rgba(255,255,255,0.07); }

.contact-cta {
  margin-top: 2px;
  min-height: 56px;
  width: 100%;
}

.contact-icon {
  color: rgba(237,237,237,0.42);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  color: rgba(237,237,237,0.42);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.contact-value {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #ededed;
}

/* ── Phone orbit ──────────────────────────────────────── */
.call-orbit-section {
  padding: 0 20px 32px;
  display: flex;
  justify-content: center;
}

.call-orbit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  height: 184px;
  min-width: 184px;
  min-height: 184px;
  flex: 0 0 auto;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  overflow: hidden;
  text-decoration: none;
  outline: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(5,5,5,0.94) 0 19%, rgba(12,12,12,0.72) 20%, transparent 30%),
    conic-gradient(from 24deg, rgba(233,63,63,0.74), rgba(255,139,44,0.62), rgba(37,37,37,0.92), rgba(233,63,63,0.58), rgba(255,139,44,0.52), rgba(233,63,63,0.74));
  border: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), inset 0 0 72px rgba(0,0,0,0.48), 0 20px 56px rgba(0,0,0,0.32);
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0);
  contain: layout paint;
}

.call-orbit:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), inset 0 0 72px rgba(0,0,0,0.48), 0 0 0 2px rgba(233,63,63,0.46), 0 20px 56px rgba(0,0,0,0.32);
}

.call-orbit::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.13) 0 1px, transparent 1px);
  background-size: auto, 7px 7px;
  filter: blur(0.4px);
  opacity: 0.5;
  animation: dotDrift 24s ease-in-out infinite alternate;
}

.call-orbit::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  background:
    radial-gradient(circle, transparent 0 37%, rgba(0,0,0,0.36) 38% 41%, transparent 42%),
    radial-gradient(circle, transparent 0 58%, rgba(233,63,63,0.2) 59% 61%, transparent 62%),
    radial-gradient(circle, transparent 0 74%, rgba(255,139,44,0.16) 75% 77%, transparent 78%);
  box-shadow: 0 0 34px rgba(233,63,63,0.24), 0 0 42px rgba(255,139,44,0.18);
  filter: blur(1.8px);
  animation: callWaves 5.8s ease-in-out infinite;
}

.call-orbit-core {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(9,9,9,0.88);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 0 0 8px rgba(0,0,0,0.18), 0 0 28px rgba(233,63,63,0.34);
  animation: callIconPulse 2.8s ease-in-out infinite, callButtonBreathe 5.8s ease-in-out infinite;
}

.call-orbit-core svg {
  animation: callIconRing 3.8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes dotDrift {
  from {
    transform: rotate(-2deg) scale(1.02);
  }
  to {
    transform: rotate(2deg) scale(1.06);
  }
}

@keyframes callWaves {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.48;
  }
  50% {
    transform: scale(1.16);
    opacity: 0.78;
  }
}

@keyframes callButtonBreathe {
  0%, 100% { transform: scale(0.98); }
  50% { transform: scale(1.02); }
}

@keyframes callIconPulse {
  0%, 100% {
    box-shadow: 0 0 0 8px rgba(0,0,0,0.18), 0 0 24px rgba(233,63,63,0.28);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(233,63,63,0.1), 0 0 36px rgba(255,139,44,0.38);
  }
}

@keyframes callIconRing {
  0%, 100% { transform: rotate(0deg) scale(1); }
  8% { transform: rotate(-8deg) scale(1.04); }
  16% { transform: rotate(8deg) scale(1.04); }
  24% { transform: rotate(-5deg) scale(1.02); }
  32% { transform: rotate(0deg) scale(1); }
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0.72;
  text-align: center;
}

.footer-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  color: #e93f3f;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-sub {
  font-size: 11px;
  color: rgba(237,237,237,0.28);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-top: 6px;
}

.footer-links a {
  font-size: 11px;
  color: rgba(237,237,237,0.28);
  text-decoration: none;
}

/* ── Bottom nav ───────────────────────────────────────── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: rgba(24,24,24,0.9);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-top: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px 14px 0 0;
  display: flex;
  align-items: center;
  padding: 10px 20px 26px;
  z-index: 100;
  gap: 4px;
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  padding: 10px 8px;
  border-radius: 10px;
  color: rgba(237,237,237,0.4);
  transition: color 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  -webkit-tap-highlight-color: transparent;
}

.nav-item.active {
  background: rgba(233,63,63,0.11);
  border-color: rgba(233,63,63,0.2);
  color: #e93f3f;
}

.nav-label {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── Entrance animations ──────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
}

.animate-in.visible {
  animation: fadeInUp 0.52s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ── Responsive tweaks ────────────────────────────────── */
@media (max-width: 390px) {
  .name { font-size: 22px; }
  .link-title { font-size: 13px; }
}

@media (hover: hover) and (pointer: fine) {
  .link-card:hover,
  .accordion:hover,
  .music-card:hover,
  .book-card:not(.coming-soon):hover,
  .shop-card:hover,
  .contact-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.18);
  }

  .shop-card:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.1);
  }

  .huly-cta:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 18px 42px rgba(255,118,31,0.22);
  }

  .huly-cta:hover::before {
    opacity: 1;
  }

  .huly-cta:hover::after {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .hero-deco,
  .cta-btn,
  .call-orbit,
  .call-orbit::before,
  .call-orbit::after,
  .call-orbit-core,
  .call-orbit-core svg {
    animation: none;
  }
}
