@font-face {
  font-family: "Impact Custom";
  src: url("Fonts/IMPACT.svg#Impact") format("svg");
  font-weight: 400;
  font-style: normal;
}

/* Space Grotesk variable (WOFF2 desde subset latin / latin-ext; el .svg del folder no es fuente usable en navegadores) */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src:
    url("Fonts/SpaceGrotesk-Variable-latin.woff2") format("woff2"),
    url("Fonts/SPACEGROTESK-VARIABLEFONT_WGHT.woff") format("woff");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("Fonts/SpaceGrotesk-Variable-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --black: #000;
  --white: #fff;
  --pink: #ff0f62;
  --pink-bright: #ff278c;
  --yellow: #facc15;
  --cyan: #00f2ff;
  --cyan-m: #00c2cc;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
  background: var(--black);
}

body {
  min-height: 100vh;
  color: var(--white);
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  top: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero::after {
  bottom: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

/* Fondo: imagen exportada (reemplaza la “cruz” rosa simulada con CSS) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.topbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 54px;
}

.logo-wrap {
  display: inline-flex;
}

.logo {
  display: block;
  width: 104px;
  height: auto;
}

.nav-desktop {
  display: inline-flex;
  align-items: center;
  gap: 36px;
}

.nav-desktop a {
  font-family: "Space Grotesk", system-ui, sans-serif;
  text-decoration: none;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  transform: translateY(0) scale(1);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.45, 0.64, 1),
    text-shadow 0.3s ease,
    filter 0.3s ease,
    box-shadow 0.3s ease,
    color 0.25s ease;
}

@media (hover: hover) {
  .nav-desktop a:hover {
    transform: translateY(-5px) scale(1.09);
    text-shadow:
      0 0 12px rgba(255, 255, 255, 0.65),
      0 0 28px rgba(255, 15, 98, 0.45),
      0 2px 4px rgba(0, 0, 0, 0.35);
    filter: brightness(1.15);
  }

  .nav-desktop .contact-pill:hover {
    box-shadow:
      0 0 20px rgba(255, 255, 255, 0.4),
      0 10px 32px -4px rgba(255, 15, 98, 0.65);
    filter: brightness(1.18);
  }

  .nav-desktop a:active {
    transform: translateY(-2px) scale(1.04);
    transition-duration: 0.12s;
  }
}

.nav-desktop a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-desktop .contact-pill:focus-visible {
  outline-offset: 3px;
  border-radius: 16px;
}

.contact-pill {
  background: var(--pink);
  padding: 6px 14px;
  border-radius: 16px;
}

.menu-mobile {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.menu-mobile img {
  width: 32px;
  height: 32px;
}

.nav-mobile {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1360px, 100%);
  margin: 10px auto 0;
  padding: 30px 30px 80px;
  display: grid;
  grid-template-columns: 53% 47%;
  align-items: center;
}

.character-col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Entrada img-header: disolución + zoom suave (sin pasos, más rápida y fluida) */
@keyframes characterRobotFade {
  0% {
    opacity: 0;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.2)) blur(8px);
  }
  65% {
    opacity: 1;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.25)) blur(0);
  }
  100% {
    opacity: 1;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.25));
  }
}

@keyframes characterRobotScale {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.character {
  width: min(100%, 590px);
  height: auto;
  transform-origin: center center;
  backface-visibility: hidden;
  opacity: 0;
  --character-ease: cubic-bezier(0.22, 1, 0.36, 1);
  animation:
    characterRobotFade 1.15s var(--character-ease) forwards,
    characterRobotScale 1.15s var(--character-ease) forwards;
}

.content-col {
  max-width: 450px;
  margin-left: 14px;
  margin-top: -34px;
  display: flex;
  flex-direction: column;
}

@keyframes h1Typing {
  from {
    width: 0;
  }
  to {
    width: 10ch;
  }
}

@keyframes h1CaretBlink {
  0%,
  45% {
    border-right-color: rgba(250, 204, 21, 0.95);
  }
  46%,
  100% {
    border-right-color: transparent;
  }
}

@keyframes h1CaretHide {
  to {
    border-right-color: transparent;
  }
}

h1 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(56px, 5.8vw, 86px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  font-family: "Impact Custom", Impact, sans-serif;
  font-weight: 400;
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid rgba(250, 204, 21, 0.95);
  animation:
    h1Typing 1.7s steps(10, end) 0.15s forwards,
    h1CaretBlink 0.75s step-end 0.15s 5,
    h1CaretHide 0s linear 1.95s forwards;
}

h2 {
  margin: 12px 0 0;
  color: var(--pink-bright);
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1;
  font-family: "Impact Custom", Impact, sans-serif;
  font-weight: 400;
}

h2 span {
  color: var(--white);
}

p {
  margin: 18px 0 0;
  max-width: 405px;
  font-size: clamp(16px, 1.38vw, 20px);
  line-height: 1.3;
  border-left: 4px solid #ff3779;
  padding-left: 14px;
  text-shadow:
    0 3px 12px rgba(0, 0, 0, 0.45),
    0 1px 2px rgba(0, 0, 0, 0.35);
}

.cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: 180px;
  height: 41px;
  margin-top: 86px;
  text-decoration: none;
  border-radius: 17px;
  background: var(--yellow);
  color: #000;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 4px 21px 0 #ff0f62;
  cursor: pointer;
  transform: translateY(0) scale(1);
  transition:
    transform 0.32s cubic-bezier(0.34, 1.45, 0.64, 1),
    box-shadow 0.32s ease;
}

