@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0a0a0f;
  --surface: #141420;
  --accent-pink: #ff2d7b;
  --accent-blue: #00d4ff;
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0b0;
  --glow-pink: 0 0 7px #fff, 0 0 10px #ff2d7b, 0 0 21px #ff2d7b, 0 0 42px #ff2d7b, 0 0 82px #ff2d7b;
  --glow-blue: 0 0 7px #fff, 0 0 10px #00d4ff, 0 0 21px #00d4ff, 0 0 42px #00d4ff, 0 0 82px #00d4ff;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 600px 400px at 80% 5%, #ff2d7b12 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 15% 60%, #00d4ff0a 0%, transparent 70%),
    radial-gradient(ellipse at 50% 50%, transparent 40%, #000000aa 100%);
  background-attachment: fixed;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p { max-width: 65ch; }

a {
  color: var(--accent-pink);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

.neon-text {
  color: #fff;
  text-shadow: 0 0 4px #fff, 0 0 11px #ff2d7b, 0 0 22px #ff2d7b88, 0 0 40px #ff2d7b44;
}

.neon-text--blue {
  color: #fff;
  text-shadow: 0 0 4px #fff, 0 0 11px #00d4ff, 0 0 22px #00d4ff88, 0 0 40px #00d4ff44;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  transition: background-color 0.3s ease;
}

.nav--scrolled {
  background-color: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #ff2d7b22;
  box-shadow: 0 1px 20px #ff2d7b11, 0 1px 40px #0006;
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img { height: 40px; width: auto; }

.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__links a {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--accent-pink);
  text-decoration: none;
}

.nav__toggle { display: none; }

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }

  .nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: rgba(10, 10, 15, 0.98);
    padding: 1rem 2rem;
    gap: 1rem;
  }

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

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 2rem;
  position: relative;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 700px;
}

.hero__logo {
  width: min(400px, 80vw);
  height: auto;
  filter: drop-shadow(0 0 5px #fff8) drop-shadow(0 0 15px #ff2d7b) drop-shadow(0 0 40px #ff2d7b) drop-shadow(0 0 80px #ff2d7baa);
}

.hero__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  text-align: center;
}

.hero__channels {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero__channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--accent-blue);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 0 8px #00d4ff33;
}

.hero__channel-btn:hover {
  background-color: rgba(0, 212, 255, 0.15);
  box-shadow: var(--glow-blue);
  transform: scale(1.05);
  text-decoration: none;
}

@media (max-width: 500px) {
  .hero__channels { flex-direction: column; align-items: center; }
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: #d41e5f;
  color: #fff;
  box-shadow: 0 0 7px #ff2d7b, 0 0 15px #ff2d7b88, 0 0 30px #ff2d7b44;
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #ffffff33, transparent);
  animation: btn-shine 4s ease-in-out infinite;
}

@keyframes btn-shine {
  0%   { left: -100%; }
  50%  { left: 150%; }
  100% { left: 150%; }
}

.btn--primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #ff2d7b, 0 0 25px #ff2d7b, 0 0 50px #ff2d7baa, 0 0 80px #ff2d7b66;
  text-decoration: none;
  animation: btn-glow-pulse 1.5s ease-in-out infinite;
}

