﻿:root {
  --bg: #080806;
  --ink: #fafafa;
  --muted: #ffffff;
  --accent: hsl(59, 100%, 50%);
  --line: rgba(255, 255, 255, 0.18);
  --shade: rgba(0, 0, 0, 0.42);
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transform: translateX(clamp(-18px, -1.1vw, -8px));
}

.brand-group {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(8px, 1vw, 12px);
  line-height: 0;
}

.brand img {
  display: block;
  width: clamp(90px, 12vw, 160px);
  height: auto;
  object-fit: contain;
}

.partner-header-logo {
  display: block;
  width: clamp(50px, 5vw, 76px);
  height: auto;
  margin-left: clamp(16px, 2.2vw, 28px);
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 241, 231, 0.26);
  background: rgba(8, 8, 6, 0.7);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.language-switch button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.language-switch button.is-active,
.language-switch button:hover {
  color: var(--accent);
}

.nav-links {
  position: relative;
  display: flex;
  gap: clamp(14px, 3vw, 36px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-indicator {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: var(--nav-indicator-width, 0px);
  height: 2px;
  background: var(--accent);
  opacity: var(--nav-indicator-opacity, 0);
  transform: translate3d(var(--nav-indicator-x, 0px), 0, 0);
  transition:
    transform 240ms cubic-bezier(0.22, 0.61, 0.36, 1),
    width 240ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 120ms ease;
  pointer-events: none;
}

.nav-item {
  position: relative;
}

.has-submenu::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 18px;
}

.project-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 190px;
  display: grid;
  gap: 8px;
  padding: 13px 14px;
  background: rgba(8, 8, 6, 0.92);
  border: 1px solid rgba(246, 241, 231, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.project-submenu a {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  white-space: nowrap;
}

.project-submenu a:hover {
  color: var(--accent);
}

.has-submenu:hover .project-submenu,
.has-submenu:focus-within .project-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0);
}

.nav-links a,
.text-link,
.footer-info a {
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.nav-links a:hover,
.text-link:hover,
.footer-info a:hover {
  color: var(--accent);
}

.service-preview-button {
  display: inline-flex;
  margin-top: 22px;
}

.services-page {
  background: #080806;
}

.services-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: clip;
  isolation: isolate;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) brightness(0.86);
  transform: scale(1.04);
}

.services-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.92), rgba(8, 8, 6, 0.58) 44%, rgba(8, 8, 6, 0.18)),
    linear-gradient(0deg, rgba(8, 8, 6, 0.92), rgba(8, 8, 6, 0.08) 55%);
}

.services-hero-content {
  width: min(1680px, calc(100% - clamp(40px, 10vw, 160px)));
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(460px, 1.1fr);
  align-items: start;
  gap: clamp(32px, 6vw, 96px);
  padding: 32vh 0 13vh;
  margin-inline: clamp(20px, 6vw, 96px);
}

.services-hero-copy {
  min-width: 0;
}

.services-hero-content h1,
.services-strip h2,
.services-feature-copy h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(42px, 7vw, 104px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.services-hero-content h1 {
  font-size: clamp(36px, 5.4vw, 78px);
  line-height: 0.95;
}

.services-hero-content p:not(.eyebrow),
.services-feature-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(250, 250, 250, 0.82);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}

.services-hero .hero-button {
  display: flex;
  width: max-content;
  min-width: 190px;
  justify-content: center;
  margin: 34px auto 0;
  border: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 16px 28px;
  background: var(--accent);
  color: #080806;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.services-hero .hero-button::after {
  content: none;
}

.services-hero .hero-button:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-1px);
}

.services-hero-video {
  aspect-ratio: 16 / 9;
  width: min(100%, 860px);
  justify-self: end;
  margin-top: 0;
  background: transparent;
  border: 0;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

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

.services-strip {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 7vw, 112px);
  padding: clamp(78px, 10vw, 132px) clamp(20px, 6vw, 96px) clamp(46px, 6vw, 82px);
  border-top: 1px solid rgba(246, 241, 231, 0.14);
  background: url("servicios/assets/stb.jpg") center 42% / cover no-repeat;
  overflow: hidden;
}

.services-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.82), rgba(8, 8, 6, 0.48)),
    linear-gradient(180deg, rgba(8, 8, 6, 0.3), rgba(8, 8, 6, 0.72));
}

.services-strip h2,
.services-feature-copy h2 {
  font-size: clamp(34px, 5.6vw, 78px);
}