@media (hover: hover) {
  .cta:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow:
      0 14px 36px -6px rgba(255, 15, 98, 0.65),
      0 8px 24px -4px rgba(255, 15, 98, 0.45);
  }

  .cta:active {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 18px -2px rgba(255, 15, 98, 0.5);
    transition-duration: 0.12s;
  }
}

.cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.social-tabs {
  position: fixed;
  right: 0;
  bottom: 70px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-tabs a {
  width: 120px;
  height: 36px;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8px;
  text-decoration: none;
  box-shadow: -3px 4px 12px rgba(0, 0, 0, 0.3);
}

.social-tabs img {
  width: 27px;
  height: 27px;
}

/* ——— Projects (SECTION1) ——— */
.projects {
  position: relative;
  isolation: isolate;
  background: #000;
  padding: 72px clamp(20px, 4vw, 48px) 110px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.projects-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.projects-bg__frame {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  max-width: none;
  margin: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.projects-bg__photo {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  aspect-ratio: 1440 / 880;
  object-fit: contain;
  object-position: center;
}

.projects-bg__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 72% 48% at 42% 44%, rgba(130, 45, 190, 0.55) 0%, transparent 64%),
    radial-gradient(ellipse 58% 42% at 62% 58%, rgba(190, 35, 120, 0.42) 0%, transparent 58%),
    radial-gradient(ellipse 50% 35% at 50% 70%, rgba(60, 20, 90, 0.3) 0%, transparent 60%);
  opacity: 0.55;
  mix-blend-mode: multiply;
}

.projects-inner {
  position: relative;
  z-index: 1;
  max-width: min(1280px, 100%);
  margin: 0 auto;
}

.projects-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
}

.projects-titles {
  min-width: 0;
}

.projects-title {
  margin: 0;
  font-family: "Impact Custom", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 85.5px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--yellow);
  text-align: left;
}

.projects-sub {
  margin: 12px 0 0;
  max-width: 544px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: var(--cyan);
}

.projects-see-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  padding: 0 18px;
  border-radius: 17.163px;
  background: var(--yellow);
  color: #000;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: 17.546px;
  text-decoration: none;
  box-shadow: 0 3.814px 19.928px 0 #ff0f62;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transform: translateY(0) scale(1);
  transition:
    transform 0.32s cubic-bezier(0.34, 1.45, 0.64, 1),
    box-shadow 0.32s ease;
}

.projects-see-more:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.projects-see-more--mobile {
  display: none;
}

.projects-carousel {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-inline: clamp(52px, 6vw, 84px);
  margin: 0 auto 52px;
  max-width: 1240px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 40;
  flex: 0 0 auto;
  width: 47px;
  height: 41px;
  border: 0;
  border-radius: 17.163px;
  background: var(--yellow);
  box-shadow: 0 3.814px 19.928px 0 #ff0f62;
  cursor: pointer;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transform: translateY(-50%) scale(1);
  transition:
    transform 0.32s cubic-bezier(0.34, 1.45, 0.64, 1),
    box-shadow 0.32s ease;
}

.carousel-btn--prev {
  left: clamp(0px, 1.2vw, 12px);
}

.carousel-btn--next {
  right: clamp(0px, 1.2vw, 12px);
}

@media (hover: hover) {
  .carousel-btn:hover {
    transform: translateY(calc(-50% - 6px)) scale(1.08);
    box-shadow:
      0 14px 36px -6px rgba(255, 15, 98, 0.65),
      0 8px 24px -4px rgba(255, 15, 98, 0.45);
  }

  .carousel-btn:active {
    transform: translateY(calc(-50% - 2px)) scale(1.03);
    box-shadow: 0 6px 18px -2px rgba(255, 15, 98, 0.5);
    transition-duration: 0.12s;
  }

  .projects-see-more:hover {
    transform: translateY(-6px) scale(1.06);
    box-shadow:
      0 14px 36px -6px rgba(255, 15, 98, 0.65),
      0 8px 24px -4px rgba(255, 15, 98, 0.45);
  }

  .projects-see-more:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 18px -2px rgba(255, 15, 98, 0.5);
    transition-duration: 0.12s;
  }

  .section2-btn:hover {
    transform: translateY(-6px) scale(1.06);
    box-shadow:
      0 14px 36px -6px rgba(255, 15, 98, 0.65),
      0 8px 24px -4px rgba(255, 15, 98, 0.45);
  }

  .section2-btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 18px -2px rgba(255, 15, 98, 0.5);
    transition-duration: 0.12s;
  }
}

