:root {
  --bg: #16120f;
  --overlay: rgba(20, 14, 10, 0.44);
  --text: #f3eee8;
  --muted: rgba(243, 238, 232, 0.74);
  --line: rgba(243, 238, 232, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body,
#root {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  min-height: min(100vh, 68rem);
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 40%);
}

.hero-video,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-video {
  object-fit: cover;
  filter: saturate(0.82) brightness(0.68);
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-video.is-hidden {
  opacity: 0;
}

.hero-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.12);
  transition:
    opacity 950ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 4200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-image-projects {
  background-image: url("/assets/proyectos.jpg");
}

.hero-image-about {
  background-image: url("/assets/acercade.jpg");
}

.hero-image-nosotros {
  background-image: url("/assets/nosotros.jpg");
}

.hero-image-contact {
  background-image: url("/assets/contacto.jpg");
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.38)),
    linear-gradient(90deg, rgba(22, 18, 15, 0.52), rgba(22, 18, 15, 0.12) 45%, rgba(22, 18, 15, 0.46));
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1), background 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-overlay.is-projects-active {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28)),
    linear-gradient(90deg, rgba(22, 18, 15, 0.36), rgba(22, 18, 15, 0.08) 45%, rgba(22, 18, 15, 0.3));
}

.hero-header {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0 3rem;
  z-index: 3;
}

.hero-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, 72rem);
  margin: 0 auto;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  transform: translateY(-2.5rem);
}

.hero-nav-group {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3.25rem);
}

.hero-nav-group-left {
  justify-content: flex-end;
  padding-right: clamp(1.5rem, 4vw, 4.5rem);
}

.hero-nav-group-right {
  justify-content: flex-start;
  padding-left: clamp(1.5rem, 4vw, 4.5rem);
}

.hero-nav-center {
  display: grid;
  place-items: center;
  gap: 0.8rem;
  text-align: center;
  justify-self: center;
  width: max-content;
}

.hero-brand {
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  display: block;
  text-align: center;
  width: auto;
  transform: translateX(15px);
}

.hero-mobile-toggle,
.hero-mobile-brand,
.hero-mobile-panel,
.hero-mobile-footer-brand {
  display: none;
}

.hero-logo-mark {
  display: block;
  width: clamp(5.25rem, 9vw, 7rem);
  margin: 0 auto;
  filter: drop-shadow(0 0.45rem 1.4rem rgba(0, 0, 0, 0.18));
}

.hero-nav a {
  color: var(--muted);
  transition: color 220ms ease, opacity 220ms ease;
}

.hero-link-creative {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  padding-bottom: 0.2rem;
}

.hero-link-creative::after {
  content: attr(data-text);
  position: absolute;
  inset: 0 auto auto 0;
  color: var(--text);
  transform: translate3d(0, 135%, 0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.hero-link-creative span {
  display: inline-block;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay);
}

.hero-nav a.is-underlined {
  text-decoration: underline;
  text-underline-offset: 0.45rem;
  text-decoration-thickness: 1px;
}

.hero-link-creative:hover::after,
.hero-link-creative:focus-visible::after {
  transform: translate3d(0, 0, 0);
}

.hero-link-creative:hover span,
.hero-link-creative:focus-visible span {
  opacity: 0;
  transform: translate3d(0, -135%, 0);
}

.hero-nav a:hover,
.hero-brand:hover {
  color: var(--text);
}

.hero-content {
  position: relative;
  min-height: min(100vh, 68rem);
  z-index: 1;
  pointer-events: none;
}

.hero-footer {
  position: absolute;
  inset: auto 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 3rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--muted);
  z-index: 4;
  pointer-events: auto;
}

.hero-footer-socials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  min-width: 10rem;
  justify-self: center;
  pointer-events: auto;
}

.hero-footer > span:first-child {
  justify-self: start;
}

.hero-footer-mail {
  justify-self: end;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 220ms ease, transform 220ms ease;
  line-height: 0;
  pointer-events: auto;
}

.hero-social-link:hover,
.hero-social-link:focus-visible {
  color: var(--text);
  transform: translateY(-0.08rem);
}

.hero-social-icon {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
  display: block;
  fill: currentColor;
}

.hero-social-icon-linkedin {
  width: 2.05rem;
  height: 2.05rem;
}

.hero-social-link-instagram {
  color: var(--text);
}

.hero-social-icon-instagram {
  width: 2.65rem;
  height: 2.65rem;
}

.mobile-overlay-bar,
.mobile-overlay-panel {
  display: none;
}