.services-strip h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.7vw, 54px);
  line-height: 1.04;
}

.service-grid {
  --service-card-height: clamp(360px, 27.5vw, 498px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: var(--service-card-height);
  border-top: 1px solid rgba(246, 241, 231, 0.16);
  border-bottom: 1px solid rgba(246, 241, 231, 0.16);
}

.service-card {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid rgba(246, 241, 231, 0.16);
  border-bottom: 1px solid rgba(246, 241, 231, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    #0d0d09;
  overflow: hidden;
}

.service-card-button {
  align-self: center;
  min-width: 112px;
  display: inline-flex;
  justify-content: center;
  margin-top: 4px;
  border: 1px solid var(--accent);
  padding: 10px 16px;
  background: transparent;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.service-card-button:hover {
  background: var(--accent);
  color: #080806;
  transform: translateY(-1px);
}

.service-card-button.is-disabled {
  cursor: default;
  pointer-events: none;
}

.service-card:nth-child(3n) {
  border-right: 0;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--service-card-bg, none) center / cover no-repeat;
  opacity: var(--service-card-bg-opacity, 0);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 8, 6, 0.3), rgba(8, 8, 6, 0.58)),
    linear-gradient(90deg, rgba(8, 8, 6, 0.46), rgba(8, 8, 6, 0.08));
  opacity: var(--service-card-overlay-opacity, 0);
}

.service-card-stb {
  --service-card-bg: url("servicios/assets/wini.gif");
  --service-card-bg-opacity: 1;
  --service-card-overlay-opacity: 1;
  background: #0d0d09;
}

.service-card-grafica {
  --service-card-bg: url("servicios/assets/grafica-arte-bg.png");
  --service-card-bg-opacity: 1;
  --service-card-overlay-opacity: 1;
  background: #0d0d09;
}

.service-card-redes {
  --service-card-bg: url("servicios/assets/redes-sociales-bg.gif");
  --service-card-bg-opacity: 1;
  --service-card-overlay-opacity: 1;
  background: #0d0d09;
}

.service-card-marketing {
  --service-card-bg: url("servicios/assets/marketing-animado-bg.gif");
  --service-card-bg-opacity: 1;
  --service-card-overlay-opacity: 1;
  background: #0d0d09;
}

.service-card-ia {
  --service-card-bg: url("servicios/assets/ia-asistida-bg.gif");
  --service-card-bg-opacity: 1;
  --service-card-overlay-opacity: 1;
  background: #0d0d09;
}

.service-card-consultoria {
  --service-card-bg: url("servicios/assets/consultoria-ip-bg.jpg");
  --service-card-bg-opacity: 1;
  --service-card-overlay-opacity: 1;
  background: #0d0d09;
}

.service-card > span {
  display: none;
}

.process-item span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.service-card h2 {
  margin: auto 0 0;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}

.service-card p,
.process-item p {
  margin: 0;
  color: rgba(250, 250, 250, 0.74);
  font-size: 15px;
  line-height: 1.55;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(246, 241, 231, 0.14);
}

.services-feature {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: clip;
  isolation: isolate;
  padding: clamp(86px, 12vw, 160px) clamp(20px, 6vw, 96px);
}

.services-feature img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.7);
}

.services-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.84), rgba(8, 8, 6, 0.44) 54%, rgba(8, 8, 6, 0.18)),
    linear-gradient(0deg, rgba(8, 8, 6, 0.88), rgba(8, 8, 6, 0.06));
}

.services-feature-copy {
  width: min(820px, 100%);
}

.services-footer {
  border-top: 1px solid rgba(246, 241, 231, 0.16);
}


.hero,
.project {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: clip;
  isolation: isolate;
}

.project + .project {
  margin-top: -7svh;
}

.hero-video,
.project-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  background: #000000;
}

.project-bg {
  background: #17130c;
}

.project-bg {
  transform: translate3d(0, var(--project-bg-y, 0px), 0) scale(1.06);
  will-change: transform;
}

.media-shade,
.project::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.30), var(--shade) 48%, rgba(0, 0, 0, 0.22));
}

.hero-content,
.project-content,
.intro-inner,
.footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.hero-content,
.project-content {
  padding-block: 22vh 12vh;
  will-change: transform;
}

.hero-content {
  transform: translate3d(0, var(--hero-text-y, 0px), 0);
}