.carousel-btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.carousel-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-viewport {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-track {
  position: relative;
  width: 100%;
  max-width: 1180px;
  height: clamp(466px, 54vh, 560px);
  min-height: 466px;
  margin: 0 auto;
  perspective: 1400px;
}

.carousel-track.is-shifting-prev {
  animation: carouselNudgePrev 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-track.is-shifting-next {
  animation: carouselNudgeNext 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes carouselNudgePrev {
  0% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(14px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes carouselNudgeNext {
  0% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(-14px);
  }
  100% {
    transform: translateX(0);
  }
}

.carousel-card {
  position: absolute;
  left: 50%;
  top: 50%;
  overflow: visible;
  background: transparent;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-card__media {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}

.carousel-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 0.35s ease;
}

.carousel-card.is-anim-prev .carousel-card__media img {
  animation: cardSlidePrev 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-card.is-anim-next .carousel-card__media img {
  animation: cardSlideNext 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-card[data-carousel-slot="-2"].is-anim-prev .carousel-card__media img,
.carousel-card[data-carousel-slot="2"].is-anim-prev .carousel-card__media img,
.carousel-card[data-carousel-slot="-2"].is-anim-next .carousel-card__media img,
.carousel-card[data-carousel-slot="2"].is-anim-next .carousel-card__media img {
  animation-duration: 300ms;
}

@keyframes cardSlidePrev {
  0% {
    transform: translateX(0) scale(1);
  }
  45% {
    transform: translateX(10px) scale(1.02);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}

@keyframes cardSlideNext {
  0% {
    transform: translateX(0) scale(1);
  }
  45% {
    transform: translateX(-10px) scale(1.02);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}

.carousel-card[data-carousel-slot="-2"] .carousel-card__media img,
.carousel-card[data-carousel-slot="2"] .carousel-card__media img {
  filter: blur(5px);
}

.carousel-card[data-carousel-slot="-1"] .carousel-card__media img,
.carousel-card[data-carousel-slot="1"] .carousel-card__media img {
  filter: blur(1.25px);
}

.carousel-card[data-carousel-slot="0"] .carousel-card__media img {
  filter: none;
}

.carousel-card[data-carousel-slot="-2"] {
  width: 224px;
  height: 339px;
  z-index: 1;
  transform: translate(-50%, -50%) translateX(clamp(-300px, -24vw, -228px));
}

.carousel-card[data-carousel-slot="-1"] {
  width: 276px;
  height: 418px;
  z-index: 2;
  transform: translate(-50%, -50%) translateX(clamp(-188px, -15vw, -134px));
}

.carousel-card[data-carousel-slot="0"] {
  width: 307px;
  height: 466px;
  z-index: 5;
  transform: translate(-50%, -50%) translateX(0);
}

.carousel-card[data-carousel-slot="1"] {
  width: 276px;
  height: 418px;
  z-index: 2;
  transform: translate(-50%, -50%) translateX(clamp(134px, 15vw, 188px));
}

.carousel-card[data-carousel-slot="2"] {
  width: 224px;
  height: 339px;
  z-index: 1;
  transform: translate(-50%, -50%) translateX(clamp(228px, 24vw, 300px));
}

.projects-body {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding-inline: clamp(12px, 3vw, 24px);
}

.projects-desc {
  margin: 0 auto;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: clamp(1.3, 1.35, 1.4);
  color: var(--white);
  text-align: center;
  width: min(100%, 440px);
  max-width: 440px;
}

/* ——— Section2 (Best Work) ——— */
.section2 {
  position: relative;
  background: #000;
  overflow: hidden;
  padding: 0 0 72px;
}

.section2-divider {
  position: relative;
  height: clamp(68px, 8vw, 104px);
  margin: clamp(10px, 1.6vw, 18px) 0 clamp(24px, 3.6vw, 44px);
  overflow: visible;
}

.section2-divider__band {
  position: absolute;
  left: 0;
  top: clamp(10px, 1.8vw, 18px);
  width: 106vw;
  height: clamp(28px, 3.6vw, 46px);
  background: var(--pink);
  transform: rotate(2.18deg);
  transform-origin: left top;
}

.section2-divider__ticker {
  position: absolute;
  left: 0;
  top: clamp(10px, 1.8vw, 18px);
  width: 106vw;
  height: clamp(28px, 3.6vw, 46px);
  overflow: hidden;
  transform: rotate(2.18deg);
  transform-origin: left top;
}

.section2-divider__track {
  display: inline-flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 42px);
  margin: 0;
  padding-left: 0;
  min-width: max-content;
  height: 100%;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(9.155px, 1.25vw, 20px);
  line-height: 1;
  color: #000;
  white-space: nowrap;
  animation: section2Ticker 16s linear infinite;
}

.section2-divider__track span {
  display: inline-block;
  padding-right: clamp(20px, 2.8vw, 42px);
}

@keyframes section2Ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 21px));
  }
}

.section2-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(420px, 620px) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

.section2-media {
  --video-left: 17.6%;
  --video-top: 23.2%;
  --video-width: 58.8%;
  position: relative;
  width: min(780px, 100%);
  aspect-ratio: 1013 / 880;
  margin: 0 auto;
}

.section2-video {
  position: absolute;
  width: var(--video-width);
  aspect-ratio: 614 / 417;
  height: auto;
  left: var(--video-left);
  top: var(--video-top);
  object-fit: cover;
  border-radius: 18px;
  z-index: 1;
}

.section2-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  transform: translate(5.6%, -30px);
}

.section2-copy {
  justify-self: end;
  width: min(600px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.section2 p {
  position: static;
  padding-left: 0;
  border-left: 0;
  max-width: none;
  width: auto;
  margin-left: 0;
  margin-right: 0;
  text-shadow: none;
  filter: none;
}

.section2-title {
  margin: 0;
  font-family: "Impact Custom", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(54px, 6vw, 85.5px);
  line-height: 0.95;
  color: var(--yellow);
}

@media (min-width: 701px) {
  .section2-title {
    white-space: nowrap;
  }
}

.section2-meta {
  margin: 16px 0 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.4vw, 20px);
  line-height: 1.2;
  color: var(--cyan);
}

.section2-subtitle {
  margin: 30px 0 0;
  font-family: "Impact Custom", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 42.75px);
  line-height: 1;
  color: var(--white);
}

.section2-subtitle em {
  font-style: normal;
  color: var(--pink-bright);
}

.section2-desc-wrap {
  position: relative;
  margin-top: 20px;
  padding-right: 14px;
}

.section2-desc-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  width: 3px;
  height: calc(100% - 8px);
  background: #ff3779;
}

.section2-desc {
  margin: 0;
  max-width: 392px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.4vw, 20px);
  line-height: 1.35;
  color: var(--white);
}

