.article__container {
  border: 1px solid black;
  background-color: #212529;
  -webkit-box-shadow: 5px 8px 14px 2px rgba(0, 0, 0, 0.72);
  box-shadow: 5px 8px 14px 2px rgba(0, 0, 0, 0.72);
  transition: box-shadow 200ms ease, border-color 200ms ease;
}

.info-card:hover,
.about-values__card:hover,
.project-featured:hover,
.project-card:hover {
  box-shadow: 5px 12px 22px 2px rgba(0, 0, 0, 0.8);
}

.card-title,
.card-text {
  color: #F0F1F2;
}

.button {
  background-color: rgb(163, 0, 0);
  border-color: rgb(46, 0, 0);
  color: #F0F1F2;
  font-family: "Playfair Display SC", serif;
  font-size: 1.5rem;
}
.button:hover {
  background-color: rgb(94, 0, 0);
  border-color: rgb(197, 2, 2);
}
.button:focus {
  background-color: rgb(94, 0, 0);
  border-color: rgb(197, 2, 2);
}

.button--cream,
.button--quiet,
.button--warm,
.button--signal,
.button--play,
.button--link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
  border: 0;
}
.button--cream:focus-visible,
.button--quiet:focus-visible,
.button--warm:focus-visible,
.button--signal:focus-visible,
.button--play:focus-visible,
.button--link:focus-visible {
  outline: 3px solid #f0c36a;
  outline-offset: 3px;
}
.button--cream:active,
.button--quiet:active,
.button--warm:active,
.button--signal:active,
.button--play:active,
.button--link:active {
  transform: translateY(1px);
}

.project-play {
  width: fit-content;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.button--cream {
  background-color: #f0d1bd;
  color: #36241f;
  border-radius: 999px;
}
.button--cream:hover, .button--cream:focus {
  background-color: #ffffff;
  color: #36241f;
  box-shadow: 0 8px 18px rgba(240, 209, 189, 0.25);
}

.button--quiet {
  background-color: #303438;
  color: #f0f1f2;
  border-radius: 0.35rem;
}
.button--quiet:hover, .button--quiet:focus {
  background-color: #41474c;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.button--warm {
  background-color: #b96b4c;
  color: #fff7f1;
  border-radius: 0.75rem;
  box-shadow: 0 5px 0 #70402f;
}
.button--warm:hover, .button--warm:focus {
  background-color: #d0805d;
  color: #ffffff;
  box-shadow: 0 7px 0 #70402f;
}

.button--signal {
  background-color: #d8b75a;
  color: #252522;
  border-radius: 0;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  padding-right: 1.5rem;
}
.button--signal:hover, .button--signal:focus {
  background-color: #f0c36a;
  color: #212529;
  transform: translateX(0.2rem);
}

.button--play {
  background-color: rgba(216, 183, 90, 0.14);
  color: #f0d1bd;
  border-radius: 0;
  box-shadow: inset 0 -3px 0 #d8b75a;
  text-shadow: none;
}
.button--play:hover, .button--play:focus {
  background-color: rgba(216, 183, 90, 0.26);
  color: #ffffff;
  box-shadow: inset 0 -3px 0 #f0c36a;
}

.button--link {
  background-color: transparent;
  color: #f0d1bd;
  border-radius: 0;
  position: relative;
}
.button--link::after {
  content: " ->";
  transition: transform 180ms ease;
  display: inline-block;
}
.button--link:hover, .button--link:focus {
  background-color: transparent;
  color: #ffffff;
  box-shadow: inset 0 -3px 0 #d8b75a;
}
.button--link:hover::after, .button--link:focus::after {
  transform: translateX(0.25rem);
}

.article__grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  column-gap: 1rem;
  row-gap: 2rem;
  align-items: center;
}

@media screen and (min-width: 576px) {
  .article__grid {
    column-gap: 2rem;
  }
}
.project-grid {
  grid-template-columns: minmax(120px, 1fr) minmax(0, 3fr) minmax(140px, 1fr);
  column-gap: 2rem;
  row-gap: 1rem;
}

.project-grid + .project-grid {
  margin-top: 3rem;
}

.project-grid .project-play {
  justify-self: center;
  min-width: 10rem;
  padding: 0.75rem 1rem;
  margin-right: 0.5rem;
}