@media (max-width: 960px) {
  .hero-header {
    padding: 0;
    place-items: stretch;
  }

  .hero-nav {
    display: none;
  }

  .hero-mobile-toggle {
    position: absolute;
    top: 4.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    gap: 0.45rem;
    width: 3rem;
    padding: 0;
    border: 0;
    background: transparent;
    z-index: 6;
  }

  .hero-mobile-toggle span {
    display: block;
    width: 100%;
    height: 0.22rem;
    background: #fff;
    border-radius: 999px;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .hero-mobile-toggle.is-open span:nth-child(1) {
    transform: translateY(0.67rem) rotate(45deg);
  }

  .hero-mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .hero-mobile-toggle.is-open span:nth-child(3) {
    transform: translateY(-0.67rem) rotate(-45deg);
  }

  .hero-mobile-brand {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 1.35rem;
    z-index: 4;
    text-align: center;
    pointer-events: none;
  }

  .hero-mobile-logo-mark {
    width: min(23vw, 5.9rem);
    filter: drop-shadow(0 0.45rem 1.4rem rgba(0, 0, 0, 0.18));
  }

  .hero-mobile-brand-text {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text);
    margin-left: 21px;
  }

  .hero-mobile-panel {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: start;
    justify-items: center;
    padding: 8.3rem 2rem 2rem;
    z-index: 5;
    background:
      linear-gradient(180deg, rgba(22, 18, 15, 0.46), rgba(22, 18, 15, 0.2)),
      linear-gradient(90deg, rgba(22, 18, 15, 0.38), rgba(22, 18, 15, 0.08) 45%, rgba(22, 18, 15, 0.28));
  }

  .hero-mobile-nav {
    display: grid;
    justify-items: center;
    gap: 2rem;
  }

  .hero-mobile-link {
    color: var(--text);
    font-size: 0.92rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .hero-footer {
    inset: auto 0 1.5rem;
    grid-template-columns: 1fr;
    padding: 0 1.25rem;
    text-align: center;
    letter-spacing: 0.18em;
    z-index: 6;
  }

  .hero-footer-socials {
    display: none;
  }

  .hero-footer > span:first-child,
  .hero-footer-mail {
    display: none;
  }

  .hero-mobile-footer-brand {
    display: block;
    justify-self: center;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  .mobile-overlay-bar {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    width: 100%;
    min-height: 5.5rem;
  }

  .mobile-overlay-toggle,
  .mobile-overlay-contact {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-height: 2.75rem;
    position: relative;
    z-index: 1;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1;
  }

  .mobile-overlay-toggle {
    grid-column: 1;
    justify-self: start;
    margin-left: 0;
  }

  .mobile-overlay-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(calc(-50% - 0.7rem), -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    z-index: 0;
  }

  .mobile-overlay-brand-mark {
    width: 100%;
    max-width: 4.2rem;
    filter: invert(1) brightness(0.18);
  }

  .mobile-overlay-contact {
    grid-column: 2;
    justify-self: end;
    margin-left: auto;
    margin-right: 0;
    justify-content: flex-end;
    text-align: right;
  }

  .mobile-overlay-shell {
    position: relative;
    display: block;
    z-index: 40;
  }

  .mobile-overlay-shell.is-open {
    z-index: 60;
  }

  .mobile-overlay-panel {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 61;
    min-height: calc(100dvh - 5.75rem);
    padding: 1.1rem 1.25rem 2.4rem;
    background:
      radial-gradient(circle at top center, rgba(214, 204, 190, 0.42), transparent 36%),
      linear-gradient(180deg, #faf6ef 0%, #f3ede4 100%);
    color: #2e2a27;
    border-top: 1px solid rgba(46, 42, 39, 0.08);
    box-shadow: 0 1.4rem 3.4rem rgba(46, 42, 39, 0.12);
  }

  .mobile-overlay-nav {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 1.15rem;
    padding: 0.35rem 0 0;
  }

  .mobile-overlay-link {
    font-size: clamp(1.45rem, 6.5vw, 2.05rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2e2a27;
    padding-bottom: 0.15rem;
  }

  .mobile-overlay-link::after {
    color: #2e2a27;
  }

  .mobile-overlay-link span {
    opacity: 0;
    transform: translate3d(0, 135%, 0);
    animation: mobile-overlay-letter-in 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--delay) + var(--item-delay, 0s));
  }

  .mobile-overlay-link.is-active {
    text-decoration: underline;
    text-underline-offset: 0.45rem;
    text-decoration-thickness: 1px;
  }

  .nosotros-showcase-header > :not(.mobile-overlay-bar),
  .projects-header > :not(.mobile-overlay-bar) {
    display: none !important;
  }

  .nosotros-showcase-header,
  .projects-header {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .nosotros-showcase-header .mobile-overlay-bar,
  .projects-header .mobile-overlay-bar {
    display: grid;
  }
}

@keyframes mobile-overlay-letter-in {
  from {
    opacity: 0;
    transform: translate3d(0, 135%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.projects-page {
  min-height: 100vh;
  background: #f7f3ec;
  color: #2e2a27;
  padding-top: 2rem;
}

.about-page {
  min-height: 100vh;
  background: #f7f3ec;
  color: #2e2a27;
  padding: 0;
}

.services-page {
  min-height: 100vh;
  padding: 2rem 0 0;
  background:
    radial-gradient(circle at top left, rgba(214, 204, 190, 0.34), transparent 28%),
    linear-gradient(180deg, #f7f3ec 0%, #f3ede4 100%);
  color: #2e2a27;
}

.services-hero,
.services-stack,
.services-process-section,
.services-extra-section,
.services-cta {
  max-width: 92rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
  gap: 3rem;
  align-items: end;
  padding-top: 4.75rem;
  padding-bottom: 5rem;
}

.services-hero-copy {
  display: grid;
  gap: 1.35rem;
  align-self: center;
}

.services-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(46, 42, 39, 0.62);
}

.services-title {
  margin: 0;
  max-width: 14ch;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.services-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.95;
  letter-spacing: 0.03em;
  color: rgba(46, 42, 39, 0.82);
}

.services-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.85rem;
}

.services-hero-pill {
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(46, 42, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-hero-media {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 1fr 0.72fr;
  gap: 1.1rem;
  min-height: 40rem;
}

.services-hero-card {
  position: relative;
  overflow: hidden;
  background: rgba(46, 42, 39, 0.08);
  border-radius: 1.8rem;
  box-shadow: 0 1.4rem 3.4rem rgba(46, 42, 39, 0.1);
}

.services-hero-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero-card-tall {
  grid-row: 1 / span 2;
}

.services-hero-card-bottom {
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at top left, rgba(214, 204, 190, 0.44), transparent 58%);
}

.services-hero-card-bottom img {
  width: 100%;
  max-width: 22rem;
  height: auto;
  object-fit: contain;
}

.services-marquee {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 92rem;
  margin: 0 auto 4rem;
  padding: 1rem 3rem 0;
  border-top: 1px solid rgba(46, 42, 39, 0.14);
}

.services-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(46, 42, 39, 0.62);
}

.services-marquee span + span::before {
  content: "•";
  margin-right: 1rem;
  color: rgba(46, 42, 39, 0.28);
}

.services-stack {
  display: grid;
  gap: 2rem;
}

.services-feature {
  display: grid;
  grid-template-columns: minmax(20rem, 0.92fr) minmax(0, 1.08fr);
  gap: 2.2rem;
  align-items: center;
  padding: 1.2rem;
  border: 1px solid rgba(46, 42, 39, 0.08);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 1rem 2.8rem rgba(46, 42, 39, 0.06);
}

.services-feature.is-reversed {
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
}

.services-feature.is-reversed .services-feature-media {
  order: 2;
}

.services-feature.is-reversed .services-feature-copy {
  order: 1;
}

.services-feature-media {
  overflow: hidden;
  min-height: 26rem;
  border-radius: 1.45rem;
}

.services-feature-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.services-feature:hover .services-feature-image {
  transform: scale(1.03);
}

.services-feature-copy {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.1rem 1rem 0.4rem;
}

.services-feature-number,
.services-process-step,
.services-extra-index {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(46, 42, 39, 0.46);
}

.services-feature-title,
.services-process-title,
.services-extra-title,
.services-cta-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.services-feature-title {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4vw, 4.15rem);
}

.services-feature-text,
.services-process-text,
.services-extra-lead,
.services-extra-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.95;
  letter-spacing: 0.03em;
  color: rgba(46, 42, 39, 0.82);
}

.services-process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 2rem;
  align-items: start;
  margin-top: 6rem;
}

.services-process-head {
  display: grid;
  gap: 1rem;
  padding-top: 0.5rem;
}

.services-process-title {
  max-width: 12ch;
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
}

.services-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.services-process-card,
.services-extra-card {
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(46, 42, 39, 0.1);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at top left, rgba(214, 204, 190, 0.26), transparent 52%);
}

.services-process-card-title,
.services-extra-card-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.25;
}

.services-extra-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 2rem;
  align-items: start;
  margin-top: 6rem;
}

.services-extra-copy {
  display: grid;
  gap: 1rem;
  max-width: 28rem;
}

.services-extra-title {
  max-width: 12ch;
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
}

.services-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.services-cta {
  display: grid;
  justify-items: center;
  gap: 1rem;
  margin-top: 6rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
  border-top: 1px solid rgba(46, 42, 39, 0.12);
}

.services-cta-title {
  max-width: 14ch;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.services-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11.5rem;
  min-height: 3.4rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background: #2e2a27;
  color: #f7f3ec;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.services-cta-link:hover,
.services-cta-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 1rem 2rem rgba(46, 42, 39, 0.14);
}

.about-section-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
}

.about-hero {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 72rem;
  min-height: clamp(28rem, 48vh, 38rem);
  margin: 0 auto;
  padding: 3.25rem 0 5.5rem;
}

.about-hero .about-section-title {
  margin-top: 1.1rem;
}

.about-lead {
  margin: 2.2rem auto 0;
  max-width: 54rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.45;
  color: rgba(46, 42, 39, 0.76);
}

.about-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin: 7rem auto 0;
  max-width: 105rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.about-studio-section,
.about-services-section,
.about-why-section,
.about-team-section,
.about-clients-section {
  max-width: 105rem;
  margin: 0 auto 6rem;
}