.section2-btn {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(132px, 14vw, 180px);
  height: clamp(32px, 3.2vw, 41px);
  border-radius: 17.163px;
  background: var(--yellow);
  color: #000;
  text-decoration: none;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 1.35vw, 17.546px);
  box-shadow: 0 3.814px 19.928px 0 #ff0f62;
  cursor: pointer;
  transform: translateY(0) scale(1);
  transition:
    transform 0.32s cubic-bezier(0.34, 1.45, 0.64, 1),
    box-shadow 0.32s ease;
}

@media (max-width: 1100px) {
  .section2-inner {
    grid-template-columns: 1fr;
    gap: clamp(18px, 3.2vw, 28px);
  }

  .section2-copy {
    justify-self: center;
    align-items: center;
    text-align: center;
    width: min(620px, 100%);
  }

  .section2-desc-wrap {
    width: min(392px, 88vw);
    max-width: 392px;
    padding-right: 10px;
  }

  .section2-desc {
    max-width: 100%;
    width: 100%;
  }
}

/* —— About (SECTION 3) —— */
.about {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding-bottom: clamp(48px, 7vw, 88px);
}

.about-top {
  position: relative;
  height: clamp(72px, 10vw, 120px);
  margin-bottom: clamp(8px, 1.5vw, 16px);
  overflow: hidden;
}

.about-divider {
  position: absolute;
  left: 50%;
  top: -55%;
  width: min(1650px, 130vw);
  max-width: none;
  height: auto;
  transform: translateX(-50%) rotate(-4.89deg);
  pointer-events: none;
}

.about-top__glow {
  position: absolute;
  left: 50%;
  top: -20px;
  width: min(2140px, 160vw);
  height: 86px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255, 15, 98, 0.35) 0%, transparent 72%);
  filter: blur(24.8px);
  pointer-events: none;
}

.about-inner {
  position: relative;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(12px, 2vw, 28px) clamp(16px, 4vw, 52px) 0;
  min-height: clamp(520px, 62vw, 720px);
}

.about-face {
  position: absolute;
  width: clamp(140px, 18.75vw, 270px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}

.about-face--left {
  left: clamp(4px, 6.5vw, 93px);
}

.about-face--right {
  right: clamp(4px, 5vw, 88px);
}

.about-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  margin: 0;
  font-family: "Impact Custom", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(54px, 6vw, 85.5px);
  line-height: 0.95;
  color: var(--yellow);
}

.about-subtitle {
  margin: clamp(18px, 2.4vw, 30px) 0 0;
  font-family: "Impact Custom", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 42.75px);
  line-height: 1;
  color: var(--white);
}

.about-subtitle em {
  font-style: normal;
  color: var(--pink-bright);
}

.about-title,
.about-subtitle {
  width: 100%;
  text-align: center;
}

.about-body {
  max-width: 558px;
  width: 100%;
  margin: clamp(20px, 2.8vw, 32px) auto 0;
  padding: 0;
}

.about-body::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin-bottom: clamp(18px, 2.4vw, 28px);
  background: #ff3779;
}

.about-desc {
  width: 100%;
}

.about p {
  position: static;
  margin: 0 0 1.1em;
  max-width: none;
  width: 100%;
  padding-left: 0;
  border-left: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.4vw, 20px);
  line-height: 1.35;
  color: var(--white);
  text-align: center;
  text-shadow: none;
  filter: none;
}

.about p:last-child {
  margin-bottom: 0;
}

.about-characters {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 44px);
  width: clamp(132px, 14vw, 180px);
  height: clamp(32px, 3.2vw, 41px);
  border-radius: 17.163px;
  background: var(--yellow);
  color: #000;
  text-decoration: none;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 1.35vw, 17.546px);
  box-shadow: 0 3.814px 19.928px 0 #ff0f62;
  cursor: pointer;
  transform: translateY(0) scale(1);
  transition:
    transform 0.32s cubic-bezier(0.34, 1.45, 0.64, 1),
    box-shadow 0.32s ease;
}

/* —— Contact (SECTION 4) —— */
.contact {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 8vw, 100px);
}

.contact-deco {
  position: absolute;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}

.contact-deco--left {
  left: 0;
  top: clamp(40px, 8vw, 109px);
  width: min(393px, 34vw);
}

.contact-deco--right {
  right: 0;
  top: clamp(0px, 1vw, 7px);
  width: min(424px, 36vw);
}

.contact-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(200px, 17vw, 240px) clamp(16px, 4vw, 52px) 0;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 523px);
  grid-template-areas:
    "head head"
    "copy visual";
  align-items: start;
  gap: clamp(24px, 4vw, 48px) clamp(24px, 4vw, 48px);
}