@media screen and (max-width: 575px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-grid .project-play {
    justify-self: center;
    margin-right: 0;
  }
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2.5rem;
}
.hero__scenery {
  width: 100%;
  background-image: url("../img/PixelArt/objetos/FondoBIG.png");
  background-image: image-set(url("../img/PixelArt/objetos/FondoBIG.webp") type("image/webp"), url("../img/PixelArt/objetos/FondoBIG.png") type("image/png"));
  background-size: contain;
  background-repeat: repeat-x;
  height: 38vh;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.hero__scenery img {
  height: 100% !important;
  width: auto !important;
  max-width: none !important;
  display: block;
  margin-left: auto;
  margin-right: auto;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}
.hero__wrap {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.hero__content {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  padding: 1.75rem 1.5rem;
  background-color: rgba(23, 25, 26, 0.94);
  border: 1px solid rgba(240, 241, 242, 0.12);
  border-radius: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}
.hero__eyebrow {
  font-family: "Homenaje", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d8b75a;
  margin-bottom: 0.75rem;
}
.hero__title {
  font-family: "Black Ops One", cursive;
  font-size: 2.1rem;
  line-height: 1.25;
  text-shadow: 5px 6px 6px black;
  margin-bottom: 0.85rem;
}
.hero__subtitle {
  font-size: 1.2rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  color: rgba(240, 241, 242, 0.92);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}
.hero__cta {
  font-size: 1.1rem;
  padding: 0.6rem 1.4rem;
}
.hero__panel {
  background-color: #17191A;
  border: 1px solid rgba(240, 241, 242, 0.18);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 5px 5px 13px 5px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hero__panel-logo {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
@media screen and (min-width: 768px) {
  .hero {
    padding-bottom: 3.5rem;
  }
  .hero__scenery {
    height: 46vh;
  }
  .hero__content {
    margin-top: -3.5rem;
    padding: 2.25rem 2.75rem;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    text-align: left;
  }
  .hero__actions {
    justify-content: flex-start;
  }
  .hero__title {
    font-size: 2.9rem;
  }
  .hero__subtitle {
    font-size: 1.35rem;
  }
}
:root {
  --a11y-text-scale: 1;
}

html {
  font-size: calc(120% * var(--a11y-text-scale, 1));
}

.a11y-trigger {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1040;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgb(163, 0, 0);
  color: #F0F1F2;
  border: 2px solid rgb(46, 0, 0);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: background-color 180ms ease, border-color 180ms ease;
}
.a11y-trigger:hover {
  background-color: rgb(94, 0, 0);
  border-color: rgb(197, 2, 2);
}
.a11y-trigger:focus-visible {
  outline: 3px solid #f0c36a;
  outline-offset: 3px;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1040;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #212529;
  color: #F0F1F2;
  border: 2px solid rgba(240, 241, 242, 0.3);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}
.back-to-top[hidden] {
  display: none;
}
.back-to-top:hover {
  background-color: rgb(163, 0, 0);
  border-color: rgb(197, 2, 2);
}
.back-to-top:focus-visible {
  outline: 3px solid #f0c36a;
  outline-offset: 3px;
}

.a11y-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a11y-modal[hidden] {
  display: none;
}
.a11y-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.a11y-modal__panel {
  position: relative;
  background-color: #212529;
  border: 1px solid rgba(240, 241, 242, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  max-width: 24rem;
  width: calc(100% - 2rem);
  max-height: 85vh;
  overflow-y: auto;
  text-shadow: none;
}
.a11y-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.a11y-modal__title {
  font-family: "Anton", sans-serif;
  font-size: 1.3rem;
  margin: 0;
}
.a11y-modal__title:focus-visible {
  outline: none;
}
.a11y-modal__close {
  background: transparent;
  border: 0;
  color: #F0F1F2;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}
.a11y-modal__close:focus-visible {
  outline: 3px solid #f0c36a;
  outline-offset: 2px;
  border-radius: 0.25rem;
}
.a11y-modal__desc {
  font-size: 0.85rem;
  color: rgba(240, 241, 242, 0.75);
  margin-bottom: 1.25rem;
}
.a11y-modal__section {
  margin-bottom: 1.1rem;
}
.a11y-modal__label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: rgba(240, 241, 242, 0.85);
}
.a11y-modal__stepper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.a11y-modal__step {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 0.35rem;
  border: 1px solid rgba(240, 241, 242, 0.3);
  background-color: transparent;
  color: #F0F1F2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.a11y-modal__step:hover:not(:disabled) {
  background-color: rgb(163, 0, 0);
  border-color: rgb(197, 2, 2);
}
.a11y-modal__step:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.a11y-modal__step:focus-visible {
  outline: 3px solid #f0c36a;
  outline-offset: 2px;
}
.a11y-modal__step-value {
  flex: 1;
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: 1rem;
}
.a11y-modal__toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.95rem;
}
.a11y-modal__toggle input[type=checkbox] {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: rgb(163, 0, 0);
  cursor: pointer;
}
.a11y-modal__toggle input[type=checkbox]:focus-visible {
  outline: 3px solid #f0c36a;
  outline-offset: 2px;
}
.a11y-modal__reset {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}
.a11y-modal__live {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Reduce motion */
html.reduce-motion {
  scroll-behavior: auto;
}

html.reduce-motion [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

html.reduce-motion * {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
}

/* Underline links */
html.underline-links a {
  text-decoration: underline !important;
}

/* Line spacing */
html.line-spacing p, html.line-spacing li, html.line-spacing .card-text, html.line-spacing .a11y-modal__desc {
  line-height: 2 !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 1.25rem !important;
}

/* Easy-to-read font */
html.easy-read-font body,
html.easy-read-font p,
html.easy-read-font li,
html.easy-read-font label,
html.easy-read-font input,
html.easy-read-font textarea,
html.easy-read-font .card-text,
html.easy-read-font .nav__items,
html.easy-read-font .footer__text,
html.easy-read-font .a11y-modal__desc {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* High contrast */
html.high-contrast body {
  background-image: none;
  background-color: #000000;
}
html.high-contrast * {
  text-shadow: none !important;
}
html.high-contrast body,
html.high-contrast p,
html.high-contrast h1,
html.high-contrast h2,
html.high-contrast h3,
html.high-contrast h4,
html.high-contrast h5,
html.high-contrast span,
html.high-contrast li {
  color: #ffffff;
}
html.high-contrast a:not(.btn) {
  color: #ffe066;
}
html.high-contrast .article__container,
html.high-contrast .card,
html.high-contrast .nav__style,
html.high-contrast .footer__container,
html.high-contrast .a11y-modal__panel {
  background-color: #000000 !important;
  background-image: none !important;
  border: 1px solid #ffffff !important;
}

.link-confirm {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-confirm[hidden] {
  display: none;
}
.link-confirm__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
}
.link-confirm__panel {
  position: relative;
  background-color: #212529;
  border: 1px solid rgba(240, 241, 242, 0.2);
  border-radius: 0.75rem;
  padding: 1.75rem;
  max-width: 26rem;
  width: calc(100% - 2rem);
  text-shadow: none;
}
.link-confirm__title {
  font-family: "Black Ops One", cursive;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.link-confirm__desc {
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(240, 241, 242, 0.85);
  margin-bottom: 0.35rem;
}
.link-confirm__dest {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #d8b75a;
  word-break: break-all;
  margin-bottom: 1.5rem;
}
.link-confirm__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.link-confirm__actions .btn {
  width: 100%;
}

.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 1060;
  width: calc(100% - 2rem);
  max-width: 44rem;
  background-color: #212529;
  border: 1px solid rgba(240, 241, 242, 0.18);
  border-radius: 0.75rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
  padding: 1.1rem 1.25rem;
  text-shadow: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-bar[hidden] {
  display: none;
}
.cookie-bar__text {
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(240, 241, 242, 0.85);
  flex: 1 1 20rem;
  margin: 0;
}
.cookie-bar__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* RESET CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #F0F1F2;
}

/* 
FONTS INSTALADAS DE GOOGLE FONTS
font-family: 'Oswald', sans-serif;
font-family: 'Playfair Display SC', serif; 
font-family: 'Hubballi', cursive;
font-family: 'Homenaje', sans-serif;
font-family: 'Black Ops One', cursive;
*/
p {
  line-height: 1.4rem;
}

.article__title, .article__subtitle {
  font-size: 2.5rem;
  font-family: "Black Ops One", cursive;
  text-shadow: 5px 6px 6px black;
}

.article__subtitle {
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .article__title, .article__subtitle {
    font-size: 3rem;
  }
  .article__subtitle {
    font-size: 1.5rem;
  }
  .footer__text {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  p {
    font-size: 1.5rem;
  }
}
.nav__style {
  background-image: linear-gradient(#17191A, #212529);
  border-bottom: 1px solid black;
}

.nav__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0.75rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

.nav__brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: transparent;
  border: 1px solid rgba(240, 241, 242, 0.3);
  border-radius: 0.5rem;
  color: #F0F1F2;
  font-size: 1.1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
  font-family: "Homenaje", sans-serif;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background-color: #17191A;
    border-bottom: 1px solid black;
    padding: 0.75rem clamp(1rem, 4vw, 2.5rem) 1rem;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
  }
  .nav__links.nav__links--open {
    display: flex;
  }
  .nav-pill {
    justify-content: flex-start;
  }
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  color: rgb(223, 223, 223);
  text-decoration: none;
  background-color: transparent;
  box-shadow: inset 0 -2px 0 transparent;
  transition: color 180ms ease, box-shadow 180ms ease;
}
.nav-pill span {
  font-size: 0.85rem;
  opacity: 0.85;
}
.nav-pill:hover, .nav-pill:focus-visible {
  color: #F0F1F2;
}
.nav-pill.nav-link-current {
  color: #F0F1F2;
  box-shadow: inset 0 -2px 0 #d8b75a;
}

#nav__logo {
  height: 34px !important;
  width: auto !important;
  max-width: none !important;
  animation-name: displayLogo;
  animation-timing-function: ease-in;
  animation-duration: 2s;
}

@keyframes displayLogo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header {
  background-image: url("../img/PixelArt/objetos/FondoBIG.png");
  background-image: image-set(url("../img/PixelArt/objetos/FondoBIG.webp") type("image/webp"), url("../img/PixelArt/objetos/FondoBIG.png") type("image/png"));
  background-size: contain;
  background-repeat: repeat-x;
  height: 30vh;
}

.header__bar {
  background-image: url("../img/PixelArt/objetos/FondoBIG.png");
  background-image: image-set(url("../img/PixelArt/objetos/FondoBIG.webp") type("image/webp"), url("../img/PixelArt/objetos/FondoBIG.png") type("image/png"));
  background-size: contain;
  background-repeat: repeat-x;
  border-top: 1px solid rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  padding: 2.25rem clamp(1rem, 4vw, 2.5rem);
  scroll-margin-top: 100px;
}

#home {
  scroll-margin-top: 100px;
}

header img {
  height: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
#home,
#about,
#projects,
#contact {
  scroll-margin-top: 8vh;
}

body {
  /* background-color: $background-dark; */
  background-image: linear-gradient(#17191A, #17191A, rgb(18, 18, 18));
  font-family: "Hubballi", cursive;
  text-shadow: 5px 4px 5px rgba(0, 0, 0, 0.66);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page__content {
  flex: 1 0 auto;
}

.footer__container {
  background-color: #17191A;
  border-top: 1px solid black;
  flex-shrink: 0;
  text-shadow: none;
}
.footer__row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem);
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer__logo {
  height: 2.25rem;
  width: auto;
}
.footer__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.footer__social-icons {
  display: flex;
  gap: 1.1rem;
}
.footer__social-icons a {
  color: #F0F1F2;
  font-size: 1.3rem;
  line-height: 1;
  transition: color 0.2s ease;
}
.footer__social-icons a:hover, .footer__social-icons a:focus {
  color: rgb(197, 2, 2);
}
.footer__text {
  font-weight: 500;
  font-size: 0.75rem;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.03rem;
  color: rgba(240, 241, 242, 0.5);
  margin-bottom: 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer__row {
    grid-template-columns: 1fr auto 1fr;
    text-align: left;
  }
  .footer__brand {
    justify-content: flex-start;
  }
  .footer__actions {
    justify-content: flex-end;
  }
  .footer__text {
    text-align: center;
  }
}
.aside__title {
  font-family: "Press Start 2P", cursive;
  animation-name: fadingTitle;
  animation-timing-function: ease-in;
  animation-duration: 1.6s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes fadingTitle {
  0% {
    opacity: 0.55;
  }
  100% {
    opacity: 1;
  }
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
}
.info-card__icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  background-color: #17191A;
  border: 1px solid rgba(240, 241, 242, 0.3);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}
.info-card__icon img {
  width: 100%;
  height: auto;
  display: block;
}
.info-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.info-card p {
  font-size: 1.25rem;
  line-height: 1.55;
  color: rgba(240, 241, 242, 0.85);
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.about-intro__image {
  width: 100%;
  max-height: 340px;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  display: block;
}
.about-intro__eyebrow {
  font-family: "Homenaje", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d8b75a;
  margin-bottom: 0.85rem;
}
.about-intro__text {
  font-size: 1.45rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.about-values__card {
  flex: 1 1 260px;
  max-width: 360px;
  padding: 2rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-values__icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #17191A;
  border: 1px solid rgba(240, 241, 242, 0.3);
  box-shadow: 5px 5px 13px 5px rgba(0, 0, 0, 0.5);
}
.about-values__icon--pulse {
  animation: ltpPulse 2.4s ease-in-out infinite;
}
.about-values__icon--blink {
  animation: ltpBlink 4s ease-in-out infinite;
}
.about-values__icon--beat {
  animation: ltpBeat 2s ease-in-out infinite;
}
.about-values p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(240, 241, 242, 0.88);
}

@keyframes ltpPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}
@keyframes ltpBlink {
  0%, 42%, 52%, 100% {
    transform: scaleY(1);
  }
  47% {
    transform: scaleY(0.1);
  }
}
@keyframes ltpBeat {
  0%, 100% {
    transform: scale(1);
  }
  18% {
    transform: scale(1.18);
  }
  32% {
    transform: scale(1);
  }
  46% {
    transform: scale(1.12);
  }
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.team-card {
  flex: 1 1 240px;
  max-width: 340px;
  background-color: #17191A;
  border: 1px solid rgba(240, 241, 242, 0.14);
  border-radius: 0.75rem;
  box-shadow: 5px 5px 13px 5px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-card__body {
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.team-card__body p {
  color: rgba(240, 241, 242, 0.85);
}

.team-portrait {
  background-color: #101112;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  perspective: 900px;
}
.team-portrait__flip {
  position: relative;
  width: 70%;
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(0.3, 0.7, 0.2, 1);
}
.team-portrait:hover .team-portrait__flip, .team-portrait:focus-within .team-portrait__flip {
  transform: rotateY(180deg);
}
.team-portrait__face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  backface-visibility: hidden;
  filter: grayscale(1);
}
.team-portrait__back {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #17191A;
  border: 1px solid rgba(240, 241, 242, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: rotateY(180deg);
  backface-visibility: hidden;
}
.team-portrait__back img {
  height: 78%;
  width: auto;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  display: block;
}

.about-outro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  text-align: center;
}
.about-outro__image {
  width: 100%;
  max-width: 12rem;
  height: auto;
  display: block;
}
.about-outro p {
  font-size: 1.3rem;
  line-height: 1.55;
  max-width: 30rem;
  color: rgba(240, 241, 242, 0.88);
}

@media screen and (min-width: 768px) {
  .about-intro {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}
.projects-title {
  font-size: clamp(1rem, 2.2vw, 1.6rem);
}

.project-shot-wrap {
  position: relative;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 5px 5px 13px 5px rgba(0, 0, 0, 0.78);
}
.project-shot-wrap picture {
  display: block;
}

.project-shot {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background-color: #17191A;
  display: block;
}
.project-shot--hover {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  transition: opacity 300ms ease;
}

.project-shot-wrap:hover .project-shot--hover,
.project-shot-wrap:focus-within .project-shot--hover {
  opacity: 1;
}

.project-badge {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  height: 4rem !important;
  width: auto !important;
  max-width: none !important;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.65));
}

.project-featured .project-badge {
  height: 6rem !important;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.project-tag {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background-color: #17191A;
  border: 1px solid rgba(240, 241, 242, 0.18);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-family: "Homenaje", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(240, 241, 242, 0.8);
  text-shadow: none;
}
.project-tag i {
  font-size: 0.8rem;
  color: #d8b75a;
}

.project-play {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

.project-featured {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.project-featured:hover {
  border-color: rgba(216, 183, 90, 0.45);
}
.project-featured .project-shot-wrap {
  max-width: 280px;
  margin: 0 auto;
}
.project-featured__title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-family: "Black Ops One", cursive;
  text-shadow: 5px 6px 6px black;
  margin-bottom: 0.85rem;
}
.project-featured__desc {
  font-size: 1.3rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  color: rgba(240, 241, 242, 0.9);
}
.project-featured .project-tag {
  font-size: 1rem;
}
.project-featured .project-tag i {
  font-size: 0.95rem;
}

.project-ribbon {
  position: absolute;
  top: 0;
  right: 1.5rem;
  width: 2.5rem;
  padding: 0.55rem 0 1rem;
  background-color: #d8b75a;
  color: #252522;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.45);
  text-shadow: none;
  z-index: 1;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.project-card {
  flex: 1 1 260px;
  max-width: 350px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.project-card:hover {
  border-color: rgba(216, 183, 90, 0.45);
}
.project-card p {
  font-size: 1rem;
}

.project-card__title {
  font-size: 1rem;
  font-family: "Black Ops One", cursive;
  text-shadow: 5px 6px 6px black;
}

@media screen and (min-width: 768px) {
  .project-featured {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    align-items: center;
  }
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
}
@media screen and (min-width: 768px) {
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.social-card {
  position: relative;
  min-width: 0;
  padding: clamp(2rem, 4vw, 3rem) 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 200ms ease, border-color 200ms ease, transform 200ms ease;
}
a.social-card:hover, a.social-card:focus {
  border-color: rgba(216, 183, 90, 0.45);
  box-shadow: 5px 12px 22px 2px rgba(0, 0, 0, 0.8);
  transform: translateY(-2px);
}
.social-card__icon {
  width: 5.5rem;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #17191A;
  border: 1px solid rgba(240, 241, 242, 0.3);
  box-shadow: 5px 5px 13px 5px rgba(0, 0, 0, 0.5);
  font-size: 2.5rem;
}
.social-card p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(240, 241, 242, 0.85);
  max-width: 28rem;
}
.social-card__cta {
  margin-top: 0.5rem;
}
.social-card--soon {
  opacity: 0.85;
}
.social-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: "Homenaje", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d8b75a;
  border: 1px solid rgba(216, 183, 90, 0.5);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}

.social-preview {
  width: 100%;
  border-radius: 0.6rem;
  overflow: hidden;
  border: 1px solid rgba(240, 241, 242, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
  background-color: #101112;
}
.social-preview__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  background-color: #1c1e1f;
  border-bottom: 1px solid rgba(240, 241, 242, 0.1);
  min-width: 0;
}
.social-preview__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: rgba(240, 241, 242, 0.25);
  flex-shrink: 0;
}
.social-preview__url {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: rgba(240, 241, 242, 0.55);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.social-preview__shot {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: top;
}
.social-preview__skeleton {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  height: 170px;
}
.social-preview__skeleton-tile {
  background: linear-gradient(
    100deg,
    rgba(240, 241, 242, 0.06) 30%,
    rgba(240, 241, 242, 0.12) 50%,
    rgba(240, 241, 242, 0.06) 70%
  );
  background-size: 200% 100%;
  animation: ltpSkeleton 2.2s ease-in-out infinite;
}
@keyframes ltpSkeleton {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.form__img {
  width: 10rem;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

#form__textArea {
  height: 125px;
  min-height: 80px;
  max-height: 300px;
  resize: vertical;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.contact-grid__art {
  width: 100%;
  height: auto;
  display: block;
}

.contact-form-slot {
  background-color: #17191A;
  border: 1px solid rgba(240, 241, 242, 0.14);
  border-radius: 0.75rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
}
.cf-turnstile {
  max-width: 100%;
  overflow: hidden;
}
.contact-form label {
  font-size: 1.2rem;
  color: rgba(240, 241, 242, 0.85);
  margin-bottom: 0.4rem;
}

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding-top: 0.5rem;
}
.contact-success__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: #2ecc71;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.contact-success__title {
  font-size: 1.3rem;
  margin: 0;
  color: #F0F1F2;
}
.contact-success__again {
  background: none;
  border: none;
  color: rgba(240, 241, 242, 0.6);
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.contact-success__again:hover,
.contact-success__again:focus-visible {
  color: #F0F1F2;
}

@media screen and (min-width: 768px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1.4fr) minmax(0, 1fr);
  }
}

.notfound {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: clamp(3rem, 8vw, 6rem) 1rem;
}
.notfound__art {
  width: 100%;
  max-width: 320px;
  height: auto;
}
.notfound__eyebrow {
  font-family: "Homenaje", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d8b75a;
  margin-bottom: 0.5rem;
}
.notfound__title {
  font-family: "Black Ops One", cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  text-shadow: 5px 6px 6px black;
  margin-bottom: 1rem;
}
.notfound__text {
  font-size: 1.2rem;
  line-height: 1.55;
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  color: rgba(240, 241, 242, 0.85);
}
.notfound__cta {
  font-size: 1.1rem;
  padding: 0.6rem 1.6rem;
}