.project-content {
  transform: translate3d(0, var(--project-text-y, 0px), 0);
}

.hero .eyebrow:empty {
  display: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  max-width: 820px;
  font-family: "Poppins", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 8vw, 110px);
}

h2 {
  font-size: clamp(54px, 5vw, 90px);
}

.hero-copy,
.project-copy,
.intro p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.project-detail {
  min-height: 100svh;
}

.project-detail h1 {
  max-width: none;
  white-space: nowrap;
}

.project-detail .project-content {
  transform: translate3d(0, var(--detail-text-y, 0px), 0);
  will-change: transform;
}

.detail-back {
  margin-top: 18px;
}

.hero .hero-button,
.project-detail .action-button {
  min-width: 210px;
  justify-content: center;
  border: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 16px 28px;
  background: var(--accent);
  color: #080806;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.hero .hero-button::after,
.project-detail .action-button::after {
  content: none;
}

.hero .hero-button:hover,
.project-detail .action-button:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-1px);
}

.detail-columns {
  display: grid;
  grid-template-columns: minmax(420px, 1.45fr) minmax(240px, 0.8fr) minmax(300px, 0.75fr);
  gap: clamp(24px, 3.4vw, 46px);
  max-width: 1240px;
  margin-top: clamp(26px, 4vw, 48px);
}

.detail-columns h2 {
  margin-bottom: 14px;
  color: var(--accent);
  font-family: "Poppins", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
}

.detail-columns p {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.32;
}

.project-logline {
  font-weight: 700;
}

.project-logline + p {
  margin-top: 1rem;
}

.detail-columns strong {
  color: var(--ink);
  font-weight: 800;
}

.detail-tech-logo {
  display: block;
  width: clamp(86px, 8vw, 132px);
  height: auto;
  margin: clamp(18px, 2vw, 26px) auto 0;
  object-fit: contain;
}

.detail-people {
  align-self: start;
  min-width: 300px;
}

.detail-people-grid {
  display: grid;
  grid-template-columns: repeat(2, 133px);
  gap: 28px;
  max-width: 330px;
}

.detail-person {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.detail-person > img {
  display: block;
  width: 133px;
  height: 133px;
  aspect-ratio: 1;
  border: 1px solid rgba(246, 241, 231, 0.18);
  object-fit: cover;
  background: #111;
}

.detail-person-info {
  display: grid;
  gap: 2px;
  text-align: center;
}

.detail-person-info h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.detail-person-info p {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.detail-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.detail-person a,
.detail-social-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #d8d8d8;
}

.detail-person a {
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.detail-person a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.detail-person a img,
.detail-social-icon img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.project-video-guay .detail-columns,
.project-pequeno-picasso .detail-columns {
  grid-template-columns: minmax(220px, 0.85fr) minmax(230px, 0.78fr) minmax(402px, 402px);
  gap: clamp(18px, 2vw, 28px);
  max-width: min(1280px, calc(100vw - 56px));
}

.project-video-guay .detail-people,
.project-pequeno-picasso .detail-people {
  min-width: 402px;
}

.project-video-guay .detail-people-grid,
.project-pequeno-picasso .detail-people-grid {
  grid-template-columns: repeat(3, 116px);
  gap: 20px;
  max-width: 402px;
}

.project-video-guay .detail-person,
.project-pequeno-picasso .detail-person {
  grid-template-rows: 94px 42px 32px;
  align-items: start;
  gap: 8px;
}

.project-video-guay .detail-person > img,
.project-pequeno-picasso .detail-person > img {
  width: 94px;
  height: 94px;
}

.project-video-guay .detail-person-info h3,
.project-pequeno-picasso .detail-person-info h3 {
  font-size: 11.5px;
  line-height: 1.2;
  white-space: normal;
}

.project-video-guay .detail-person-info p,
.project-pequeno-picasso .detail-person-info p {
  font-size: 10px;
}

.project-video-guay .detail-socials,
.project-pequeno-picasso .detail-socials {
  align-self: end;
  min-height: 32px;
}

.project-video-guay .detail-person a,
.project-video-guay .detail-social-icon,
.project-pequeno-picasso .detail-person a,
.project-pequeno-picasso .detail-social-icon {
  width: 32px;
  height: 32px;
}

.project-video-guay .detail-person a img,
.project-video-guay .detail-social-icon img,
.project-pequeno-picasso .detail-person a img,
.project-pequeno-picasso .detail-social-icon img {
  width: 15px;
  height: 15px;
}

.detail-project-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  width: 294px;
  max-width: 100%;
  margin-top: 16px;
}

.detail-project-links a {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #d8d8d8;
  color: #080806;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  overflow: hidden;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.detail-project-links a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.project-social-icon {
  display: block;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.detail-project-links img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  transform: scale(1.16);
}

.detail-gallery-section {
  position: relative;
  min-height: 60svh;
  display: grid;
  align-items: center;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(8, 8, 6, 0.78), rgba(8, 8, 6, 0.84)),
    var(--gallery-bg, url("assets/images/subpages/cocina-gallery-09.png")) center / cover no-repeat;
  padding-block: clamp(10px, 5vw, 40px) clamp(90px, 13vw, 150px);
}