.about-studio-section {
  display: grid;
  grid-template-columns: minmax(18rem, 24rem) minmax(0, 44rem);
  justify-content: center;
  gap: 4rem;
  align-items: start;
}

.about-studio-carousel {
  display: grid;
  gap: 1rem;
}

.about-studio-image-frame {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.42);
  min-height: 38rem;
  box-shadow: 0 1.4rem 3rem rgba(44, 35, 24, 0.08);
}

.about-studio-copy p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
  max-width: 32rem;
}

.about-studio-copy p:first-of-type {
  margin-top: 2rem;
}

.about-studio-copy p + p {
  margin-top: 2.35rem;
}

.about-studio-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms ease;
}

.about-static-image {
  position: static;
  min-height: 38rem;
  height: auto;
}

.about-studio-image-current {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.about-studio-image-next {
  opacity: 0;
  transform: translateX(10%) scale(1.04);
  filter: blur(3px);
}

.about-studio-image-frame.about-studio-stage-running .about-studio-image-current {
  opacity: 0;
  transform: translateX(-6%) scale(0.985);
  filter: blur(2px);
}

.about-studio-image-frame.is-backward .about-studio-image-next {
  transform: translateX(-8%) scale(1.035);
}

.about-studio-image-frame.is-backward.about-studio-stage-running .about-studio-image-current {
  transform: translateX(5%) scale(0.985);
}

.about-studio-image-frame.about-studio-stage-running .about-studio-image-next {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.about-studio-carousel-controls {
  position: relative;
}

.about-studio-carousel-controls::before {
  content: "";
  position: absolute;
  inset: auto 0 50% 0;
  border-top: 1px solid rgba(46, 42, 39, 0.1);
  transform: translateY(-50%);
}

.about-studio-carousel-controls > * {
  position: relative;
  z-index: 1;
}

.about-studio-carousel-controls,
.about-studio-carousel-dots,
.admin-section-switcher,
.admin-about-preview-gallery {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.about-studio-carousel-controls {
  justify-content: space-between;
}

.about-studio-carousel-button,
.about-studio-carousel-dot {
  border: 1px solid rgba(46, 42, 39, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: #2e2a27;
  cursor: pointer;
}

.about-studio-carousel-button {
  min-width: 8.25rem;
  padding: 0.9rem 1.15rem;
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.about-studio-carousel-button:hover {
  background: #2e2a27;
  border-color: #2e2a27;
  color: #f7f3ec;
  transform: translateY(-1px);
  box-shadow: 0 0.8rem 1.8rem rgba(46, 42, 39, 0.14);
}

.about-studio-carousel-dots {
  justify-content: center;
}

.about-studio-carousel-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  padding: 0;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.about-studio-carousel-dot.is-active {
  background: #2e2a27;
  transform: scale(1.15);
}

.about-studio-carousel-empty {
  display: grid;
  place-items: center;
  min-height: 22rem;
  background: rgba(46, 42, 39, 0.06);
  color: rgba(46, 42, 39, 0.62);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-services-section,
.about-why-section,
.about-team-section,
.about-clients-section {
  text-align: center;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem 2.75rem;
  margin-top: 4rem;
}

.about-service-card {
  display: grid;
  gap: 1.4rem;
}

.about-service-number {
  font-size: 0.95rem;
  color: rgba(46, 42, 39, 0.7);
}

.about-service-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.1;
}

.about-service-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.about-why-copy {
  margin: 2rem auto 0;
  max-width: 54rem;
  font-size: 0.98rem;
  line-height: 1.85;
  letter-spacing: 0.05em;
}

.about-why-mark {
  display: block;
  width: min(100%, 34rem);
  height: auto;
  margin: 3.5rem auto 0;
  max-width: 34rem;
  border-radius: 0 !important;
  clip-path: none;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}

.about-why-subtitle {
  margin: 3.25rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.about-why-item {
  display: grid;
  gap: 1rem;
}

.about-why-dot {
  font-size: 2rem;
  line-height: 1;
}

.about-why-item-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-why-item-copy {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.about-team-feature {
  display: grid;
  grid-template-columns: minmax(20rem, 30rem) minmax(24rem, 1fr);
  gap: 3.5rem;
  align-items: start;
  margin-top: 4rem;
  text-align: left;
}

.about-team-media {
  display: grid;
  justify-items: start;
  gap: 1.15rem;
}

.about-team-photo {
  display: block;
  width: 100%;
  max-width: 24rem;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 60px;
}

.about-team-name {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
}

.about-team-name-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.about-team-role {
  margin: 0.8rem 0 0;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-team-copy {
  display: grid;
  gap: 1.35rem;
  padding-top: 0.35rem;
}

.about-team-bio {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.about-team-linkedin {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  border: 1px solid rgba(46, 42, 39, 0.18);
  color: #2e2a27;
}

.about-team-linkedin-icon {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}

.about-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 4rem;
  background: #f3eee6;
  max-width: 92rem;
  margin-left: auto;
  margin-right: auto;
}

.about-clients-grid .nosotros-collaborator-card {
  border-right: 0;
  border-bottom: 0;
  background: transparent;
}

.about-clients-grid .nosotros-collaborator-mask {
  aspect-ratio: 1 / 0.68;
}

.about-clients-grid .nosotros-collaborator-orb {
  top: 30%;
  left: 30%;
  width: 34%;
}

.about-clients-grid .nosotros-collaborator-copy {
  padding: 0.35rem 0.5rem 0;
}

.about-clients-grid .nosotros-collaborator-title {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.nosotros-capabilities {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 3.25rem auto 0;
  max-width: 58rem;
}

.nosotros-capability-pill {
  padding: 0.72rem 1rem;
  border: 1px solid rgba(46, 42, 39, 0.14);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nosotros-sectors-section,
.nosotros-workflow-section {
  max-width: 105rem;
  margin: 0 auto 6rem;
}

.nosotros-sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.nosotros-sector-card {
  min-height: 18rem;
  padding: 2.25rem;
  border: 1px solid rgba(46, 42, 39, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at top left, rgba(215, 203, 186, 0.28), transparent 52%);
  text-align: left;
}

.nosotros-workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.nosotros-workflow-card {
  display: grid;
  gap: 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(46, 42, 39, 0.26);
  text-align: left;
}

.nosotros-workflow-step {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(46, 42, 39, 0.62);
}

.nosotros-collaborators-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 4rem;
  background: #f3eee6;
}

.nosotros-collaborator-card {
  overflow: hidden;
  background: #f3eee6;
  text-align: left;
  border-right: 1px solid rgba(46, 42, 39, 0.04);
  border-bottom: 1px solid rgba(46, 42, 39, 0.04);
}

.nosotros-collaborator-mask {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f3eee6;
  isolation: isolate;
}

.nosotros-collaborator-orb {
  position: absolute;
  top: 22%;
  left: 22%;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 0 1px rgba(46, 42, 39, 0.04);
  will-change: transform;
  transition: transform 1150ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nosotros-collaborator-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(0.88) brightness(1.08);
}

.nosotros-collaborator-copy {
  padding: 0.95rem 1rem 1.1rem;
  background: #f3eee6;
}

.nosotros-collaborator-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nosotros-collaborator-card.type-1 .p-initial,
.nosotros-collaborator-card.type-2 .p-initial {
  transform: translate(0%, 0%);
}

.nosotros-collaborator-card.type-1 .p-bottom {
  transform: translate(0%, 145%);
}

.nosotros-collaborator-card.type-1 .p-right {
  transform: translate(145%, 0%);
}

.nosotros-collaborator-card.type-2 .p-top {
  transform: translate(0%, -145%);
}

.nosotros-collaborator-card.type-2 .p-left {
  transform: translate(-145%, 0%);
}

.nosotros-collaborator-orb.is-primary {
  z-index: 3;
}

.about-clients-grid .nosotros-collaborator-card.type-1 .p-initial,
.about-clients-grid .nosotros-collaborator-card.type-2 .p-initial {
  transform: translate(0%, 0%);
}

.about-clients-grid .nosotros-collaborator-card.type-1 .p-bottom {
  transform: translate(0%, 222%);
}

.about-clients-grid .nosotros-collaborator-card.type-1 .p-right {
  transform: translate(222%, 0%);
}

.about-clients-grid .nosotros-collaborator-card.type-2 .p-top {
  transform: translate(0%, -222%);
}

.about-clients-grid .nosotros-collaborator-card.type-2 .p-left {
  transform: translate(-222%, 0%);
}

.nosotros-contact-email {
  margin: 2.2rem 0 0;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nosotros-editorial-page {
  padding-bottom: 0;
}

.nosotros-showcase-page {
  background: #fbf8f2;
  color: #2e2a27;
  padding: 2rem 0 0;
}

.nosotros-showcase-header,
.nosotros-showcase-hero,
.nosotros-showcase-stats,
.nosotros-showcase-profile-section,
.nosotros-showcase-values,
.nosotros-showcase-cta {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.nosotros-showcase-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem 2.5rem;
}

.nosotros-showcase-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.nosotros-showcase-brand-mark {
  width: 2.3rem;
  filter: invert(1) brightness(0.12);
}

.nosotros-showcase-brand-text,
.nosotros-showcase-nav-link,
.nosotros-showcase-contact,
.nosotros-showcase-kicker,
.nosotros-showcase-stat-title,
.nosotros-showcase-section-label,
.nosotros-showcase-value-title,
.nosotros-showcase-cta-button {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nosotros-showcase-brand-text {
  font-size: 0.72rem;
  font-weight: 600;
}

.nosotros-showcase-nav {
  display: flex;
  justify-content: center;
  gap: 2.6rem;
}

.nosotros-showcase-nav-link,
.nosotros-showcase-contact {
  font-size: 0.72rem;
  font-weight: 600;
}

.nosotros-showcase-nav-link {
  position: relative;
  padding-bottom: 0.65rem;
}

.nosotros-showcase-nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(46, 42, 39, 0.45);
}

.nosotros-showcase-contact,
.nosotros-showcase-cta-button {
  background: #1f1d1b;
  color: #fff;
  padding: 1rem 1.55rem;
  border-radius: 0.18rem;
}

.nosotros-showcase-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.2fr);
  gap: 4.25rem;
  align-items: center;
  padding: 2rem 2rem 5rem;
}

.nosotros-showcase-copy {
  max-width: 27rem;
}

.nosotros-showcase-kicker {
  margin: 0 0 1.4rem;
  color: #b28d6a;
  font-size: 0.9rem;
  font-weight: 600;
}

.nosotros-showcase-title {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 400;
}

.nosotros-showcase-divider {
  display: block;
  width: 2.9rem;
  height: 1px;
  margin: 2.4rem 0;
  background: rgba(178, 141, 106, 0.56);
}

.nosotros-showcase-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(46, 42, 39, 0.82);
}

.nosotros-showcase-hero-image {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  display: block;
}

.nosotros-showcase-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0 2rem 4.5rem;
}

.nosotros-showcase-stat {
  text-align: center;
  padding: 2rem 2.4rem 0;
  min-height: 11rem;
  border-right: 1px solid rgba(46, 42, 39, 0.1);
}

.nosotros-showcase-stat:last-child {
  border-right: 0;
}

.nosotros-showcase-icon {
  width: 2rem;
  height: 2rem;
  color: #b28d6a;
}

.nosotros-showcase-stat-title {
  margin: 1rem 0 0.9rem;
  font-size: 0.92rem;
  color: #b28d6a;
  font-weight: 600;
}

.nosotros-showcase-stat-line {
  margin: 0.18rem 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

.nosotros-showcase-profile-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 4rem;
  align-items: start;
  padding: 3.8rem 2rem 4rem;
  border-top: 1px solid rgba(46, 42, 39, 0.08);
}

.nosotros-showcase-profile-photo {
  width: 100%;
  max-width: 420px;
  display: block;
  object-fit: cover;
  filter: grayscale(1);
}

.nosotros-showcase-section-label {
  margin: 0 0 1rem;
  color: #b28d6a;
  font-size: 0.9rem;
  font-weight: 600;
}

.nosotros-showcase-profile-name {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 400;
}

.nosotros-showcase-profile-role {
  margin: 1.15rem 0 1.7rem;
  font-size: 1.06rem;
}

.nosotros-showcase-profile-bio {
  margin: 0 0 1.35rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(46, 42, 39, 0.84);
}

.nosotros-showcase-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 2rem 2rem 4.5rem;
}

.nosotros-showcase-value {
  text-align: center;
  padding: 0.5rem 1rem;
}

.nosotros-showcase-value-title {
  margin: 1rem 0 0.75rem;
  font-size: 0.84rem;
  color: #b28d6a;
  font-weight: 600;
}

.nosotros-showcase-value-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(46, 42, 39, 0.8);
}

.nosotros-showcase-cta {
  text-align: center;
  padding: 4rem 2rem 5rem;
  border-top: 1px solid rgba(46, 42, 39, 0.08);
}

.nosotros-showcase-cta-title {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 400;
}

.nosotros-showcase-cta-copy {
  margin: 1rem auto 2rem;
  max-width: 46rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(46, 42, 39, 0.78);
}

.nosotros-editorial-hero {
  max-width: 110rem;
  margin: 0 auto;
  padding: 7rem 0 5rem;
  display: grid;
  grid-template-columns: minmax(20rem, 34rem) minmax(0, 1fr);
  gap: 4.5rem;
  align-items: start;
}

.nosotros-editorial-left {
  display: grid;
  gap: 1.5rem;
  align-content: start;
  justify-self: end;
  width: min(100%, 27rem);
}

.nosotros-editorial-panel {
  display: grid;
  gap: 1.5rem;
  padding: 1.4rem;
  border: 1px solid rgba(46, 42, 39, 0.18);
  background: rgba(255, 255, 255, 0.48);
  max-width: 27rem;
}

.nosotros-editorial-kicker,
.nosotros-editorial-statement,
.nosotros-editorial-subtext {
  margin: 0;
}

.nosotros-editorial-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(46, 42, 39, 0.58);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(46, 42, 39, 0.14);
}

.nosotros-editorial-manifesto {
  display: grid;
  gap: 0.85rem;
  max-width: 27rem;
  padding: 0 1.4rem 0 0;
}

.nosotros-editorial-statement {
  font-size: 1.55rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.nosotros-editorial-subtext {
  max-width: 22rem;
  font-size: 0.95rem;
  line-height: 1.68;
  color: rgba(46, 42, 39, 0.78);
}

.nosotros-editorial-intro-mobile {
  display: none;
}

.nosotros-editorial-facts {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(46, 42, 39, 0.12);
  border-bottom: 1px solid rgba(46, 42, 39, 0.12);
}

.nosotros-editorial-fact {
  display: grid;
  grid-template-columns: 5.8rem 1fr;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(46, 42, 39, 0.08);
}

.nosotros-editorial-fact:last-child {
  border-bottom: 0;
}

.nosotros-editorial-fact span,
.nosotros-editorial-bar span:first-child {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(46, 42, 39, 0.52);
}

.nosotros-editorial-fact strong {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nosotros-editorial-bar {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  column-gap: 1rem;
  row-gap: 0.3rem;
  align-items: start;
}

.nosotros-editorial-bar span {
  font-size: 0.88rem;
  line-height: 1.5;
}

.nosotros-editorial-bar span:last-child {
  grid-column: 2;
  color: rgba(46, 42, 39, 0.78);
}

.nosotros-editorial-right {
  display: grid;
  gap: 1.4rem;
}

.nosotros-editorial-intro {
  margin: 0;
  max-width: 58rem;
  font-size: 1.1rem;
  line-height: 1.55;
}

.nosotros-editorial-image {
  display: block;
  width: 100%;
  min-height: 32rem;
  object-fit: cover;
  filter: grayscale(1) contrast(0.92);
}

.nosotros-editorial-profile {
  max-width: 52rem;
  display: grid;
  gap: 0.9rem;
}

.nosotros-editorial-name,
.nosotros-editorial-role,
.nosotros-editorial-bio {
  margin: 0;
}

.nosotros-editorial-name {
  font-size: 1.55rem;
  font-weight: 600;
}

.nosotros-editorial-role {
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.nosotros-editorial-bio {
  font-size: 1rem;
  line-height: 1.75;
}

.about-client-badge {
  display: grid;
  place-items: center;
  width: 10.5rem;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(46, 42, 39, 0.05);
}

.about-client-badge span {
  max-width: 70%;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 600;
  color: rgba(46, 42, 39, 0.82);
}

.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #363039;
  color: #f2ece7;
}

.projects-page .site-footer,
.project-detail-page .site-footer {
  margin-top: 4rem;
}

.contact-page {
  min-height: 100vh;
  background: #f7f3ec;
  color: #2e2a27;
  padding: 2rem 2rem 5rem;
}

.contact-hero {
  width: min(100%, 62rem);
  margin: 0 auto;
  padding: 8rem 0 3.5rem;
  text-align: center;
}

.contact-kicker {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(46, 42, 39, 0.62);
}

.contact-title {
  margin: 1.1rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.contact-tabs {
  display: flex;
  justify-content: center;
  gap: 2.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-tab {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(46, 42, 39, 0.52);
  padding-bottom: 0.65rem;
}

.contact-tab.is-active {
  color: #2e2a27;
  border-bottom: 1px solid rgba(46, 42, 39, 0.72);
}

.contact-intro {
  width: min(100%, 40rem);
  margin: 2rem auto 0;
  font-size: 1.02rem;
  line-height: 1.9;
  color: rgba(46, 42, 39, 0.76);
}

.contact-form-section {
  width: min(100%, 76rem);
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 2.2rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 4rem;
}

.contact-field {
  display: grid;
  gap: 0.8rem;
}

.contact-label {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(46, 42, 39, 0.56);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(46, 42, 39, 0.58);
  background: transparent;
  padding: 0 0 0.9rem;
  color: #2e2a27;
  font: inherit;
  font-size: 1rem;
  border-radius: 0;
  appearance: none;
}

.contact-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-bottom-color: #2e2a27;
}

.contact-field-message {
  margin-top: 0.4rem;
}

.contact-services {
  border: 0;
  padding: 0;
  margin: 0;
}

.contact-service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.contact-service-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.1rem;
  border: 1px solid rgba(46, 42, 39, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.contact-service-chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.contact-service-chip span {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2e2a27;
}

.contact-service-chip.is-active {
  border-color: rgba(54, 44, 66, 0.55);
  background: rgba(54, 44, 66, 0.1);
}

.contact-submit {
  justify-self: center;
  min-width: 18rem;
  border: 0;
  background: #3c3641;
  color: #f7f3ec;
  padding: 1rem 1.6rem;
  font: inherit;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #4a4250;
  transform: translateY(-1px);
}

.contact-bottom {
  width: min(100%, 62rem);
  margin: 4rem auto 0;
  text-align: center;
  color: rgba(46, 42, 39, 0.72);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.contact-bottom p + p {
  margin-top: 0.8rem;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem 8rem;
  align-items: start;
  max-width: 112rem;
  margin: 0 auto;
  padding: 3.5rem 3rem 7rem;
}

.site-footer-heading {
  margin: 0 0 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.site-footer-form {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 28rem;
  border-bottom: 1px solid rgba(242, 236, 231, 0.7);
}

.site-footer-input {
  flex: 1;
  padding: 0 0 0.9rem;
  border: 0;
  background: transparent;
  color: #f2ece7;
  font: inherit;
  font-size: 0.98rem;
  letter-spacing: 0.12em;
}

.site-footer-input::placeholder {
  color: rgba(242, 236, 231, 0.62);
}

.site-footer-input:focus {
  outline: none;
}

.site-footer-submit {
  padding: 0 0 0.9rem;
  border: 0;
  background: transparent;
  color: #f2ece7;
  font: inherit;
  font-size: 1.65rem;
  cursor: pointer;
}

.site-footer-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 12rem;
}

.site-footer-mark-image {
  display: block;
  width: min(100%, 34rem);
  height: auto;
  object-fit: contain;
}

.site-footer-mark-image-symbol {
  width: min(100%, 9rem);
  filter: none;
}

.site-footer-email,
.site-footer-address p,
.site-footer-meta p,
.site-footer-meta a,
.site-footer-socials a {
  margin: 0;
  font-size: 0.96rem;
  letter-spacing: 0.1em;
  color: rgba(242, 236, 231, 0.9);
}

.site-footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.3rem;
  text-transform: lowercase;
}

.site-footer-address p + p,
.site-footer-meta p {
  margin-top: 0.9rem;
}

.site-footer-meta {
  align-self: end;
}

.projects-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 1.5rem;
  padding: 1.1rem 1.6rem 0;
}

.projects-menu-link,
.projects-contact-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: #34302c;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.projects-menu-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.55rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding-bottom: 0.2rem;
  margin-left: 0.2rem;
}

.projects-menu-text-wrap {
  position: relative;
  display: inline-grid;
  align-items: center;
  min-width: 3.5rem;
  overflow: hidden;
}

.projects-menu-copy,
.projects-menu-label {
  display: inline-flex;
  align-items: center;
  grid-area: 1 / 1;
  white-space: nowrap;
}

.projects-menu-label {
  position: absolute;
  inset: 0 auto auto 0;
  color: #1f1b21;
  transform: translate3d(0, 135%, 0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.projects-menu-copy span {
  display: inline-block;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay);
}

.projects-menu-link:hover .projects-menu-label,
.projects-menu-link:focus-visible .projects-menu-label {
  transform: translate3d(0, 0, 0);
}

.projects-menu-link:hover .projects-menu-copy span,
.projects-menu-link:focus-visible .projects-menu-copy span {
  opacity: 0;
  transform: translate3d(0, -135%, 0);
}

.projects-menu-dot {
  font-size: 1.3rem;
  line-height: 1;
}

.projects-contact-link {
  justify-self: end;
  margin-right: 0.2rem;
}

.projects-contact-button {
  background: #1f1d1b;
  color: #fff;
  padding: 1rem 1.55rem;
  border-radius: 0.18rem;
}

.projects-logo-link {
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  transform: none;
}

.projects-logo {
  width: 4.8rem;
  filter: invert(1) brightness(0.18);
}

.projects-logo-caption {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(46, 42, 39, 0.84);
}

.projects-contact-link {
  justify-self: end;
}

.site-social-rail {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: grid;
  gap: 0.8rem;
}

.site-social-rail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.7rem 2rem rgba(46, 42, 39, 0.08);
  color: #2e2a27;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-social-rail-link:hover,
.site-social-rail-link:focus-visible {
  transform: translateX(-0.08rem);
  box-shadow: 0 0.9rem 2.3rem rgba(46, 42, 39, 0.14);
  background: #fff;
}

.site-social-rail-icon {
  width: 1.45rem;
  height: 1.45rem;
  fill: currentColor;
  display: block;
}

.site-social-rail-icon-instagram {
  width: 1.55rem;
  height: 1.55rem;
}

.projects-intro {
  padding: 7rem 0 5rem;
  text-align: center;
}

.projects-kicker {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  letter-spacing: 0.02em;
}

.projects-tagline {
  margin: 2rem auto 0;
  max-width: 40rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 400;
  line-height: 1.2;
}

.projects-filters {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 auto 4rem;
  max-width: 105rem;
  padding: 0 1.25rem;
}

.projects-filter {
  border: 1px solid rgba(46, 42, 39, 0.26);
  background: rgba(255, 255, 255, 0.6);
  padding: 0.68rem 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  color: #34302c;
  cursor: pointer;
  text-align: center;
  border-radius: 999px;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease, color 220ms ease;
}

.projects-filter-mobile-row,
.projects-filter-mobile-label,
.projects-filter-mobile-icon {
  display: none;
}

.projects-filter:hover,
.projects-filter:focus-visible {
  border-color: rgba(46, 42, 39, 0.6);
  transform: translateY(-0.08rem);
}

.projects-filter.is-active {
  background: #34302c;
  border-color: #34302c;
  color: #f4efe7;
}

.projects-filter-value {
  font-size: 0.9rem;
  color: rgba(52, 48, 44, 0.82);
}

.projects-filter-values {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.projects-filter-token {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  line-height: 1;
}

.projects-filter-token + .projects-filter-token::before {
  content: "/";
  margin-right: 0.7rem;
  color: rgba(52, 48, 44, 0.42);
}

.projects-filter.is-active .projects-filter-value {
  color: rgba(244, 239, 231, 0.78);
}

.projects-filter.is-active .projects-filter-token + .projects-filter-token::before {
  color: rgba(244, 239, 231, 0.48);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: start;
  max-width: 105rem;
  margin: 0 auto;
}

.projects-state {
  margin: 2rem auto 0;
  max-width: 105rem;
  color: rgba(46, 42, 39, 0.72);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.projects-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 3rem auto 0;
  max-width: 105rem;
}

.projects-pagination-button {
  border: 1px solid rgba(46, 42, 39, 0.16);
  background: transparent;
  color: #2e2a27;
  padding: 0.8rem 1rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.projects-pagination-button:disabled {
  opacity: 0.4;
  cursor: default;
}

.projects-pagination-status {
  min-width: 4rem;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.project-card-link {
  display: block;
  color: inherit;
}

.project-card-link.is-emphasized {
  margin-top: 7rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: #ebe4db;
  min-height: 34rem;
  isolation: isolate;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 18, 26, 0.08) 0%, rgba(20, 18, 26, 0.18) 48%, rgba(20, 18, 26, 0.38) 100%),
    linear-gradient(180deg, rgba(74, 62, 86, 0) 18%, rgba(74, 62, 86, 0.2) 68%, rgba(74, 62, 86, 0.52) 100%);
  transition: opacity 360ms ease, background 360ms ease;
}

.project-card-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
  transform: scale(1);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1), filter 360ms ease;
}

.project-card-placeholder {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.08)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.22), transparent 46%);
}

.project-card-sand .project-card-placeholder {
  background-color: #d9ccb7;
}

.project-card-stone .project-card-placeholder {
  background-color: #c8c2bb;
}

.project-card-mist .project-card-placeholder {
  background-color: #d7d8d1;
}

.project-card-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 2rem 2rem 2.2rem;
  background: linear-gradient(180deg, transparent, rgba(22, 18, 28, 0.8));
  color: #f7f3ec;
  transform: translateY(1.2rem);
  opacity: 0.86;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease, background 320ms ease;
}

.project-card-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.55rem;
  font-weight: 500;
  transform: translateY(0.45rem);
  opacity: 0.9;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease;
}