.contact-head {
  grid-area: head;
  width: 100%;
  text-align: center;
}

.contact-title {
  margin: 0;
  font-family: "Impact Custom", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(54px, 6vw, 85.5px);
  line-height: 0.95;
  color: var(--yellow);
  text-align: center;
}

.contact-subtitle {
  margin: clamp(16px, 2vw, 28px) 0 0;
  font-family: "Impact Custom", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 42.75px);
  line-height: 1;
  color: var(--white);
  text-align: center;
}

.contact-subtitle em {
  font-style: normal;
  color: var(--pink-bright);
}

.contact-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 480px;
}

.contact-body {
  margin-top: clamp(20px, 3vw, 36px);
  padding: 0;
}

.contact-intro {
  margin: 0;
  max-width: 414px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.4vw, 20px);
  line-height: 1.35;
  color: var(--white);
}

.contact-list {
  margin: clamp(24px, 3vw, 40px) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 22px);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 14px);
  color: var(--white);
  text-decoration: none;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.4vw, 20px);
  line-height: 1.2;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-link:hover {
  color: var(--cyan);
}

.contact-link__icon {
  display: inline-flex;
  flex-shrink: 0;
  width: clamp(26px, 2.2vw, 32px);
  height: clamp(26px, 2.2vw, 32px);
}

.contact-link__icon svg {
  width: 100%;
  height: 100%;
}

.contact-btn {
  margin-top: clamp(24px, 3vw, 36px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(132px, 14vw, 180px);
  height: clamp(32px, 3.2vw, 41px);
  border-radius: 17.163px;
  background: var(--yellow);
  color: #000;
  text-decoration: none;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 1.35vw, 17.546px);
  box-shadow: 0 3.814px 19.928px 0 #ff0f62;
  cursor: pointer;
  transform: translateY(0) scale(1);
  transition:
    transform 0.32s cubic-bezier(0.34, 1.45, 0.64, 1),
    box-shadow 0.32s ease;
}

.contact-visual {
  grid-area: visual;
  position: relative;
  width: min(523px, 100%);
  aspect-ratio: 523 / 529;
  justify-self: end;
  margin-top: 0;
}

.contact-visual__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-visual__label {
  position: absolute;
  left: 50%;
  top: 24%;
  transform: translateX(-50%);
  margin: 0;
  font-family: "Impact Custom", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42.75px);
  line-height: 1;
  color: var(--white);
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.contact-visual__label em {
  font-style: normal;
  color: var(--pink-bright);
}

.contact-visual__qr {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: 40.7%;
  height: auto;
  border-radius: clamp(28px, 4vw, 51px);
  box-shadow: 0 4px 23.7px 18px rgba(0, 0, 0, 0.25);
}

/* —— Footer —— */
.site-footer {
  position: relative;
  background: #010101;
  overflow: hidden;
  padding: clamp(28px, 4vw, 60px) clamp(14px, 3vw, 36px) clamp(36px, 4.5vw, 72px);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 110% at 50% 130%, #ff0f62 0%, rgba(255, 15, 98, 0.65) 28%, rgba(255, 15, 98, 0.18) 55%, transparent 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(1, 1, 1, 0.4) 35%, rgba(1, 1, 1, 0.05) 70%);
  pointer-events: none;
  z-index: 0;
}

.site-footer__glow {
  display: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

.site-footer__logo {
  display: inline-flex;
}

.site-footer__logo img {
  display: block;
  width: clamp(96px, 13vw, 190px);
  height: auto;
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2.5vw, 40px);
  width: 100%;
}

.site-footer__item {
  display: inline-flex;
  justify-content: center;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1vw, 14px);
  color: var(--white);
  text-decoration: none;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(11px, 1.4vw, 20px);
  line-height: 1.2;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__link:hover {
  color: var(--cyan);
  transform: translateY(-2px);
}

.site-footer__link img {
  display: block;
  width: clamp(20px, 2.4vw, 32px);
  height: auto;
  flex-shrink: 0;
}

.site-footer__link svg {
  width: clamp(20px, 2.4vw, 32px);
  height: clamp(20px, 2.4vw, 32px);
  flex-shrink: 0;
}

.site-footer__facebook-name {
  display: inline;
}

/* Active state for the magenta CONTACT pill in nav */
.contact-pill.is-active {
  position: relative;
}

.contact-pill.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 88px;
  max-width: 100%;
  height: 2px;
  transform: translateX(-50%);
  background: #d9d9d9;
}

/* About — desktop: caras alineadas con el bloque de párrafos */
@media (min-width: 701px) {
  .about-inner {
    --about-faces-align: calc(
      clamp(54px, 6vw, 85.5px) * 0.95 + clamp(18px, 2.4vw, 30px) + clamp(30px, 3.2vw, 42.75px) +
        clamp(20px, 2.8vw, 32px) + 3px + clamp(18px, 2.4vw, 28px)
    );
    display: grid;
    grid-template-columns: minmax(140px, 270px) minmax(400px, 620px) minmax(140px, 270px);
    grid-template-areas:
      "face-left copy face-right"
      ". btn .";
    justify-content: center;
    align-items: start;
    column-gap: clamp(4px, 1.2vw, 28px);
  }

  .about-copy {
    grid-area: copy;
    max-width: none;
    width: 100%;
  }

  .about-characters {
    display: contents;
  }

  .about-face {
    position: relative;
    top: auto;
    align-self: start;
    margin-top: var(--about-faces-align);
  }

  .about-face--left {
    grid-area: face-left;
    left: auto;
    justify-self: end;
  }

  .about-face--right {
    grid-area: face-right;
    right: auto;
    justify-self: start;
  }

  .about-btn {
    grid-area: btn;
    justify-self: center;
    margin-top: clamp(28px, 4vw, 44px);
  }
}