.detail-gallery-inner {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  transform: translate3d(0, var(--gallery-text-y, 0px), 0);
  will-change: transform;
}

.gallery-copy {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.gallery-copy .eyebrow {
  color: var(--accent);
  font-family: "Poppins", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  text-transform: none;
}

.project-gallery {
  display: grid;
  grid-template-columns: minmax(210px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: stretch;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  height: 100%;
  align-content: space-between;
}

.gallery-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid rgba(246, 241, 231, 0.16);
  background: #111;
  cursor: pointer;
  padding: 0;
}

.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 6, 0.18);
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-thumb img,
.gallery-preview img {
  display: block;
  width: calc(100% + var(--gallery-bleed, 0px));
  height: calc(100% + var(--gallery-bleed, 0px));
  margin: var(--gallery-bleed-offset, 0px);
  object-fit: cover;
}

.gallery-thumb img {
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.gallery-thumb span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(8, 8, 6, 0.78);
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  border-color: var(--accent);
}

.gallery-thumb:hover::after {
  opacity: 1;
}

.gallery-thumb:hover img {
  filter: blur(1.4px) brightness(0.86);
  transform: scale(1.045);
}

.gallery-thumb:hover span {
  transform: scale(1.08);
}

.gallery-preview {
  position: relative;
  margin: 0;
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(246, 241, 231, 0.18);
  background: #111;
  overflow: hidden;
}

.gallery-preview img {
  animation-duration: 360ms;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-fill-mode: both;
}

.gallery-preview.is-sliding-next img {
  animation-name: gallerySlideNext;
}

.gallery-preview.is-sliding-prev img {
  animation-name: gallerySlidePrev;
}

.detail-gallery-section.is-moodboard {
  min-height: 100svh;
  padding-block: clamp(56px, 8vw, 110px);
}

.detail-gallery-section.is-fullwidth {
  min-height: 100svh;
  padding-block: 0;
}

.gallery-moodboard {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, clamp(116px, 12vw, 190px));
  gap: 0;
}

.detail-gallery-section.is-fullwidth .detail-gallery-inner {
  min-height: 100svh;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  width: 100%;
  transform: none;
  will-change: auto;
}

.detail-gallery-section.is-fullwidth .gallery-copy {
  display: none;
  width: min(1120px, calc(100% - 40px));
  margin-bottom: clamp(16px, 2vw, 28px);
  margin-inline: auto;
}

.detail-gallery-section.is-fullwidth .gallery-moodboard {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 74svh, 820px);
  grid-template-columns: repeat(24, minmax(0, 1fr));
  grid-template-rows: repeat(12, minmax(0, 1fr));
}

.detail-gallery-section.is-fullwidth .gallery-mood-item:nth-child(1) {
  grid-column: 1 / 7;
  grid-row: 1 / 7;
}

.detail-gallery-section.is-fullwidth .gallery-mood-item:nth-child(2) {
  grid-column: 7 / 13;
  grid-row: 1 / 4;
}

.detail-gallery-section.is-fullwidth .gallery-mood-item:nth-child(3) {
  grid-column: 13 / 18;
  grid-row: 1 / 6;
}

.detail-gallery-section.is-fullwidth .gallery-mood-item:nth-child(4) {
  grid-column: 18 / 25;
  grid-row: 1 / 4;
}

.detail-gallery-section.is-fullwidth .gallery-mood-item:nth-child(5) {
  grid-column: 7 / 13;
  grid-row: 4 / 8;
}

.detail-gallery-section.is-fullwidth .gallery-mood-item:nth-child(6) {
  grid-column: 13 / 18;
  grid-row: 6 / 9;
}