.project-card-meta,
.project-card-scale {
  margin: 0.6rem 0 0;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(0.9rem);
  opacity: 0;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease;
}

.project-card-scale {
  opacity: 0;
}

.project-card-link:hover .project-card::before,
.project-card-link:focus-visible .project-card::before {
  background:
    linear-gradient(180deg, rgba(20, 18, 26, 0.12) 0%, rgba(20, 18, 26, 0.28) 44%, rgba(20, 18, 26, 0.56) 100%),
    linear-gradient(180deg, rgba(88, 74, 103, 0.08) 0%, rgba(88, 74, 103, 0.24) 56%, rgba(88, 74, 103, 0.62) 100%);
}

.project-card-link:hover .project-card-image,
.project-card-link:focus-visible .project-card-image {
  transform: scale(1.045);
  filter: saturate(0.95);
}

.project-card-link:hover .project-card-copy,
.project-card-link:focus-visible .project-card-copy {
  transform: translateY(0);
  opacity: 1;
  background: linear-gradient(180deg, transparent 8%, rgba(22, 18, 28, 0.88));
}

.project-card-link:hover .project-card-title,
.project-card-link:focus-visible .project-card-title {
  transform: translateY(0);
  opacity: 1;
}

.project-card-link:hover .project-card-meta,
.project-card-link:hover .project-card-scale,
.project-card-link:focus-visible .project-card-meta,
.project-card-link:focus-visible .project-card-scale {
  transform: translateY(0);
  opacity: 1;
}