@media (max-width: 1200px) and (min-width: 701px) {
  .about-inner {
    grid-template-columns: minmax(120px, 220px) minmax(320px, 560px) minmax(120px, 220px);
  }

  .about-face {
    width: clamp(120px, 14vw, 220px);
  }
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "copy"
      "visual";
    padding-top: clamp(168px, 22vw, 200px);
  }

  .contact-visual {
    justify-self: center;
    width: min(420px, 88vw);
  }

  .contact-copy {
    justify-self: center;
    width: min(480px, 100%);
  }
}

@media (hover: hover) {
  .about-btn:hover {
    transform: translateY(-6px) scale(1.06);
    box-shadow:
      0 14px 36px -6px rgba(255, 15, 98, 0.65),
      0 8px 24px -4px rgba(255, 15, 98, 0.45);
  }

  .about-btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 18px -2px rgba(255, 15, 98, 0.5);
    transition-duration: 0.12s;
  }

  .contact-btn:hover {
    transform: translateY(-6px) scale(1.06);
    box-shadow:
      0 14px 36px -6px rgba(255, 15, 98, 0.65),
      0 8px 24px -4px rgba(255, 15, 98, 0.45);
  }

  .contact-btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 18px -2px rgba(255, 15, 98, 0.5);
    transition-duration: 0.12s;
  }
}