.detail-gallery-section.is-fullwidth .gallery-mood-item:nth-child(7) {
  grid-column: 18 / 25;
  grid-row: 4 / 9;
}

.detail-gallery-section.is-fullwidth .gallery-mood-item:nth-child(8) {
  grid-column: 1 / 7;
  grid-row: 7 / 13;
}

.detail-gallery-section.is-fullwidth .gallery-mood-item:nth-child(9) {
  grid-column: 7 / 13;
  grid-row: 8 / 13;
}

.detail-gallery-section.is-fullwidth .gallery-mood-item:nth-child(10) {
  grid-column: 13 / 16;
  grid-row: 9 / 13;
}

.detail-gallery-section.is-fullwidth .gallery-mood-item:nth-child(11) {
  grid-column: 16 / 20;
  grid-row: 9 / 13;
}

.detail-gallery-section.is-fullwidth .gallery-mood-item:nth-child(12) {
  grid-column: 20 / 25;
  grid-row: 9 / 13;
}

.gallery-mood-item {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 231, 0.16);
  background: #111;
  cursor: pointer;
  padding: 0;
}

.gallery-mood-item:nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}

.gallery-mood-item:nth-child(2) {
  grid-column: 4 / 7;
  grid-row: 1 / 2;
}

.gallery-mood-item:nth-child(3) {
  grid-column: 7 / 10;
  grid-row: 1 / 2;
}

.gallery-mood-item:nth-child(4) {
  grid-column: 10 / 13;
  grid-row: 1 / 2;
}

.gallery-mood-item:nth-child(5) {
  grid-column: 4 / 6;
  grid-row: 2 / 3;
}

.gallery-mood-item:nth-child(6) {
  grid-column: 6 / 9;
  grid-row: 2 / 3;
}

.gallery-mood-item:nth-child(7) {
  grid-column: 9 / 13;
  grid-row: 2 / 3;
}

.gallery-mood-item:nth-child(8) {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
}

.gallery-mood-item:nth-child(9) {
  grid-column: 3 / 5;
  grid-row: 3 / 4;
}

.gallery-mood-item:nth-child(10) {
  grid-column: 5 / 8;
  grid-row: 3 / 4;
}

.gallery-mood-item:nth-child(11) {
  grid-column: 8 / 10;
  grid-row: 3 / 4;
}

.gallery-mood-item:nth-child(12) {
  grid-column: 10 / 13;
  grid-row: 3 / 4;
}

.gallery-mood-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 6, 0.2);
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-mood-item img {
  display: block;
  width: calc(100% + var(--gallery-bleed, 0px));
  height: calc(100% + var(--gallery-bleed, 0px));
  margin: var(--gallery-bleed-offset, 0px);
  object-fit: cover;
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.gallery-mood-item span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(8, 8, 6, 0.78);
  color: var(--accent);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease;
}

.gallery-mood-item:hover {
  border-color: var(--accent);
}

.gallery-mood-item:hover::after {
  opacity: 1;
}

.gallery-mood-item:hover img {
  filter: blur(1.1px) brightness(0.9);
  transform: scale(1.035);
}

.gallery-mood-item:hover span {
  transform: scale(1.08);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  transition: opacity 210ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
}

.gallery-lightbox.is-closing {
  opacity: 0;
}