.project-detail-page {
  min-height: 100vh;
  background: #f7f3ec;
  color: #2e2a27;
  padding-top: 2rem;
}

.project-detail-intro {
  padding: 6rem 0 3.25rem;
  text-align: center;
}

.project-detail-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.project-detail-location-block {
  margin-top: 2.8rem;
}

.detail-meta-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-meta-label-centered {
  text-align: center;
}

.project-detail-location {
  margin: 1rem 0 0;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}

.project-detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  margin: 0 auto 4rem;
  max-width: 105rem;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(46, 42, 39, 0.62);
}

.detail-meta-item {
  min-width: 0;
}

.detail-meta-value {
  margin: 1.2rem 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.project-block {
  max-width: 105rem;
  margin: 0 auto 3rem;
}

.project-detail-image-full,
.project-detail-image-half {
  display: block;
  width: 100%;
  object-fit: cover;
}

.project-detail-image-full {
  max-height: 62rem;
}

.project-block-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.project-detail-image-half {
  min-height: 32rem;
}

.project-block-text {
  padding: 2rem 0 3rem;
}

.project-block-text-intro {
  max-width: 56rem;
  text-align: center;
}

.project-detail-paragraph {
  margin: 0 auto 1.6rem;
  max-width: 42rem;
  font-size: 1.02rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.project-block-credits {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 46rem);
  gap: 2.5rem;
  align-items: start;
  min-height: 22rem;
}

.project-detail-credits-panel {
  grid-column: 2;
  padding-top: 1.25rem;
}

.detail-meta-line {
  padding-top: 1.6rem;
  border-top: 1px solid rgba(46, 42, 39, 0.62);
}

.project-detail-credit-heading {
  margin: 1.4rem 0 2.2rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.detail-meta-subsection {
  margin-top: 2.5rem;
}

.project-detail-credit-list p {
  margin: 1.2rem 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .projects-page,
  .services-page,
  .contact-page,
  .nosotros-showcase-page,
  .project-detail-page {
    padding-top: 0;
  }

  .contact-page {
    padding: 0 0 5rem;
  }

  .nosotros-showcase-page {
    padding: 0;
  }

  .about-page {
    padding: 1.5rem 1.25rem 4rem;
  }

  .about-page.nosotros-showcase-page {
    padding: 0;
  }

  .services-page {
    padding: 1.5rem 0 4rem;
  }

  .services-hero,
  .services-stack,
  .services-process-section,
  .services-extra-section,
  .services-cta {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .services-hero,
  .services-process-section,
  .services-extra-section,
  .services-feature,
  .services-feature.is-reversed {
    grid-template-columns: 1fr;
  }

  .services-hero {
    gap: 1.5rem;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .services-title,
  .services-feature-title,
  .services-process-title,
  .services-extra-title,
  .services-cta-title {
    max-width: none;
  }

  .services-title {
    font-size: clamp(3rem, 7vw, 4.4rem);
  }

  .services-lead {
    max-width: 32rem;
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .services-hero-media {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 13rem 9.5rem;
    min-height: 0;
  }

  .services-marquee {
    justify-content: flex-start;
    gap: 0.6rem;
    margin-bottom: 3rem;
    padding: 1rem 1.25rem 0;
  }

  .services-marquee span {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .services-marquee span + span::before {
    margin-right: 0.6rem;
  }

  .services-feature {
    gap: 1.2rem;
    padding: 0.8rem;
    border-radius: 1.25rem;
  }

  .services-feature-media,
  .services-feature.is-reversed .services-feature-media,
  .services-feature-copy,
  .services-feature.is-reversed .services-feature-copy {
    order: initial;
  }

  .services-feature-media {
    min-height: 13.5rem;
  }

  .services-feature-copy {
    padding: 0.1rem 0.15rem 0.35rem;
  }

  .services-feature-number,
  .services-process-step,
  .services-extra-index {
    font-size: 0.72rem;
  }

  .services-feature-title {
    font-size: clamp(2rem, 4.2vw, 3rem);
  }

  .services-feature-text,
  .services-process-text,
  .services-extra-lead,
  .services-extra-text {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .services-process-section,
  .services-extra-section {
    gap: 1.5rem;
    margin-top: 4rem;
  }

  .services-process-grid,
  .services-extra-grid {
    grid-template-columns: 1fr;
  }

  .services-process-card,
  .services-extra-card {
    padding: 1rem;
  }

  .services-process-card-title,
  .services-extra-card-title {
    font-size: 1.12rem;
  }

  .services-cta {
    margin-top: 4rem;
    padding-top: 2.5rem;
    padding-bottom: 1rem;
  }

  .about-hero {
    min-height: auto;
    padding: 2.5rem 0 4rem;
  }

  .about-nav-grid,
  .about-services-grid,
  .about-why-grid,
  .about-clients-grid,
  .about-studio-section,
  .nosotros-showcase-hero,
  .nosotros-showcase-stats,
  .nosotros-showcase-profile-section,
  .nosotros-showcase-values,
  .nosotros-editorial-hero,
  .nosotros-sectors-grid,
  .nosotros-workflow-grid,
  .nosotros-collaborators-grid {
    grid-template-columns: 1fr;
  }

  .about-studio-section {
    gap: 2rem;
  }

  .about-studio-image {
    min-height: 24rem;
  }

  .about-team-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nosotros-editorial-hero {
    padding: 5rem 0 3rem;
    gap: 2.25rem;
  }

  .nosotros-showcase-header {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 0;
    padding: 1.4rem 1.25rem 0;
  }

  .nosotros-showcase-hero,
  .nosotros-showcase-stats,
  .nosotros-showcase-profile-section,
  .nosotros-showcase-values,
  .nosotros-showcase-cta {
    width: min(100%, 1180px);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .nosotros-showcase-hero {
    gap: 2.2rem;
    padding-top: 1rem;
  }

  .nosotros-showcase-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .nosotros-showcase-hero-image {
    aspect-ratio: 1 / 1;
  }

  .nosotros-showcase-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(46, 42, 39, 0.1);
    padding: 1.6rem 0 1.8rem;
    min-height: auto;
  }

  .nosotros-showcase-stat:last-child {
    border-bottom: 0;
  }

  .nosotros-showcase-profile-section {
    gap: 2rem;
    padding-top: 3rem;
  }

  .nosotros-showcase-profile-photo {
    max-width: none;
  }

  .nosotros-showcase-values {
    gap: 2rem;
  }

  .nosotros-editorial-image {
    min-height: 22rem;
  }

  .nosotros-editorial-panel {
    max-width: none;
  }

  .nosotros-editorial-intro {
    display: none;
  }

  .nosotros-editorial-intro-mobile {
    display: block;
    max-width: none;
  }

  .nosotros-editorial-left {
    justify-self: stretch;
    width: 100%;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.25rem 4rem;
  }

  .site-footer-mark {
    justify-content: flex-start;
    min-height: auto;
  }

  .projects-page {
    padding: 0 0 3rem;
  }

  .projects-header {
    grid-template-columns: 1fr;
    align-items: center;
    padding: 1.4rem 1.25rem 0;
  }

  .projects-page,
  .services-page,
  .contact-page,
  .nosotros-showcase-page,
  .project-detail-page {
    padding-top: 0;
  }

  .site-social-rail {
    right: 0.85rem;
    gap: 0.65rem;
  }

  .site-social-rail-link {
    width: 2.8rem;
    height: 2.8rem;
  }

  .projects-intro {
    padding: 9rem 1.25rem 3rem;
  }

  .projects-kicker {
    font-size: 1.55rem;
    letter-spacing: -0.04em;
  }

  .projects-tagline {
    margin-top: 4rem;
    max-width: 19rem;
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .projects-filters {
    justify-content: center;
    gap: 0.5rem;
    padding: 0 0.75rem 0.2rem;
    margin-bottom: 2.8rem;
  }

  .projects-filter {
    border: 1px solid rgba(46, 42, 39, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    min-height: 0;
    padding: 0.62rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0.4rem 1rem rgba(46, 42, 39, 0.05);
  }

  .projects-filter-values {
    width: 100%;
    justify-content: center;
    gap: 0.12rem 0.32rem;
    padding-right: 0;
    flex-wrap: wrap;
  }

  .projects-filter-token {
    font-size: 0.7rem;
    line-height: 1;
    white-space: normal;
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.25rem;
    padding: 0 1.25rem;
  }

  .project-card-link.is-emphasized {
    margin-top: 3.5rem;
  }

  .project-card {
    min-height: auto;
    background: transparent;
  }

  .project-card::before,
  .project-card-copy {
    display: none;
  }

  .project-card-image {
    min-height: 0;
    height: auto;
    aspect-ratio: 0.78 / 1;
  }

  .projects-grid .project-card-link:nth-child(2n) .project-card-image {
    aspect-ratio: 1 / 0.72;
  }

  .project-detail-page {
    padding: 0 1.25rem 3rem;
  }

  .project-detail-intro {
    padding: 4.5rem 0 2.5rem;
  }

  .project-detail-meta-grid,
  .project-block-pair,
  .project-block-credits {
    grid-template-columns: 1fr;
  }

  .project-detail-credits-panel {
    grid-column: auto;
  }
}

.admin-page {
  min-height: 100vh;
  background: #f7f3ec;
  color: #2e2a27;
  padding: 2rem;
}

.admin-auth-page {
  display: grid;
  place-items: center;
}

.admin-auth-card {
  width: min(100%, 28rem);
  padding: 2rem;
  border: 1px solid rgba(46, 42, 39, 0.16);
  background: rgba(255, 255, 255, 0.45);
}

.admin-auth-title,
.admin-editor-title,
.admin-sidebar-title {
  margin: 0 0 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

.admin-shell {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1.2fr) minmax(24rem, 0.9fr);
  gap: 2rem;
}

.admin-sidebar,
.admin-editor,
.admin-preview-panel {
  padding: 1.5rem;
  border: 1px solid rgba(46, 42, 39, 0.14);
  background: rgba(255, 255, 255, 0.38);
}

.admin-project-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.admin-section-switcher {
  margin-bottom: 1.5rem;
}

.admin-project-item {
  text-align: left;
  border: 1px solid rgba(46, 42, 39, 0.12);
  background: transparent;
  padding: 0.9rem 1rem;
  color: inherit;
  cursor: pointer;
}

.admin-project-item.is-active {
  background: rgba(46, 42, 39, 0.06);
}

.admin-project-item small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(46, 42, 39, 0.62);
}

.admin-form {
  display: grid;
  gap: 1rem;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.admin-field {
  display: grid;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-field input,
.admin-field textarea {
  width: 100%;
  border: 1px solid rgba(46, 42, 39, 0.18);
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.75);
  color: inherit;
  font: 400 0.95rem/1.5 "Montserrat", sans-serif;
  text-transform: none;
  letter-spacing: normal;
}

.admin-field small {
  color: rgba(46, 42, 39, 0.58);
  font-size: 0.72rem;
  text-transform: none;
}

.admin-button {
  border: 0;
  background: #2e2a27;
  color: #f7f3ec;
  padding: 0.95rem 1.1rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-button-secondary,
.admin-button-ghost {
  background: transparent;
  color: #2e2a27;
  border: 1px solid rgba(46, 42, 39, 0.16);
}

.admin-button-ghost {
  margin-top: 0.75rem;
}

.admin-button-danger {
  background: #8b3a32;
}

.admin-checkboxes {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.admin-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  text-transform: none;
  letter-spacing: normal;
}

.admin-message,
.admin-error {
  margin: 0;
  font-size: 0.86rem;
}

.admin-error {
  color: #8f2e2e;
}

.admin-block-toolbar,
.admin-block-actions,
.admin-editor-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-block-list {
  display: grid;
  gap: 1rem;
}

.admin-block-card {
  border: 1px solid rgba(46, 42, 39, 0.14);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.42);
}

.admin-block-card.is-dragging {
  opacity: 0.6;
}

.admin-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-block-note {
  margin: 0;
  color: rgba(46, 42, 39, 0.62);
  font-size: 0.84rem;
}

.admin-inline-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: #8b3a32;
  padding: 0;
  text-align: left;
  font: inherit;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.admin-preview-surface {
  display: grid;
  gap: 1.25rem;
}

.admin-preview-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.admin-preview-location {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-preview-meta {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(46, 42, 39, 0.14);
  font-size: 0.82rem;
  color: rgba(46, 42, 39, 0.78);
}

.admin-preview-hero,
.admin-preview-full,
.admin-preview-half {
  display: block;
  width: 100%;
  object-fit: cover;
}

.admin-preview-hero,
.admin-preview-full {
  min-height: 14rem;
  max-height: 22rem;
}

.admin-preview-text,
.admin-preview-text-block {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(46, 42, 39, 0.86);
}

.admin-preview-blocks {
  display: grid;
  gap: 1rem;
}

.admin-about-preview-gallery {
  display: grid;
  gap: 1rem;
}

.admin-about-preview-card {
  display: grid;
  gap: 0.5rem;
}

.admin-preview-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.admin-preview-half {
  min-height: 11rem;
}

.admin-preview-placeholder,
.admin-preview-credits {
  display: grid;
  place-items: center;
  min-height: 10rem;
  background: rgba(46, 42, 39, 0.06);
  color: rgba(46, 42, 39, 0.58);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .admin-page {
    padding: 1.25rem;
  }

  .admin-shell,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-block-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .services-page {
    overflow-x: hidden;
  }

  .services-hero,
  .services-process-section,
  .services-extra-section {
    display: block;
  }

  .services-hero {
    padding-top: 6.25rem;
    padding-bottom: 2.4rem;
  }

  .services-hero-copy {
    justify-items: center;
    text-align: center;
  }

  .services-kicker,
  .services-title,
  .services-lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .services-title {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    line-height: 0.92;
  }

  .services-lead,
  .services-feature-text,
  .services-process-text,
  .services-extra-lead,
  .services-extra-text {
    font-size: 0.88rem;
    line-height: 1.68;
  }

  .services-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .services-hero-pills {
    justify-content: center;
    gap: 0.65rem;
  }

  .services-hero-pill {
    padding: 0.72rem 0.88rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .services-hero-media {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.85rem;
    margin-top: 1.35rem;
  }

  .services-hero-card-top,
  .services-hero-card-bottom {
    display: none;
  }

  .services-hero-card-tall {
    min-height: 18rem;
  }

  .services-marquee {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
  }

  .services-marquee span {
    justify-content: center;
    font-size: 0.72rem;
  }

  .services-marquee span + span::before {
    display: none;
  }

  .services-feature,
  .services-feature.is-reversed {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.85rem;
  }

  .services-feature-copy {
    order: 1;
    display: block;
    padding: 0;
  }

  .services-feature-number {
    display: block;
    margin-bottom: 0.6rem;
  }

  .services-feature-title {
    margin-bottom: 0.7rem;
    font-size: clamp(1.75rem, 9.5vw, 2.5rem);
    line-height: 0.95;
  }

  .services-feature-media,
  .services-feature.is-reversed .services-feature-media {
    order: 2;
    min-height: 11.5rem;
    margin-top: 0.9rem;
  }

  .services-process-head,
  .services-extra-copy {
    margin-bottom: 1.25rem;
  }

  .services-process-title,
  .services-extra-title,
  .services-cta-title {
    font-size: clamp(2.1rem, 11vw, 3rem);
    line-height: 0.95;
  }

  .services-process-grid,
  .services-extra-grid {
    gap: 0.9rem;
  }

  .services-process-card,
  .services-extra-card {
    padding: 0.92rem;
    border-radius: 1.05rem;
  }

  .services-process-card-title,
  .services-extra-card-title {
    font-size: 1rem;
    line-height: 1.2;
  }

  .services-cta-link {
    width: 100%;
    max-width: 21rem;
  }
}