@keyframes neon-pulse {
  from { filter: drop-shadow(0 0 3px #fff6) drop-shadow(0 0 10px #ff2d7bcc) drop-shadow(0 0 30px #ff2d7b88) drop-shadow(0 0 60px #ff2d7b44); }
  to   { filter: drop-shadow(0 0 8px #fffa) drop-shadow(0 0 20px #ff2d7b) drop-shadow(0 0 50px #ff2d7bcc) drop-shadow(0 0 100px #ff2d7b88); }
}

/* ============================================
   1. PAGE LOAD SEQUENCE — staggered entrance
   ============================================ */

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* All hero children start hidden */
.hero__logo,
.hero__title,
.hero__subtitle,
.hero__cta,
.hero__channels {
  opacity: 0;
  animation: hero-enter 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__logo      { animation: hero-enter 0.5s 0.05s cubic-bezier(0.22, 1, 0.36, 1) forwards, neon-pulse 3s 0.55s ease-in-out infinite alternate; }
.hero__title     { animation-delay: 0.25s; }
.hero__subtitle  { animation-delay: 0.45s; }
.hero__cta       { animation-delay: 0.65s; }
.hero__channels  { animation-delay: 0.85s; }

/* Nav slides down separately */
@keyframes nav-enter {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav {
  animation: nav-enter 0.4s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Scroll indicator fades in last — structural + entrance combined */

/* ============================================
   2. SCROLL REVEAL — improved with variety
   ============================================ */

/* Override the basic reveal with richer transitions */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger cards within grids */
.servicios__grid [data-reveal]:nth-child(1) { transition-delay: 0s; }
.servicios__grid [data-reveal]:nth-child(2) { transition-delay: 0.12s; }
.servicios__grid [data-reveal]:nth-child(3) { transition-delay: 0.24s; }
.servicios__grid [data-reveal]:nth-child(4) { transition-delay: 0.36s; }

/* Gallery items stagger in columns of 3 */
.galeria__grid [data-reveal]:nth-child(3n+1) { transition-delay: 0s; }
.galeria__grid [data-reveal]:nth-child(3n+2) { transition-delay: 0.1s; }
.galeria__grid [data-reveal]:nth-child(3n)   { transition-delay: 0.2s; }

/* Steps slide in from alternating sides */
.steps [data-reveal]:nth-child(1) {
  transform: translateX(-40px) scale(0.96);
  transition-delay: 0s;
}
.steps [data-reveal]:nth-child(2) {
  transform: translateY(40px) scale(0.96);
  transition-delay: 0.15s;
}
.steps [data-reveal]:nth-child(3) {
  transform: translateX(40px) scale(0.96);
  transition-delay: 0.3s;
}
.steps [data-reveal].revealed:nth-child(1),
.steps [data-reveal].revealed:nth-child(2),
.steps [data-reveal].revealed:nth-child(3) {
  transform: translateX(0) translateY(0) scale(1);
}

/* Section titles get a wipe-in feel */
.section__title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.section__title.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   3. MICRO-INTERACTIONS — hover states
   ============================================ */

/* Cards — lift + glow + icon bounce */
.card {
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover {
  transform: translateY(-6px);
}

.card__icon {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover .card__icon {
  transform: scale(1.2) rotate(-5deg);
}

/* CTA button — neon flicker on hover */
@keyframes btn-glow-pulse {
  0%, 100% { box-shadow: 0 0 10px #ff2d7b, 0 0 25px #ff2d7b, 0 0 50px #ff2d7baa; }
  50%      { box-shadow: 0 0 15px #ff2d7b, 0 0 40px #ff2d7b, 0 0 80px #ff2d7baa, 0 0 120px #ff2d7b44; }
}

/* Channel buttons — slide icon + glow expand */
.hero__channel-btn svg {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__channel-btn:hover svg {
  transform: scale(1.15) rotate(-8deg);
}

/* Gallery items — zoom + neon border */
.galeria__item {
  transition: box-shadow 0.3s, transform 0.3s;
}

.galeria__item:hover {
  box-shadow: 0 0 15px #ff2d7b88, 0 0 40px #ff2d7b33;
  transform: translateY(-4px);
}

.galeria__item:hover img {
  transform: scale(1.08);
}

/* Step numbers glow on hover */
.step {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.step:hover {
  transform: translateY(-4px);
}

.step:hover .step__number {
  text-shadow: 0 0 15px #ff2d7b, 0 0 50px #ff2d7baa, 0 0 80px #ff2d7b55;
}

/* Footer social icons */
.footer__socials a {
  transition: color 0.2s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer__socials a:hover {
  transform: scale(1.25) rotate(-5deg);
}

/* WhatsApp FAB breathing */
@keyframes fab-breathe {
  0%, 100% { box-shadow: 0 0 10px #25d36666, 0 0 30px #25d36633; }
  50%      { box-shadow: 0 0 18px #25d366, 0 0 50px #25d36666; }
}

/* fab-breathe applied in main .whatsapp-fab rule below */

/* ============================================
   4. AMBIENT ANIMATIONS — living background
   ============================================ */

/* Slow-moving gradient orbs behind hero */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.15;
  filter: blur(100px);
  z-index: -1;
}

.hero::before {
  width: 500px;
  height: 500px;
  background: var(--accent-pink);
  top: 10%;
  left: -10%;
  animation: float-orb-1 12s ease-in-out infinite alternate;
}

.hero::after {
  width: 400px;
  height: 400px;
  background: var(--accent-blue);
  bottom: 10%;
  right: -10%;
  animation: float-orb-2 15s ease-in-out infinite alternate;
}

@keyframes float-orb-1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.15); }
}

@keyframes float-orb-2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-50px, -30px) scale(1.1); }
}

/* Subtle glow line under section titles */
.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  margin: 1rem auto 0;
  border-radius: 2px;
  animation: title-glow 3s ease-in-out infinite alternate;
}

.neon-text::after {
  background: var(--accent-pink);
  box-shadow: 0 0 8px var(--accent-pink), 0 0 20px #ff2d7b66;
}

.neon-text--blue::after {
  background: var(--accent-blue);
  box-shadow: 0 0 8px var(--accent-blue), 0 0 20px #00d4ff66;
}

@keyframes title-glow {
  from { width: 60px; opacity: 0.6; }
  to   { width: 90px; opacity: 1; }
}

/* Pulsing neon border on the step numbers */
.step__number {
  transition: text-shadow 0.3s;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fade-in 0.6s 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero__scroll-indicator span {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: rotate(45deg);
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
  50%      { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

.section {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 40vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-pink), transparent);
  box-shadow: 0 0 8px rgba(255, 45, 123, 0.4);
}

.section__title {
  text-align: center;
  margin-bottom: 4rem;
}

.servicios__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 600px) {
  .servicios__grid { grid-template-columns: 1fr; }
}

.card {
  background: linear-gradient(135deg, #141420 0%, #1a1a2e 50%, #141420 100%);
  border: 1px solid #ffffff0a;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff2d7b44, #ff2d7b88, #ff2d7b44, transparent);
  border-radius: 1px;
  transition: opacity 0.4s;
  opacity: 0.5;
}

.card:hover::before {
  opacity: 1;
  box-shadow: 0 0 10px #ff2d7b66;
}

.card:hover {
  border-color: #ff2d7b66;
  box-shadow: 0 0 20px rgba(255, 45, 123, 0.15), 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 0 40px #ff2d7b08;
}

.card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card__title {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.card__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.galeria__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .galeria__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .galeria__grid { grid-template-columns: 1fr; }
}

.galeria__item {
  overflow: hidden;
  border-radius: 8px;
  display: block;
  border: 1px solid #ff2d7b22;
}

.galeria__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  display: block;
  filter: brightness(1.05) contrast(1.1) saturate(1.15);
}

.galeria__item:hover img {
  filter: brightness(1.15) contrast(1.15) saturate(1.3);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] { display: none; }

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid #ff2d7b44;
  box-shadow: 0 0 20px #ff2d7b33, 0 0 60px #ff2d7b1a, 0 0 100px #ff2d7b0d;
  filter: brightness(1.05) contrast(1.05);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 700px) {
  .steps { grid-template-columns: 1fr; gap: 3rem; }
}

.step__number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  border: 2px solid #ff2d7b;
  box-shadow: 0 0 10px #ff2d7b88, 0 0 30px #ff2d7b44, inset 0 0 15px #ff2d7b33;
  color: #fff;
  text-shadow: 0 0 7px #fff, 0 0 20px #ff2d7b, 0 0 40px #ff2d7b;
}

.step__title {
  margin-bottom: 0.5rem;
}

.step__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0 auto;
}

.sobre-nosotros__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.sobre-nosotros__content p {
  margin: 0 auto 1.5rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.sobre-nosotros__content strong {
  color: var(--text-primary);
}

.footer {
  text-align: center;
  padding: 4rem 2rem;
  border-top: none;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #00d4ff66 30%, #00d4ff 50%, #00d4ff66 70%, transparent 100%);
  box-shadow: 0 0 10px #00d4ff66, 0 0 20px #00d4ff33;
}

.footer__content {
  max-width: 600px;
  margin: 0 auto;
}

.footer__title { margin-bottom: 1.5rem; }

.footer__cta { margin-bottom: 2rem; }

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer__socials a {
  color: var(--text-secondary);
}

.footer__socials a:hover {
  color: var(--accent-pink);
}

.footer__location {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer__copy {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.whatsapp-fab {
  position: fixed;
  bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  right: 2rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px #25d36666, 0 0 30px #25d36633;
  animation: fab-breathe 3s ease-in-out infinite;
  transition: transform 0.2s;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
}

/* Focus indicators */
:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
}

.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

/* Skip navigation link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.5rem;
  background: var(--accent-blue);
  color: #000;
  font-weight: 700;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* Footer phone */
.footer__phone {
  margin-bottom: 1.5rem;
}
.footer__phone a {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
}
.footer__phone a:hover {
  color: var(--accent-pink);
  text-decoration: none;
}

/* Noscript fallback for data-reveal */
@media (scripting: none) {
  [data-reveal], .section__title { opacity: 1 !important; transform: none !important; }
}