.gallery-lightbox figure {
  width: min(1120px, 92vw);
  margin: 0;
  transform: translate3d(0, 10px, 0) scale(0.96);
  opacity: 0;
  transition:
    opacity 220ms ease,
    transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gallery-lightbox.is-open figure {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

.gallery-lightbox.is-closing figure {
  transform: translate3d(0, 6px, 0) scale(0.98);
  opacity: 0;
}

.gallery-lightbox img {
  display: block;
  width: 100%;
  max-height: 84svh;
  border: 1px solid rgba(246, 241, 231, 0.2);
  object-fit: contain;
  background: #080806;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox img.is-sliding-next {
  animation: gallerySlideNext 360ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.gallery-lightbox img.is-sliding-prev {
  animation: gallerySlidePrev 360ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.gallery-lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(246, 241, 231, 0.22);
  border-radius: 999px;
  background: rgba(8, 8, 6, 0.72);
  color: var(--accent);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.gallery-lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(44px, 4vw, 58px);
  height: clamp(44px, 4vw, 58px);
  padding: 0;
  border: 1px solid rgba(246, 241, 231, 0.28);
  border-radius: 999px;
  background: rgba(8, 8, 6, 0.68);
  color: var(--accent);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.gallery-lightbox-nav::before {
  content: "";
  display: block;
  width: 30%;
  height: 30%;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.gallery-lightbox-nav:hover {
  background: var(--accent);
  color: #080806;
  transform: translateY(-50%) scale(1.04);
}

.gallery-lightbox-prev {
  left: clamp(14px, 3vw, 44px);
}

.gallery-lightbox-prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.gallery-lightbox-next {
  right: clamp(14px, 3vw, 44px);
}

.gallery-lightbox-next::before {
  transform: translateX(-2px) rotate(45deg);
}

.has-gallery-lightbox {
  overflow: hidden;
}

@keyframes gallerySlideNext {
  from {
    opacity: 0.25;
    transform: translate3d(42px, 0, 0) scale(1.015);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes gallerySlidePrev {
  from {
    opacity: 0.25;
    transform: translate3d(-42px, 0, 0) scale(1.015);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.video-section {
  min-height: 80svh;
  display: grid;
  align-items: center;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(8, 8, 6, 0.80), rgba(8, 8, 6, 0.88)),
    var(--video-bg, url("assets/images/subpages/cocina-gallery-08.png")) center / cover no-repeat;
  padding-block: clamp(50px, 9vw, 50px);
}

.video-inner {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  transform: translate3d(0, var(--video-text-y, 0px), 0);
  will-change: transform;
}

.video-inner h2 {
  max-width: none;
  margin-bottom: clamp(26px, 4vw, 44px);
  font-size: clamp(34px, 5vw, 68px);
}

.video-box {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(246, 241, 231, 0.18);
  background: #080806;
  overflow: hidden;
}

.video-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  margin-top: 18px;
  min-width: 210px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  min-height: 52px;
  padding: 0 28px;
  background: var(--accent);
  color: #080806 !important;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.video-fallback::after {
  content: none !important;
}

.video-fallback:hover {
  background: transparent;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.detail-footer {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px 26px;
  padding: 24px 20px;
  border-top: 1px solid var(--line);
  background: #080806;
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 17px);
  text-align: center;
}

.detail-footer a,
.detail-footer span {
  white-space: nowrap;
}

.detail-footer a {
  transition: color 180ms ease;
}

.detail-footer a:hover {
  color: var(--accent);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  color: var(--ink);
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 800;
  text-transform: uppercase;
}

.text-link::after {
  content: "->";
  color: var(--accent);
  font-size: 1.18em;
  line-height: 1;
}

.project-content .project-button {
  min-width: 210px;
  justify-content: center;
  margin-top: 32px;
  border: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 16px 28px;
  background: var(--accent);
  color: #080806;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.project-content .project-button::after {
  content: none;
}

.project-content .project-button:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-1px);
}

.intro {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  min-height: auto;
  border-block: 1px solid var(--line);
  padding-block: clamp(42px, 6vw, 72px);
  background: var(--bg);
}

.intro::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 0;
  background:
    linear-gradient(rgba(8, 8, 6, 0.68), rgba(8, 8, 6, 0.76)),
    url("assets/images/winnipeg_fondo_2.jpg") center / 100% auto no-repeat;
  transform: translate3d(0, var(--intro-bg-y, 0px), 0);
  will-change: transform;
}

.intro .eyebrow {
  font-size: clamp(20px, 2vw, 28px);
}

.intro-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  transform: translate3d(0, var(--intro-text-y, 0px), 0);
  will-change: transform;
}

.intro-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
  text-align: left;
}

.intro-copy {
  display: grid;
  justify-items: start;
}

.intro-copy .eyebrow {
  margin-bottom: 16px;
}

.intro-copy h2,
.intro-copy p:not(.eyebrow) {
  margin-inline: 0;
}

.intro-copy p:not(.eyebrow) {
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.38;
}

.intro-copy .text-link {
  margin-top: 24px;
}

.intro-copy .service-preview-button {
  min-width: 210px;
  justify-content: center;
  justify-self: center;
  margin-top: 28px;
  border: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 16px 28px;
  background: var(--accent);
  color: #080806;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.intro-copy .service-preview-button::after {
  content: none;
}

.intro-copy .service-preview-button:hover {
  border-color: var(--accent);
  background: transparent;
  color: #ffffff;
  transform: translateY(-1px);
}

.footer .eyebrow {
  font-size: clamp(20px, 2vw, 28px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(32px, 5vw, 56px);
  width: 100%;
}

.team-card {
  min-height: 340px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 22px;
  padding: 38px 24px 32px;
  border: 1px solid rgba(227, 224, 0, 0.16);
  background: rgba(24, 24, 24, 0.86);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.team-photo {
  width: clamp(130px, 12vw, 170px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(227, 224, 0, 0.42);
  filter: grayscale(1);
}

.team-info h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 600;
}

.team-info p {
  margin: 0px 0 0;
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
}

.team-links {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.team-links a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #d8d8d8;
  color: #080806;
  font-size: 11px;
  font-weight: 900;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.team-links a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.team-links img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.project {
  border-top: 1px solid var(--line);
}

.project-right .project-content {
  width: min(620px, calc(100% - 40px));
  margin-left: auto;
  margin-right: max(20px, calc((100% - 1240px) / 2));
  text-align: left;
}

.project-right .project-copy {
  margin-left: 0;
}

.project-right .project-meta,
.project-right .project-actions {
  justify-content: flex-start;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 800;
  text-transform: uppercase;
}

.project-index {
  color: var(--muted);
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.partners {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: #080806;
}

.partners::before {
  content: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.partners-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(52px, 7vw, 96px);
  align-items: center;
  padding-block: clamp(54px, 7vw, 92px);
  transform: translate3d(0, var(--partners-text-y, 0px), 0);
  will-change: transform;
}

.partners-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 56%;
  background: #080806;
  transform: translate(-50%, -50%);
}

.partners-block + .partners-block {
  margin-top: clamp(34px, 5vw, 62px);
}

.partners-column-side {
  padding-left: clamp(32px, 5vw, 70px);
}

.partners h2 {
  max-width: none;
  margin-bottom: clamp(12px, 1.6vw, 20px);
  color: #080806;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1;
  text-align: center;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.partners-column-main .partner-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  justify-items: center;
}

.partners-column-main .partner-grid .partner-logo {
  grid-column: span 2;
}

.partners-column-main .partners-block:first-child .partner-logo:nth-child(-n + 3) {
  height: 154px;
  min-height: 154px;
  align-content: center;
}

.partner-grid-small {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  justify-content: center;
  justify-items: center;
  gap: clamp(24px, 3.5vw, 44px);
}

.partners-column-main .partners-block:first-child .partner-logo:nth-child(4) {
  grid-column: 2 / span 2;
  margin-top: clamp(18px, 3vw, 34px);
}

.partners-column-main .partners-block:first-child .partner-logo:nth-child(5) {
  grid-column: 4 / span 2;
  margin-top: clamp(18px, 3vw, 34px);
}

.partner-grid-names {
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  justify-items: center;
  gap: clamp(26px, 4vw, 52px);
}

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 88px;
  height: 96px;
  padding: 12px;
  border: 0;
  background: transparent;
}

.partner-logo img {
  display: block;
  width: 100%;
  max-width: 228px;
  max-height: 108px;
  object-fit: contain;
}

/* Ajuste individual de logos del modulo Socios */
.partner-estudio-pocha img {
  max-width: 250px;
  max-height: 128px;
}

.partner-plastic-monkey-studio img {
  max-width: 292px;
  max-height: 142px;
}

.partner-hysteria-animacion img {
  max-width: 264px;
  max-height: 132px;
  transform: none;
}

.partner-humedal img {
  max-width: 204px;
  max-height: 84px;
}

.partner-jupiter-cartoon-factory img {
  max-width: 228px;
  max-height: 108px;
}

.partner-mgc img {
  max-width: 192px;
  max-height: 84px;
}

.partner-elmedano img {
  max-width: 288px;
  max-height: 168px;
}

.partner-paff img {
  max-width: 150px;
  max-height: 74px;
}

.partner-voces-toons img {
  max-width: 192px;
  max-height: 94px;
}

.partner-logo span {
  color: #080806;
  font-family: "Poppins", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.footer {
  min-height: 40svh;
  display: grid;
  grid-template-columns: 1.15fr 0.9fr;
  gap: 40px 58px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1120px) / 2));
  padding-block: clamp(56px, 7vw, 88px);
  background: #080806;
}

.footer > div:first-child {
  grid-column: 1;
  grid-row: 1;
}

.footer-info {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px 26px;
  color: var(--muted);
  text-align: center;
}

.footer-info a,
.footer-info span {
  white-space: nowrap;
}

.contact-form {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(246, 241, 231, 0.2);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.contact-form button {
  justify-self: start;
  border: 0;
  background: var(--accent);
  color: #080806;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 13px 24px;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
  }

  .brand {
    max-width: 82px;
  }

  .brand-group {
    gap: 7px;
  }

  .partner-header-logo {
    width: 42px;
    margin-left: 14px;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: auto;
    flex-direction: column;
    align-items: stretch;
    width: min(260px, calc(100vw - 32px));
    max-height: calc(100svh - 104px);
    overflow-y: auto;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(246, 241, 231, 0.18);
    background: rgba(8, 8, 6, 0.94);
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header.is-menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-indicator {
    display: none;
  }

  .nav-links a {
    display: block;
    padding: 11px 10px;
    text-align: right;
  }

  .project-submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 2px 0 8px;
    padding: 6px 10px 6px 0;
    border: 0;
    border-right: 1px solid rgba(246, 241, 231, 0.18);
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .project-submenu a {
    padding: 7px 0;
    white-space: normal;
  }

  .has-submenu:hover .project-submenu,
  .has-submenu:focus-within .project-submenu,
  .site-header.is-menu-open .project-submenu {
    display: grid;
    transform: none;
  }

  .header-actions {
    position: static;
    align-items: flex-end;
    flex-direction: column;
    gap: 0;
  }

  .language-switch {
    position: absolute;
    top: 24px;
    right: 72px;
    font-size: 11px;
  }

  .hero-content,
  .project-content {
    padding-block: 32vh 10vh;
  }

  .project + .project {
    margin-top: 0;
  }

  .project-bg {
    transform: none;
  }

  .media-shade,
  .project::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 30%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.26));
  }

  .project-right .project-content {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
  }

  .project-detail h1 {
    white-space: normal;
  }

  .detail-columns {
    grid-template-columns: 1fr;
  }

  .intro-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-copy {
    justify-items: center;
  }

  .intro-copy h2,
  .intro-copy p:not(.eyebrow) {
    margin-inline: auto;
  }

  .detail-people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .project-video-guay .detail-columns,
  .project-video-guay .detail-people,
  .project-video-guay .detail-people-grid,
  .project-pequeno-picasso .detail-columns,
  .project-pequeno-picasso .detail-people,
  .project-pequeno-picasso .detail-people-grid {
    max-width: none;
    min-width: 0;
  }

  .project-video-guay .detail-people-grid,
  .project-pequeno-picasso .detail-people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-preview {
    min-height: 0;
  }

  .gallery-moodboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(120px, 34vw);
  }

  .gallery-mood-item,
  .gallery-mood-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .footer > div:first-child,
  .contact-form,
  .footer-info {
    grid-column: 1;
    grid-row: auto;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    min-height: 300px;
  }

  .partner-grid,
  .partner-grid-small {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .partners-inner {
    grid-template-columns: 1fr;
  }

  .partners-inner::before {
    display: none;
  }

  .partners-column-side {
    border-left: 0;
    border-top: 1px solid #080806;
    padding-left: 0;
    padding-top: 28px;
  }

  .partner-grid-names {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-logo {
    min-height: 78px;
  }

  .partner-logo img {
    max-height: 94px;
  }

  .partner-paff img {
    max-width: 150px;
    max-height: 74px;
  }

  .footer-info {
    justify-content: center;
    text-align: center;
  }
}

@media (min-width: 761px) and (max-width: 1060px) {
  .detail-columns {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    max-width: min(900px, calc(100vw - 40px));
  }

  .detail-columns > section:first-child {
    grid-column: 1 / -1;
  }

  .detail-people {
    min-width: 300px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .services-hero-content {
    width: min(100% - 40px, 1120px);
    min-height: auto;
    padding-block: 126px 64px;
  }

  .services-hero-content {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .services-hero-video {
    align-self: stretch;
    min-height: 260px;
  }

  .services-hero-content h1,
  .services-strip h2,
  .services-feature-copy h2 {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 0.96;
  }

  .services-strip h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.02;
  }

  .services-strip {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 64px 20px 42px;
  }

  .service-grid {
    --service-card-height: 280px;
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(3n) {
    min-height: 280px;
    border-right: 0;
  }

  .services-feature {
    min-height: 78svh;
    padding: 76px 20px;
  }
}