@media (max-width: 700px) {
  .topbar {
    padding: 8px 20px;
  }

  .logo {
    width: 58px;
  }

  .nav-desktop {
    display: none;
  }

  .menu-mobile {
    display: inline-flex;
    position: relative;
    z-index: 7;
    cursor: pointer;
  }

  .nav-mobile {
    position: absolute;
    top: 56px;
    right: 16px;
    z-index: 6;
    min-width: 190px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
    background:
      linear-gradient(165deg, rgba(255, 15, 98, 0.16) 0%, rgba(0, 0, 0, 0.78) 42%, rgba(0, 0, 0, 0.92) 100%);
    border: 1px solid rgba(255, 15, 98, 0.45);
    backdrop-filter: blur(7px);
    box-shadow:
      0 18px 36px -14px rgba(0, 0, 0, 0.9),
      0 0 26px rgba(255, 15, 98, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-mobile.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-mobile a {
    font-family: "Space Grotesk", system-ui, sans-serif;
    text-decoration: none;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 9px 10px;
    border-radius: 10px;
    transition: transform 0.22s ease, background-color 0.22s ease, text-shadow 0.22s ease;
  }

  .nav-mobile a:hover {
    background: rgba(255, 15, 98, 0.26);
    transform: translateX(3px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.45);
  }

  .nav-mobile .contact-pill {
    background: var(--pink);
    text-align: center;
    margin-top: 2px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 0;
    padding: 12px 18px 56px;
  }

  .character-col {
    justify-content: center;
    margin-top: 2px;
  }

  .character {
    width: min(100%, 280px);
  }

  .content-col {
    max-width: 290px;
    margin: 0 auto;
    margin-top: 12px;
  }

  h1 {
    font-size: 56px;
    line-height: 0.92;
    text-shadow:
      0 0 14px rgba(250, 204, 21, 0.28),
      0 3px 10px rgba(0, 0, 0, 0.45);
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.55));
  }

  h2 {
    font-size: 28px;
    margin-top: 6px;
    text-shadow:
      0 0 12px rgba(255, 39, 140, 0.25),
      0 2px 8px rgba(0, 0, 0, 0.45);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
  }

  p {
    max-width: 186px;
    font-size: 13px;
    position: relative;
    border-left: 0;
    padding-left: 0;
    margin-top: 12px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    text-shadow:
      0 4px 14px rgba(0, 0, 0, 0.62),
      0 1px 3px rgba(0, 0, 0, 0.55);
    filter: drop-shadow(0 3px 9px rgba(0, 0, 0, 0.55));
  }

  p::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -8px;
    width: 2px;
    background: #ff3779;
    border-radius: 2px;
  }

  .cta {
    width: 93px;
    height: 29px;
    border-radius: 12px;
    font-size: 12px;
    margin-top: 38px;
    box-shadow: 0 2.7px 14px 0 #ff0f62;
  }

  .social-tabs {
    right: 0;
    bottom: 120px;
    gap: 6px;
  }

  .social-tabs a {
    width: 70px;
    height: 21px;
    padding-left: 4px;
    box-shadow: -2px 3px 8px rgba(0, 0, 0, 0.28);
  }

  .social-tabs img {
    width: 15px;
    height: 15px;
  }

  .hero-bg img {
    width: 112%;
    height: 112%;
    top: -6%;
    left: -6%;
    transform: scale(0.9);
    transform-origin: center center;
    object-position: center 15%;
  }

  .projects {
    padding: 44px 16px 64px;
  }

  .projects-bg__wash {
    opacity: 0.48;
  }

  .projects-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 22px;
  }

  .projects-title {
    text-align: center;
    font-size: clamp(34px, 10.5vw, 40px);
    text-shadow:
      0 0 14px rgba(250, 204, 21, 0.28),
      0 3px 10px rgba(0, 0, 0, 0.45);
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.55));
  }

  .projects-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(11px, 3.1vw, 13px);
    color: var(--cyan-m);
    max-width: 260px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
  }

  .projects-see-more--desktop {
    display: none;
  }

  .projects-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .projects-see-more--mobile {
    display: inline-flex;
    align-self: center;
    margin: 22px auto 0;
    height: 30px;
    padding: 0 18px;
    border-radius: 12.697px;
    font-size: 12.981px;
    box-shadow: 0 2.822px 14.743px 0 #ff0f62;
  }

  .projects-carousel {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    padding-top: 46px;
    margin-bottom: 26px;
    width: calc(100vw - 12px);
    max-width: 100vw;
  }

  .carousel-btn {
    position: absolute;
    top: 10px;
    z-index: 50;
    width: 35.851px;
    height: 31.274px;
    border-radius: 4.689px;
    box-shadow: 0 1.042px 5.445px 0 #ff0f62;
    transform: translateY(0) scale(1);
    transition:
      transform 0.22s ease,
      box-shadow 0.22s ease;
  }

  .carousel-btn__icon svg {
    width: 18px;
    height: 18px;
  }

  .carousel-btn--prev {
    left: clamp(14px, 5vw, 24px);
  }

  .carousel-btn--next {
    right: clamp(14px, 5vw, 24px);
  }

  .carousel-btn:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow:
      0 8px 20px -3px rgba(255, 15, 98, 0.55),
      0 3px 10px rgba(255, 15, 98, 0.35);
  }

  .carousel-btn:active {
    transform: translateY(-2px) scale(1.04);
    box-shadow:
      0 5px 14px -2px rgba(255, 15, 98, 0.45),
      0 2px 7px rgba(255, 15, 98, 0.3);
  }

  .carousel-viewport {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
    overflow: visible;
    padding-top: 6px;
  }

  .carousel-track {
    width: 100%;
    max-width: 360px;
    height: 400px;
    min-height: 400px;
  }

  .carousel-card[data-carousel-slot="-2"] {
    width: 138px;
    height: 214px;
    transform: translate(-50%, -50%) translateX(-140px) scale(0.84);
  }

  .carousel-card[data-carousel-slot="-1"] {
    width: 168px;
    height: 262px;
    transform: translate(-50%, -50%) translateX(-86px) scale(0.92);
  }

  .carousel-card[data-carousel-slot="0"] {
    width: 236px;
    height: 372px;
    max-height: 372px;
    transform: translate(-50%, -50%) translateX(0) scale(1);
  }

  .carousel-card[data-carousel-slot="1"] {
    width: 168px;
    height: 262px;
    transform: translate(-50%, -50%) translateX(86px) scale(0.92);
  }

  .carousel-card[data-carousel-slot="2"] {
    width: 138px;
    height: 214px;
    transform: translate(-50%, -50%) translateX(140px) scale(0.84);
  }

  .projects-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    max-width: 280px;
    width: 100%;
  }

  .projects-desc {
    text-align: center;
    font-size: clamp(11px, 3.2vw, 13px);
    line-height: 1.35;
    text-shadow:
      0 4px 14px rgba(0, 0, 0, 0.62),
      0 1px 3px rgba(0, 0, 0, 0.55);
    filter: drop-shadow(0 3px 9px rgba(0, 0, 0, 0.55));
  }

  .section2 {
    padding: 0 0 54px;
  }

  .section2-divider {
    height: 74px;
    margin: 14px 0 24px;
    overflow: visible;
  }

  .section2-divider__band {
    top: 12px;
    height: 28px;
    width: 106vw;
    left: 0;
  }

  .section2-divider__ticker {
    top: 12px;
    width: 106vw;
    height: 28px;
    left: 0;
  }

  .section2-divider__track {
    height: 28px;
    gap: 28px;
    font-size: 9.155px;
    animation-duration: 11s;
  }

  .section2-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 14px;
  }

  .section2-media {
    width: min(356px, 92vw);
    aspect-ratio: 1013 / 880;
    --video-left: 17.6%;
    --video-top: 23.2%;
    --video-width: 58.8%;
  }

  .section2-frame {
    transform: translate(5.6%, -10px);
  }

  .section2-video {
    width: var(--video-width);
    aspect-ratio: 614 / 417;
    height: auto;
    left: var(--video-left);
    top: var(--video-top);
    border-radius: 12.318px;
  }

  .section2-copy {
    justify-self: center;
    align-items: center;
    text-align: center;
    width: min(300px, 100%);
  }

  .section2 p::before {
    content: none;
  }

  .section2-title {
    font-size: 56px;
  }

  .section2-meta {
    margin-top: 8px;
    font-size: 9.261px;
  }

  .section2-subtitle {
    margin-top: 18px;
    font-size: 34px;
  }

  .section2-desc-wrap {
    margin-top: 14px;
    padding-right: 8px;
  }

  .section2-desc-wrap::after {
    width: 1.4px;
    top: 2px;
    height: calc(100% - 4px);
  }

  .section2-desc {
    max-width: 181.516px;
    font-size: 9.261px;
    line-height: 1.35;
  }

  .section2-btn {
    margin-top: 30px;
    width: 114.619px;
    height: 28.481px;
    border-radius: 11.922px;
    font-size: 12.188px;
    box-shadow: 0 2.649px 13.843px 0 #ff0f62;
  }

  .about-top {
    height: 56px;
    margin-bottom: 6px;
  }

  .about-divider {
    top: -70%;
    width: 160vw;
  }

  .about-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 0;
    padding: 8px 14px 0;
  }

  .about-copy {
    order: 1;
    max-width: 300px;
    width: 100%;
  }

  .about-characters {
    order: 2;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 2.5vw, 14px);
    margin-top: 22px;
    max-width: min(300px, 100%);
  }

  .about-face {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    width: min(76px, 22vw);
    margin: 0;
    transform: none;
  }

  .about-face--left,
  .about-face--right {
    flex: 0 0 auto;
    align-self: center;
  }

  .about-title {
    font-size: 56px;
  }

  .about-subtitle {
    margin-top: 14px;
    font-size: 34px;
  }

  .about-body {
    margin-top: 14px;
    max-width: 280px;
    padding: 0;
  }

  .about-body::before {
    height: 2px;
    margin-bottom: 14px;
  }

  .about p,
  .contact-intro {
    position: static;
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    border-left: 0;
    font-size: 9.261px;
    line-height: 1.35;
    text-shadow:
      0 4px 14px rgba(0, 0, 0, 0.62),
      0 1px 3px rgba(0, 0, 0, 0.55);
    filter: drop-shadow(0 3px 9px rgba(0, 0, 0, 0.55));
  }

  .about p::before,
  .contact p::before {
    content: none;
  }

  .about-btn {
    margin: 0;
    flex-shrink: 0;
    width: 114.619px;
    height: 28.481px;
    border-radius: 11.922px;
    font-size: 12.188px;
    box-shadow: 0 2.649px 13.843px 0 #ff0f62;
  }

  .contact {
    padding: 40px 0 52px;
  }

  .contact-deco--left {
    width: min(220px, 56vw);
    top: 72px;
  }

  .contact-deco--right {
    width: min(200px, 52vw);
    top: 0;
  }

  .contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: clamp(150px, 38vw, 185px) 14px 0;
  }

  .contact-head {
    width: min(300px, 100%);
    text-align: center;
  }

  .contact-title {
    font-size: 56px;
  }

  .contact-subtitle {
    margin-top: 12px;
    font-size: 34px;
  }

  .contact-copy {
    align-items: center;
    max-width: 280px;
    width: 100%;
  }

  .contact-body {
    margin-top: 16px;
    padding: 0;
    width: 100%;
  }

  .contact-intro {
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-list {
    margin-top: 20px;
    gap: 14px;
    width: 100%;
    align-items: flex-start;
  }

  .contact-link {
    font-size: 9.261px;
  }

  .contact-link__icon {
    width: 22px;
    height: 22px;
  }

  .contact-btn {
    margin-top: 22px;
    width: 114.619px;
    height: 28.481px;
    border-radius: 11.922px;
    font-size: 12.188px;
    box-shadow: 0 2.649px 13.843px 0 #ff0f62;
  }

  .contact-visual {
    width: min(320px, 88vw);
    margin-top: 8px;
  }

  .contact-visual__label {
    font-size: 34px;
    top: 22%;
  }

  .site-footer {
    padding: 18px 12px 28px;
  }

  .site-footer__logo img {
    width: 96px;
  }

  .site-footer__inner {
    gap: 16px;
  }

  .site-footer__links {
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
  }

  .site-footer__item {
    flex: 1 1 0;
    min-width: 0;
  }

  .site-footer__link {
    font-size: 9px;
    gap: 4px;
    justify-content: center;
    text-align: center;
  }

  .site-footer__link span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-footer__link img,
  .site-footer__link svg {
    width: 14px;
    height: 14px;
  }

  .site-footer__facebook-name {
    display: inline;
  }

  .site-footer__item--facebook .site-footer__link {
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .character {
    animation: none;
    opacity: 1;
    transform: none;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.25));
  }

  .carousel-card {
    transition: none;
  }

  .carousel-track {
    animation: none !important;
  }

  .carousel-card__media img {
    filter: none;
    animation: none !important;
  }

  .carousel-btn {
    transition: box-shadow 0.2s ease;
  }

  .carousel-btn:hover,
  .carousel-btn:active {
    transform: none;
  }

  h1 {
    width: auto;
    border-right: 0;
    animation: none;
  }

  .cta {
    transition: box-shadow 0.2s ease;
  }

  .cta:hover,
  .cta:active {
    transform: none;
  }

  .nav-desktop a {
    transition: text-shadow 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  }

  .nav-desktop a:hover,
  .nav-desktop a:active {
    transform: none;
  }

  .projects-see-more {
    transition: box-shadow 0.2s ease;
  }

  .projects-see-more:hover,
  .projects-see-more:active {
    transform: none;
  }

  .section2-btn {
    transition: box-shadow 0.2s ease;
  }

  .section2-btn:hover,
  .section2-btn:active {
    transform: none;
  }

  .about-btn {
    transition: box-shadow 0.2s ease;
  }

  .about-btn:hover,
  .about-btn:active {
    transform: none;
  }

  .contact-btn {
    transition: box-shadow 0.2s ease;
  }

  .contact-btn:hover,
  .contact-btn:active {
    transform: none;
  }
}
