@font-face {
  font-family: "Passion One";
  src: url("assets/fonts/PassionOne-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

.mentorias-gallery .detail-gallery-item > div > span {
  display: none;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("assets/fonts/BebasNeue-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Passion One";
  src: url("assets/fonts/PassionOne-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Passion One";
  src: url("assets/fonts/PassionOne-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --ink: #303443;
  --ink-dark: #272b39;
  --ink-soft: #687084;
  --paper: #f6f6f4;
  --white: #ffffff;
  --line: #e3e3df;
  --orange: #d838a8;
  --orange-dark: #b52b8a;
  --palette-magenta: #d838a8;
  --palette-lime: #a8d838;
  --palette-cyan: #38a8d8;
  --shadow: 0 24px 70px rgba(39, 43, 57, 0.15);
  --max: 1180px;
  --font-body: "Roboto Serif", Georgia, serif;
  --font-heading: "Roboto Serif", Georgia, serif;
  --font-ui: Inter, Arial, sans-serif;
  --font-service-title: "Roboto Serif", Georgia, serif;
  --font-display: "Roboto Serif", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: 0;
}

body.is-section-scrolling {
  overscroll-behavior-y: none;
  scroll-snap-type: y mandatory;
}

body.detail-open {
  overflow: hidden;
}

body.is-section-scrolling main > section {
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

body.is-section-scrolling main > section > * {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 620ms ease, transform 620ms ease;
}

body.is-section-scrolling main > section.is-active > * {
  opacity: 1;
  transform: translateY(0);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

.button,
.brand,
.site-nav,
.nav-toggle,
.work-detail-link,
.contact-card span,
.contact-card strong,
.whatsapp-button,
.whatsapp-panel,
.scroll-cue {
  font-family: var(--font-ui);
}

.section-kicker,
.eyebrow,
.detail-slide-kicker,
.detail-gallery-item span,
.detail-video-module span {
  font-family: var(--font-heading);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 28px;
  left: 0;
  width: 100%;
  padding: 0 24px;
  color: var(--white);
  transition: color 180ms ease, top 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header.is-scrolled {
  top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(30, 33, 44, 0.1);
  backdrop-filter: blur(18px);
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 800;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 28px;
  place-items: center;
  color: #e3342f;
  line-height: 1;
}

.site-header.is-scrolled .brand-mark {
  color: #e3342f;
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.brand-mark svg path + path {
  fill: none;
  stroke: var(--white);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header.is-scrolled .brand-mark svg path + path,
.contact-footer .brand-mark svg path + path {
  stroke: var(--white);
}

.brand-name {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  margin-left: auto;
}

.site-nav a {
  opacity: 0.9;
  transition: opacity 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--orange);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  display: inline-block;
  margin-left: 6px;
  content: "⌄";
  font-size: 12px;
  transform: translateY(-1px);
}

.nav-dropdown-toggle {
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(39, 43, 57, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(30, 33, 44, 0.14);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu::before {
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  height: 14px;
  content: "";
}

.nav-dropdown-menu a {
  padding: 9px 11px;
  color: var(--ink);
  opacity: 1;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--orange);
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

@media (min-width: 681px) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .nav-dropdown:hover .nav-dropdown-toggle,
  .nav-dropdown:focus-within .nav-dropdown-toggle {
    color: var(--orange);
  }
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #000;
  color: var(--white);
}

.hero-info-panel {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 128px clamp(24px, 4vw, 64px) 84px;
  background: transparent;
  pointer-events: none;
}

.hero-video-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.hero-video,
.hero-fallback,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video-controls {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  width: min(calc(100% - 48px), 820px);
  transform: translateX(-50%);
}

.hero-video-scrubber {
  --progress: 0%;
  display: block;
  width: calc(100% - 48px);
  height: 18px;
  margin: 0;
  appearance: none;
  background: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  cursor: ew-resize;
}

.hero-video-scrubber:focus,
.hero-video-scrubber:focus-visible {
  outline: none;
  box-shadow: none;
}

.hero-video-scrubber::-webkit-slider-runnable-track {
  height: 2px;
  background: linear-gradient(to right, var(--white) 0 var(--progress), rgba(255, 255, 255, 0.32) var(--progress) 100%);
  border: 0;
}

.hero-video-scrubber::-moz-range-track {
  height: 2px;
  background: linear-gradient(to right, var(--white) 0 var(--progress), rgba(255, 255, 255, 0.32) var(--progress) 100%);
  border: 0;
}

.hero-video-scrubber::-webkit-slider-thumb {
  width: 0;
  height: 0;
  appearance: none;
  border: 0;
  background: transparent;
}

.hero-video-scrubber::-moz-range-thumb {
  width: 0;
  height: 0;
  border: 0;
  background: transparent;
}

.hero-video-pause {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: 14px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.hero-video-pause:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.hero-video-pause svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.hero-video {
  z-index: 1;
  object-fit: cover;
}

.hero-fallback {
  z-index: 0;
  background:
    linear-gradient(rgba(39, 43, 57, 0.38), rgba(39, 43, 57, 0.66)),
    url("assets/hero-poster.svg") center / cover;
}

.hero-overlay {
  z-index: 2;
  background: transparent;
  pointer-events: none;
}

.hero-audio-toggle {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(19, 21, 29, 0.18);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hero-audio-toggle:hover,
.hero-audio-toggle[aria-pressed="true"] {
  border-color: var(--orange);
  background: rgba(216, 56, 168, 0.22);
  transform: translateY(-1px);
}

.hero-audio-icon {
  font-size: 15px;
  line-height: 1;
}

.hero-content {
  --hero-title-size: clamp(46px, 5.6vw, 82px);
  --hero-title-line: 0.98;
  --hero-image-width: calc(var(--hero-title-size) * var(--hero-title-line) * 2.1);
  --hero-gap: clamp(18px, 2vw, 28px);
  --hero-text-width: min(100%, 700px);
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: min(100%, 1080px);
  max-width: 100%;
  text-align: left;
  pointer-events: auto;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin: 0 0 18px;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  max-width: var(--hero-text-width);
  margin: 0;
  color: var(--white);
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-line);
  min-height: 0;
  text-align: left;
  text-transform: uppercase;
}

.hero h1 .hero-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
}

.hero-identity {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hero-gap);
  align-items: start;
  justify-content: center;
  justify-items: center;
  width: min(100%, 820px);
  max-width: 100%;
  margin: 0;
  transform: none;
}

@media (min-width: 681px) {
  .hero-identity {
    transform: none;
  }
}

.hero-portrait {
  position: relative;
  width: var(--hero-image-width);
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 28px rgba(18, 20, 28, 0.16),
    0 4px 10px rgba(18, 20, 28, 0.1);
}

.hero-portrait img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: none;
  opacity: 1;
  transform: scale(1);
  transition: opacity 780ms ease, transform 1100ms ease;
}

.hero-portrait img.is-prepping {
  transition: none;
}

.hero-portrait img[data-hero-portrait-next] {
  opacity: 0.01;
  transform: scale(1.025);
}

.hero-portrait img[data-hero-portrait-next].is-visible {
  opacity: 1;
  transform: scale(1);
}

.hero h1 span,
.hero h1 small {
  display: block;
}

.hero-name {
  width: fit-content;
  max-width: 100%;
  min-height: 0;
  margin-right: auto;
  margin-left: auto;
  font-family: "Bebas Neue", var(--font-display);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.08);
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.92);
  text-stroke: 1.5px rgba(255, 255, 255, 0.92);
  text-shadow: none;
}

.hero h1 small {
  margin-top: 5px;
  margin-left: 0;
  color: var(--white);
  font-size: clamp(16px, 1.45vw, 23px);
  line-height: 1;
  white-space: nowrap;
  text-transform: none;
  transition: opacity 420ms ease, transform 420ms ease;
}

.hero h1 {
  text-align: center;
  width: min(100%, 820px);
}

.hero h1 small.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.hero-copy {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  width: min(100%, 820px);
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  flex-wrap: wrap;
}

.hero-actions .button {
  min-height: 46px;
  padding: 0 22px;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(18, 20, 28, 0.18);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.hero-actions .button-primary {
  border-color: rgba(255, 255, 255, 0.78);
}

.hero-actions .button-primary:hover {
  border-color: var(--ink-dark);
  background: var(--ink-dark);
}

.hero-actions .button-cyan {
  border-color: rgba(255, 255, 255, 0.78);
}

.hero-actions .button-cyan:hover {
  border-color: var(--ink-dark);
  background: var(--ink-dark);
}

.hero-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  width: min(100%, 820px);
  margin-top: 18px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
}

.hero-socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(18, 20, 28, 0.18);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hero-socials a:hover {
  border-color: var(--ink-dark);
  background: var(--ink-dark);
  transform: translateY(-1px);
}

.hero-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-cyan {
  background: #00e5ff;
  color: var(--white);
}

.button-cyan:hover {
  background: var(--orange);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
}

.profile-portrait {
  width: min(100%, 170px);
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink-dark);
  box-shadow: 0 18px 44px rgba(39, 43, 57, 0.12);
}

.profile-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  filter: contrast(1.04);
  opacity: 1;
  transition: opacity 650ms ease, transform 900ms ease;
}

.profile-portrait img.is-changing {
  opacity: 0;
  transform: scale(1.025);
}

.section-heading.centered {
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.light {
  color: var(--white);
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(29px, 4vw, 46px);
  line-height: 1.12;
}

.section-heading .profile-title {
  max-width: 470px;
  font-size: clamp(33px, 3.45vw, 42px);
  line-height: 1.08;
}

.intro .section-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading p,
.intro-copy p,
.capability-grid p,
.work-meta p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.intro {
  display: grid;
  grid-template-columns: minmax(110px, 165px) minmax(300px, 0.92fr) minmax(390px, 1.35fr);
  gap: 28px;
  align-items: start;
  background: var(--white);
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
  padding-top: 72px;
  padding-bottom: 78px;
}

.profile-media,
.intro > .section-heading,
.intro-copy {
  align-self: start;
}

.intro-copy {
  padding-top: 0;
}

.intro-copy p {
  margin: 0 0 18px;
  color: var(--ink);
}

.profile-clients {
  grid-column: 2 / 4;
  margin-top: 24px;
}

.profile-clients h3 {
  margin: 0 0 28px;
  color: #000;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: none;
  transform: translateX(-30px);
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  column-gap: 46px;
  row-gap: 28px;
  align-items: center;
}

.client-logo {
  display: block;
  width: 100%;
  max-height: 70px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.logo-jupiter {
  max-height: 68px;
  transform: translateY(6px);
}

.logo-pocha {
  max-height: 78px;
}

.logo-hysteria {
  max-height: 72px;
}

.logo-plastic {
  max-height: 56px;
}

.logo-animenta {
  grid-column: 5;
  grid-row: 1;
  max-height: 45px;
  transform: translateY(12px);
}

.logo-mgc {
  grid-column: 6;
  grid-row: 1;
  max-height: 72px;
  transform: translateY(-8px);
}

.logo-paff,
.logo-adm {
  max-height: 58px;
}

.logo2 {
  max-height: 38px;
}

.logo-hera {
  max-height: 110px;
  transform: scale(1.28);
}

.logo-soga,
.logo-santo {
  max-height: 88px;
}

body.is-section-scrolling .hero {
  min-height: 100svh;
}

body.is-section-scrolling .section {
  display: grid;
  align-content: center;
  padding-top: 86px;
  padding-bottom: 62px;
}

body.is-section-scrolling .intro {
  grid-template-columns: minmax(96px, 145px) minmax(280px, 0.9fr) minmax(360px, 1.35fr);
  column-gap: 28px;
  row-gap: 20px;
}

body.is-section-scrolling .profile-portrait {
  width: min(100%, 150px);
}

body.is-section-scrolling .section-heading .profile-title {
  font-size: clamp(30px, 3.2vw, 39px);
}

body.is-section-scrolling .intro-copy {
  padding-top: 0;
}

body.is-section-scrolling .intro-copy p {
  margin-bottom: 14px;
  line-height: 1.58;
}

body.is-section-scrolling .profile-clients {
  margin-top: 10px;
}

body.is-section-scrolling .profile-clients h3 {
  margin-bottom: 18px;
}

body.is-section-scrolling .client-logo-grid {
  row-gap: 16px;
}

.work {
  width: 100%;
  padding-top: 0;
}

.capabilities {
  padding-top: 28px;
  margin-top: -40px;
}

body.is-section-scrolling .work {
  align-content: stretch;
  padding: 0;
}

body.is-section-scrolling .journal .section-heading p {
  margin-bottom: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  width: 100%;
  min-height: 640px;
  margin: 0 auto;
  background: var(--ink-dark);
}

body.is-section-scrolling .work-grid {
  height: 100svh;
  min-height: 100svh;
}

.work-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--ink-dark);
}

.work-title-card {
  display: grid;
  min-height: 300px;
  align-content: center;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.work-title-card-primary {
  border-color: var(--palette-magenta);
  background: var(--palette-magenta);
}

.work-title-card-secondary {
  border-color: var(--palette-cyan);
  background: var(--palette-cyan);
}

.work-title-card-primary > * {
  transform: translateY(10px);
}

.work-title-card > * {
  width: min(100%, 420px);
}

.work-title-card .section-kicker {
  margin-bottom: 6px;
  color: var(--orange);
}

.work-title-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
}

.work-title-card-primary h2,
.work-title-card-secondary h2,
.work-title-card-primary p,
.work-title-card-secondary p {
  color: var(--white);
}

.work-title-card > p:not(.work-copy) {
  display: none;
}

.work-title-card p {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.work-title-card-primary h2,
.work-title-card-primary p,
.work-title-card-secondary h2,
.work-title-card-secondary p,
.work-title-card-primary .section-kicker,
.work-title-card-secondary .section-kicker {
  color: var(--white);
}

.work-card-large {
  grid-row: span 2;
  min-height: 600px;
}

body.is-section-scrolling .work-card {
  min-height: 0;
}

body.is-section-scrolling .work-title-card {
  min-height: 0;
}

body.is-section-scrolling .work-card-large {
  min-height: 0;
}

.work-art {
  position: absolute;
  inset: 0;
  transform: scale(1.01);
  transition: transform 600ms ease, opacity 300ms ease;
}

.work-art video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.work-card:hover .work-art {
  transform: scale(1.06);
}

.work-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(19, 21, 29, 0.82), rgba(19, 21, 29, 0.04) 64%);
}

.work-meta {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 26px;
  bottom: 76px;
  color: var(--white);
}

.work-meta span {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-meta h3 {
  margin: 0;
  font-family: var(--font-service-title);
  font-weight: 800;
  font-size: clamp(19px, 1.85vw, 27px);
  line-height: 1.12;
}

.work-meta p {
  max-width: 390px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

body.is-section-scrolling .work-meta {
  left: 22px;
  right: 22px;
  bottom: 72px;
}

body.is-section-scrolling .work-meta p {
  font-size: 13px;
  line-height: 1.38;
}

.work-detail-link {
  position: absolute;
  left: 26px;
  right: auto;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--white);
  background: rgba(19, 21, 29, 0.22);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

body.is-section-scrolling .work-detail-link {
  left: 22px;
  bottom: 22px;
}

.work-detail-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-1px);
}

.detail-slide {
  position: fixed;
  inset: 0;
  z-index: 18;
  display: grid;
  background: rgba(18, 20, 28, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.detail-slide.is-open {
  opacity: 1;
  pointer-events: auto;
}

.detail-slide-panel {
  position: relative;
  width: calc(100% - 30px);
  min-height: 100svh;
  margin-left: auto;
  overflow-y: auto;
  background: var(--paper);
  color: var(--ink);
  box-shadow: -22px 0 60px rgba(18, 20, 28, 0.22);
  transform: translateX(100%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.detail-page {
  background: var(--paper);
}

.detail-page-main {
  padding-top: 72px;
}

.detail-page .detail-slide {
  position: static;
  inset: auto;
  display: block;
  opacity: 1;
  pointer-events: auto;
  background: transparent;
}

.detail-page .detail-slide-panel {
  width: 100%;
  min-height: 0;
  margin: 0;
  overflow: visible;
  box-shadow: none;
  transform: none;
}

.detail-page .detail-slide-content {
  min-height: 0;
  padding-top: 58px;
  padding-bottom: 100px;
}

.detail-slide.is-open .detail-slide-panel {
  transform: translateX(0);
}

.detail-slide-close {
  position: fixed;
  top: 78px;
  right: 24px;
  z-index: 19;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--ink-dark);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(18, 20, 28, 0.22);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.detail-slide-close:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.detail-slide-content {
  display: grid;
  width: min(calc(100% - 56px), 980px);
  max-width: 980px;
  min-width: 0;
  min-height: 100svh;
  align-content: start;
  margin: 0 auto;
  padding: 118px 0 84px;
}

.detail-slide-kicker {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-slide h2 {
  max-width: none;
  margin: 18px 0 0;
  font-size: clamp(28px, 3.7vw, 54px);
  line-height: 0.95;
  white-space: nowrap;
}

.detail-slide[data-detail-type="produccion"] h2 {
  max-width: 900px;
  white-space: pre-line;
}

.detail-slide-content > p {
  max-width: none;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.45;
}

.detail-docencia-intro {
  width: 100vw;
  min-height: 415px;
  margin-left: calc(50% - 50vw);
  padding: 98px max(28px, calc((100vw - 980px) / 2)) 44px;
  background: var(--palette-cyan);
  color: var(--white);
  box-sizing: border-box;
}

.detail-slide[data-detail-type="web"] .detail-docencia-intro {
  background: var(--palette-cyan);
}

.docencia-page .detail-slide-content {
  padding-top: 0;
}

.docencia-page .detail-page-main {
  padding-top: 0;
}

.docencia-page .site-header {
  box-shadow: 0 10px 28px rgba(30, 33, 44, 0.1);
}

.docencia-page .detail-slide-body {
  margin-top: 0;
  border-top-color: rgba(255, 255, 255, 0.9);
}

.detail-page:not(.docencia-page) .detail-page-main,
.detail-page:not(.docencia-page) .detail-slide-content {
  padding-top: 0;
}

.detail-page:not(.docencia-page) .detail-slide-body {
  margin-top: 0;
  border-top-color: rgba(255, 255, 255, 0.9);
}

.detail-docencia-intro .detail-slide-kicker,
.detail-docencia-intro h2,
.detail-docencia-intro > p {
  color: var(--white);
}

.detail-quote-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 8px 14px;
  background: var(--white);
  color: var(--palette-cyan);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.detail-quote-link:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
}

.web-project-link {
  color: var(--palette-cyan);
  font-size: 16px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.web-project-link:hover {
  color: var(--ink);
}

.web-quote-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 48px;
  margin-top: 72px;
  padding: 42px 0 30px;
  border-top: 1px solid var(--line);
}

.web-quote-heading span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.web-quote-heading h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.web-quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.web-quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.web-quote-form input,
.web-quote-form select,
.web-quote-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 13px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.web-quote-form textarea {
  resize: vertical;
}

.web-quote-message {
  grid-column: 1 / -1;
}

.web-quote-submit {
  grid-column: 1 / -1;
  width: fit-content;
  padding: 12px 18px;
  border: 0;
  background: var(--palette-cyan);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.web-quote-submit:hover {
  background: var(--ink);
}

.detail-docencia-intro > p {
  max-width: none;
  margin: 24px 0 0;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.45;
  column-count: 2;
  column-gap: 42px;
}

.detail-slide[data-detail-type="produccion"] .detail-slide-content > p {
  column-count: 2;
  column-gap: 42px;
}

.detail-slide-body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.detail-slide[data-detail-type="mentorias"] .mentorias-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-slide[data-detail-type="diseno"] .detail-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-slide[data-detail-type="diseno"] .detail-gallery-item {
  grid-template-rows: auto 210px;
  min-height: 0;
}

.detail-slide[data-detail-type="diseno"] .detail-gallery-item h3 {
  font-size: clamp(18px, 1.55vw, 25px);
}

.detail-slide[data-detail-type="diseno"] .docencia-carousel {
  box-sizing: border-box;
  margin-top: 34px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.detail-slide[data-detail-type="diseno"] .docencia-carousel-track {
  gap: 0;
}

.detail-slide[data-detail-type="docencia"] .docencia-carousel,
.detail-slide[data-detail-type="produccion"] .docencia-carousel {
  box-sizing: border-box;
  margin-top: 34px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.detail-slide[data-detail-type="docencia"] .docencia-carousel-track,
.detail-slide[data-detail-type="produccion"] .docencia-carousel-track {
  gap: 0;
}

.detail-slide[data-detail-type="diseno"] .detail-gallery-item > img,
.detail-slide[data-detail-type="diseno"] .detail-gallery-item > .markets-carousel {
  height: auto;
  aspect-ratio: 1080 / 630;
}

.detail-slide[data-detail-type="diseno"] .detail-gallery-item > div > span {
  display: none;
}

.detail-slide[data-detail-type="motion"] .detail-gallery-item > div > span {
  display: none;
}

.detail-slide[data-detail-type="motion"] .detail-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-slide[data-detail-type="motion"] .detail-gallery-item {
  grid-template-rows: auto 210px;
  min-height: 0;
}

.detail-slide[data-detail-type="motion"] .detail-gallery-item h3 {
  font-size: clamp(18px, 1.55vw, 25px);
}

.detail-slide[data-detail-type="motion"] .detail-gallery-item > img,
.detail-slide[data-detail-type="motion"] .detail-gallery-item > video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  align-self: start;
  justify-self: stretch;
  object-fit: cover;
  object-position: center;
}

.detail-slide[data-detail-type="motion"] .motion-sketch-card h3 {
  white-space: nowrap;
}


.motion-tools {
  display: flex !important;
  align-items: center;
  gap: 7px !important;
  margin-top: 4px;
  padding: 0 !important;
}

.motion-tool {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 2px;
  color: var(--white);
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.motion-tools .motion-tool {
  color: #fff !important;
}

.motion-integration-media {
  transition: opacity 260ms ease;
}

.motion-integration-media.is-rotating-out {
  opacity: 0.16;
}

.tool-photoshop { background: #001e36; color: var(--white); }
.tool-premiere { background: #00005b; color: var(--white); }
.tool-after-effects { background: #00005b; color: var(--white); }
.tool-fl-studio { background: #f26b21; }
.tool-comfyui { background: #38a8d8; color: var(--white); }

.graphic-collaboration {
  color: var(--palette-cyan) !important;
  font-family: var(--font-heading);
  font-size: 12px !important;
  font-weight: 700;
  line-height: 1.25 !important;
}

.detail-slide[data-detail-type="mentorias"] .detail-gallery-item {
  grid-template-rows: auto 210px;
  min-height: 0;
}

.detail-slide[data-detail-type="mentorias"] .detail-gallery-item img,
.detail-slide[data-detail-type="mentorias"] .detail-gallery-item video {
  height: auto;
  aspect-ratio: 1080 / 630;
  object-position: center top;
}

.detail-slide[data-detail-type="mentorias"] .detail-gallery-item h3 {
  font-size: clamp(18px, 1.55vw, 25px);
}

.detail-slide[data-detail-type="mentorias"] .detail-gallery-item:first-child h3 {
  white-space: nowrap;
}

.mentorship-collaboration {
  color: var(--palette-cyan) !important;
  font-family: var(--font-heading);
  font-size: 12px !important;
  font-weight: 700;
  line-height: 1.25 !important;
}

.detail-slide[data-detail-type="mentorias"] .mentorias-storyboard-image {
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.detail-gallery-item {
  display: grid;
  grid-template-rows: minmax(220px, 34vh) auto;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 20px 52px rgba(39, 43, 57, 0.08);
}

.detail-gallery-item.is-large {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  grid-template-rows: auto;
}

.detail-gallery-item.is-large img,
.detail-gallery-item.is-large video {
  aspect-ratio: 16 / 9;
  height: auto;
}

.detail-gallery-item img,
.detail-gallery-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.markets-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: var(--ink-dark);
}

.markets-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.markets-carousel-track::-webkit-scrollbar {
  display: none;
}

.markets-carousel-item {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  scroll-snap-align: start;
}

.markets-carousel-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.markets-carousel-item.is-portrait img {
  object-position: center top;
}

.markets-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.72;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
  transform: translateY(-50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.markets-carousel-button.is-prev {
  left: 10px;
}

.markets-carousel-button.is-next {
  right: 10px;
}

.markets-carousel-button:hover,
.markets-carousel-button:focus-visible {
  opacity: 1;
  outline: 0;
  transform: translateY(-50%) scale(1.08);
}

.detail-gallery-item img[data-rotating-image] {
  transition: opacity 260ms ease;
}

.detail-gallery-item img[data-rotating-image].is-rotating-out {
  opacity: 0.16;
}

.motion-sketch-card > img,
.motion-sketch-card > video {
  transition: opacity 260ms ease;
}

.motion-sketch-card > .is-rotating-out {
  opacity: 0.16;
}

.detail-image-language {
  object-position: center 54%;
}

.detail-image-pieces,
.detail-image-references {
  object-position: center 40%;
}

.detail-image-work-folder {
  object-position: center 12%;
}

.detail-logo-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 0;
  padding: 18px;
  background: var(--white);
}

.detail-logo-frame {
  display: grid;
  min-height: 0;
  margin: 0;
  place-items: center;
  overflow: hidden;
}

.logo-combo-frame {
  background: #ff00b8;
}

.logo-animenta-frame {
  background: var(--white);
}

.detail-logo-frame img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.logo-combo-frame img {
  max-width: 72%;
  max-height: 82%;
}

.detail-gallery-item > div:not(.detail-logo-stack):not(.markets-carousel) {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 22px;
}

.detail-gallery-item.is-large > div:not(.detail-logo-stack):not(.markets-carousel) {
  align-content: end;
  padding: clamp(26px, 4vw, 48px);
}

.detail-slide[data-detail-type="web"] .detail-gallery-item.is-large > div:not(.detail-logo-stack) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px;
}

.detail-slide[data-detail-type="web"] .detail-gallery-item.is-large {
  align-items: stretch;
  height: 370px;
  min-height: 0;
}

.detail-slide[data-detail-type="web"] .detail-gallery-item.is-large img,
.detail-slide[data-detail-type="web"] .detail-gallery-item.is-large video {
  min-width: 0;
  min-height: 0;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.detail-slide[data-detail-type="web"] .detail-gallery-item:not(.is-large) {
  grid-template-rows: minmax(300px, calc(34vh + 80px)) auto;
}

.detail-slide[data-detail-type="web"] .detail-gallery-item:not(.is-large) img,
.detail-slide[data-detail-type="web"] .detail-gallery-item:not(.is-large) video {
  object-position: center;
}

.web-projects-heading {
  grid-column: 1 / -1;
  padding: 20px 0;
  background: transparent;
  color: var(--ink);
}

.web-projects-heading h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
}

.web-projects-heading svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--palette-cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.detail-slide[data-detail-type="web"] .detail-gallery-item.is-large h3 {
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.1;
}

.detail-slide[data-detail-type="web"] .detail-gallery-item.is-large h3:nth-of-type(n + 2) {
  margin-top: 6px;
}

.detail-slide[data-detail-type="web"] .detail-gallery-item.is-large p {
  font-size: 13px;
  line-height: 1.5;
  transform: none;
}

.web-site-types {
  display: grid;
  width: 100%;
  gap: 8px;
}

.web-site-type {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.web-site-type:first-child {
  padding-top: 0;
  border-top: 0;
}

.web-site-type > span {
  padding-top: 2px;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.web-site-type > div {
  display: grid;
  gap: 3px;
}

.detail-slide[data-detail-type="web"] .web-site-type h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1;
}

.detail-slide[data-detail-type="web"] .web-site-type p {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  line-height: 1.38;
}

.detail-slide[data-detail-type="web"] .detail-quote-link {
  margin-top: auto;
  align-self: center;
}

.detail-slide[data-detail-type="web"] .detail-gallery-item > div:not(.detail-logo-stack) {
  background: var(--palette-cyan) !important;
  color: var(--white) !important;
}

.detail-slide[data-detail-type="web"] .detail-gallery-item > div:not(.detail-logo-stack) span,
.detail-slide[data-detail-type="web"] .detail-gallery-item > div:not(.detail-logo-stack) h3,
.detail-slide[data-detail-type="web"] .detail-gallery-item > div:not(.detail-logo-stack) p,
.detail-slide[data-detail-type="web"] .detail-gallery-item > div:not(.detail-logo-stack) .web-project-link {
  color: var(--white);
}

.detail-slide[data-detail-type="web"] .detail-gallery-item.web-project-card > div:not(.detail-logo-stack) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 24px 28px 26px;
}

.detail-slide[data-detail-type="web"] .web-project-card > div > span {
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.detail-slide[data-detail-type="web"] .web-project-card > div > h3 {
  margin: 0;
  font-size: clamp(27px, 2.35vw, 38px);
  line-height: 0.98;
}

.detail-slide[data-detail-type="web"] .web-project-card > div > p {
  max-width: 34ch;
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.45;
}

.detail-slide[data-detail-type="web"] .web-project-card .web-project-link {
  margin-top: auto;
  padding-top: 18px;
  font-size: 16px;
  line-height: 1.2;
}

.detail-gallery-item span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-gallery-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
}

.detail-gallery-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.detail-project-link {
  display: inline-block;
  margin-top: 10px;
  color: #111111;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  text-underline-offset: 3px;
}

.detail-project-link span {
  font-weight: 800;
  text-decoration: underline;
}

.detail-project-link:hover {
  color: #111111;
}

.market-logos {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  margin-top: 16px;
}

.market-logos img {
  display: block;
  width: auto;
  max-width: 72px;
  height: 42px;
  object-fit: contain;
  object-position: center;
}

.project-list {
  display: grid;
  gap: 3px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.detail-video-module {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 20px 52px rgba(39, 43, 57, 0.08);
}

.production-video-module {
  margin-top: 0;
}

.production-video-module + .detail-gallery {
  margin-top: 34px;
}

.detail-video-module span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-video-module h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1;
}

.detail-video-module p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.detail-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink-dark);
}

.detail-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.docencia-carousel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 34px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 20px 52px rgba(39, 43, 57, 0.08);
}

.docencia-carousel-heading {
  margin-bottom: 20px;
}

.docencia-carousel-heading span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.docencia-carousel-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 44px);
  line-height: 0.98;
}

.docencia-carousel-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 0;
}

.docencia-carousel-track {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.docencia-carousel-track::-webkit-scrollbar {
  display: none;
}

.docencia-carousel-item {
  flex: 0 0 340px;
  height: 300px;
  margin: 0;
  overflow: hidden;
  background: var(--line);
  scroll-snap-align: start;
}

.docencia-carousel-item.is-wide {
  flex-basis: 430px;
}

.docencia-carousel-item.is-narrow {
  flex-basis: 250px;
}

.docencia-carousel-item.is-first {
  flex-basis: 430px;
}

.docencia-carousel-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.docencia-carousel-item.is-first img {
  object-fit: cover;
  object-position: center top;
}

.docencia-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 44px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(39, 43, 57, 0.16);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.docencia-carousel-button span {
  font-size: 38px;
  line-height: 1;
}

.docencia-carousel-button.is-prev {
  left: 10px;
}

.docencia-carousel-button.is-next {
  right: 10px;
}

.docencia-carousel-button:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-50%) scale(1.04);
}

.art-01 {
  background:
    linear-gradient(135deg, rgba(48, 52, 67, 0.2), rgba(232, 88, 18, 0.2)),
    url("media/identidad-animenta-mockup.webp") center / cover;
}

.art-02 {
  background: url("media/image28.jpg") center / cover;
}

.art-03 {
  background: url("assets/imagen_vs.webp") center / cover;
}

.art-04 {
  background: url("media/image101.jpg") center / cover;
}

.art-05 {
  background: url("assets/design-motion.jpg") center / cover;
}

.art-06 {
  background:
    linear-gradient(0deg, rgba(19, 21, 29, 0.48), rgba(19, 21, 29, 0.08)),
    url("media/img-web/web-02.webp") center / cover;
}

.art-07 {
  background: url("media/img-docencia/docencia-03.jpg") center / cover;
}

.journal {
  width: min(calc(100% - 48px), var(--max));
  padding-top: 48px;
}

.journal-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

body.is-section-scrolling .journal {
  padding-top: 88px;
}

body.is-section-scrolling .journal .section-heading {
  margin-bottom: 24px;
}

.journal-card {
  display: grid;
  grid-template-rows: 190px minmax(210px, 1fr);
  height: 462px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(39, 43, 57, 0.08);
  overflow: hidden;
}

body.is-section-scrolling .journal-card {
  grid-template-rows: 150px minmax(190px, 1fr);
  height: 368px;
}

body.is-section-scrolling .journal-media,
body.is-section-scrolling .journal-placeholder {
  min-height: 150px;
}

body.is-section-scrolling .journal-card-copy {
  padding: 18px 18px 56px;
}

body.is-section-scrolling .journal-card-copy p {
  font-size: 13px;
  line-height: 1.42;
}

.journal-media,
.journal-placeholder {
  min-height: 190px;
  background: var(--ink-dark);
}

.journal-media {
  display: block;
  overflow: hidden;
}

.journal-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-media-image img {
  object-position: center;
}

.journal-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.journal-card:nth-child(2) .journal-placeholder {
  background:
    linear-gradient(135deg, rgba(48, 52, 67, 0.94), rgba(128, 136, 147, 0.82)),
    var(--ink-dark);
}

.journal-card:nth-child(3) .journal-placeholder {
  background:
    linear-gradient(135deg, rgba(233, 90, 18, 0.68), rgba(48, 52, 67, 0.92)),
    var(--ink-dark);
}

.journal-card:nth-child(4) .journal-placeholder {
  background:
    linear-gradient(135deg, rgba(48, 52, 67, 0.94), rgba(128, 136, 147, 0.78)),
    var(--ink-dark);
}

.journal-card-copy {
  position: relative;
  padding: 22px;
  padding-bottom: 64px;
}

.journal-card-motion .journal-card-copy {
  padding: 26px 28px 64px;
}

.journal-card-copy span,
.post-meta span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-card-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 1.55vw, 22px);
  line-height: 1.08;
}

.journal-card-copy p {
  margin: 12px 0 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.48;
}

.text-link {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--orange);
}

.journal-detail-link {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid rgba(48, 52, 67, 0.28);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.journal-detail-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateX(-50%) translateY(-1px);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.capabilities-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  margin-bottom: 30px;
}

.capabilities-intro .section-heading {
  margin: 0;
  text-align: left;
}

.capabilities-intro .section-heading h2 {
  max-width: 420px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.02;
}

.capabilities-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.5;
  transform: translateY(35px);
}

.capabilities-summary p {
  margin: 0;
}

.journal-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.journal-preview {
  display: grid;
  grid-template-rows: 220px minmax(220px, 1fr);
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 0;
  box-shadow: 0 18px 44px rgba(39, 43, 57, 0.08);
}

.journal-preview:nth-child(1) {
  background: var(--palette-magenta);
}

.journal-preview:nth-child(2) {
  background: var(--palette-cyan);
}

.journal-preview:nth-child(3) {
  background: var(--palette-lime);
}

.journal-preview-media {
  overflow: hidden;
  background: var(--ink-dark);
}

.journal-preview-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-preview-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px 22px 30px;
}

.journal-preview-body > span:first-child,
.journal-preview-link {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-preview-body h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.08;
}

.journal-preview-body p {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1.55;
}

.journal-preview-link {
  margin-top: 8px;
}

.capability-grid article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(39, 43, 57, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(39, 43, 57, 0.06);
  text-align: left;
}

.capability-icon {
  display: inline-grid;
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(232, 88, 18, 0.28);
  background: rgba(232, 88, 18, 0.08);
  color: var(--orange);
}

.capability-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.capability-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.capability-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.contact {
  background: var(--palette-cyan);
  color: var(--white);
}

body.is-section-scrolling .contact {
  display: grid;
  align-content: stretch;
  min-height: 100svh;
  padding: 86px 0 54px;
}

.contact-band {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: calc(100svh - 140px);
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  box-sizing: border-box;
  padding: 42px 0 18px;
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.58fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  align-self: center;
}

.contact-copy {
  display: grid;
  align-content: space-between;
  min-width: 0;
}

.contact-info-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  gap: 28px;
  align-items: start;
}

.contact-copy .section-heading.centered {
  margin: 0;
  text-align: left;
}

.contact .section-kicker {
  color: var(--white);
}

.contact .section-heading.light h2 {
  color: var(--white);
}

body.is-section-scrolling .contact-band {
  min-height: calc(100svh - 140px);
  padding-top: 0;
  padding-bottom: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: start;
  gap: 16px;
  width: 52px;
  margin: 0;
}

.contact-image {
  position: relative;
  align-self: stretch;
  width: min(100%, 416px);
  margin: 0 0 0 auto;
  overflow: hidden;
  background: #e7d19a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.contact-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.is-section-scrolling .contact-card {
  margin-top: 0;
}

.contact-card a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
  transition: transform 160ms ease, color 160ms ease;
}

body.is-section-scrolling .contact-card a {
  min-height: 42px;
  padding: 0;
}

.contact-card a:hover {
  border-color: transparent;
  background: transparent;
  color: var(--ink);
  transform: translateY(-3px) scale(1.06);
}

.contact-card svg {
  display: block;
  width: 34px;
  height: 34px;
  color: var(--white);
  fill: currentColor;
}

.contact-card a:first-child svg {
  width: 39px;
  height: 39px;
  transform: translateY(2px);
}

.contact-card a:nth-child(2) svg {
  transform: translateY(1px);
}

.contact-card a:hover svg {
  color: var(--ink);
}

.contact-card span {
  display: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  width: 100%;
  margin-top: 24px;
}

.contact-form-field {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.contact-form-field-wide {
  grid-column: 1 / -1;
}

.contact-form label {
  margin: 0;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  grid-column: 1 / -1;
  width: fit-content;
  margin-top: 2px;
  padding: 10px 18px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.contact-form button:hover {
  background: var(--white);
  color: var(--palette-cyan);
}

.contact-card strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 13px;
}

.contact-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(100%, 760px);
  align-self: end;
  margin: 0 auto;
  padding-top: 0;
  text-align: center;
}

.contact-footer .brand {
  color: var(--white);
}

.contact-footer .brand-mark svg path + path {
  stroke: var(--white);
}

.contact-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.6;
}

.contact-footer .site-credit {
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
}

.contact-footer .site-credit a {
  display: inline;
  margin-left: 6px;
  padding: 0;
  border: 0;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.contact-footer .site-credit a:hover {
  border-color: transparent;
  background: transparent;
  color: var(--white);
}

.detail-footer-bar {
  background: var(--palette-cyan);
  padding: 34px 24px 20px;
}

.detail-footer-bar .contact-footer {
  max-width: 760px;
}

body.is-section-scrolling .contact-footer {
  margin-top: 42px;
  padding-top: 20px;
}

label {
  display: block;
  margin-bottom: 16px;
  text-align: left;
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  padding: 16px 18px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

body.is-section-scrolling input,
body.is-section-scrolling textarea {
  padding: 12px 15px;
}

body.is-section-scrolling textarea {
  min-height: 104px;
}

input:focus,
textarea:focus {
  border-color: rgba(233, 90, 18, 0.8);
  background: rgba(255, 255, 255, 0.04);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

textarea {
  resize: vertical;
}

.whatsapp-widget {
  position: relative;
  z-index: 30;
  flex: 0 0 auto;
}

.whatsapp-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  width: min(340px, calc(100vw - 32px));
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(39, 43, 57, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-widget.is-open .whatsapp-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 16px;
  background: var(--ink-dark);
  color: var(--white);
}

.whatsapp-panel-header span {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.whatsapp-panel-header strong {
  font-size: 17px;
}

.whatsapp-panel-header button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-panel-body {
  padding: 18px;
}

.whatsapp-panel-body p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.whatsapp-panel-body textarea {
  min-height: 112px;
  margin-bottom: 14px;
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
}

.whatsapp-panel-body textarea:focus {
  background: var(--white);
}

.whatsapp-panel-body .button {
  width: 100%;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 10px 0 9px;
  border: 0;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(39, 43, 57, 0.18);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.whatsapp-button:hover {
  background: #1fb85a;
  transform: translateY(-2px);
}

.whatsapp-button svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.scroll-cue {
  position: fixed;
  right: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.4vw, 34px);
  z-index: 60;
  display: grid;
  width: 46px;
  height: 64px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  opacity: 0.82;
  cursor: pointer;
  animation: scrollCuePulse 1.8s ease-in-out infinite;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.scroll-cue:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.scroll-cue.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.scroll-cue svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: scrollCueArrow 1.8s ease-in-out infinite;
}

@keyframes scrollCuePulse {
  0%,
  100% {
    opacity: 0.42;
  }

  50% {
    opacity: 0.94;
  }
}

@keyframes scrollCueArrow {
  0%,
  100% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue,
  .scroll-cue svg {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .client-logo-grid {
    grid-template-columns: repeat(4, minmax(110px, 1fr));
    column-gap: 34px;
  }

  .detail-gallery,
  .detail-gallery-item.is-large,
  .detail-video-module {
    grid-template-columns: 1fr;
  }

  .detail-slide[data-detail-type="mentorias"] .mentorias-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-slide[data-detail-type="diseno"] .detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-slide[data-detail-type="motion"] .detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-gallery-item.is-large {
    grid-template-rows: minmax(340px, 46vh) auto;
  }

  .docencia-carousel {
    padding: 18px;
  }

  .docencia-carousel-item,
  .docencia-carousel-item.is-wide {
    flex-basis: 300px;
    height: 230px;
  }

  .docencia-carousel-item.is-narrow {
    flex-basis: 210px;
  }

  .docencia-carousel-button {
    width: 38px;
    height: 54px;
  }

  .logo-animenta,
  .logo-mgc {
    grid-column: auto;
    grid-row: auto;
  }

  .logo-animenta {
    transform: none;
  }

  .journal-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.post-page {
  background: var(--paper);
}

.post-page .site-header {
  top: 0;
  padding-top: 18px;
  padding-bottom: 18px;
}

.post-nav {
  gap: 16px;
}

.post-page .brand-name {
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-hero {
  width: min(calc(100% - 48px), 980px);
  margin: 0 auto;
  padding: 154px 0 58px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.post-meta time {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.post-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  text-transform: uppercase;
}

.post-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.7;
}

.post-feature {
  width: 100%;
  margin: 0;
  background: var(--ink-dark);
}

.post-feature img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.post-content {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: 72px;
  width: min(calc(100% - 48px), 980px);
  margin: 0 auto;
  padding: 80px 0 110px;
}

.post-aside {
  border-top: 3px solid var(--orange);
  padding-top: 18px;
}

.post-aside span {
  display: block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.post-aside p,
.post-body p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.post-aside p {
  margin: 0 0 14px;
  font-size: 14px;
}

.post-body h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 28px;
}

.post-body p {
  margin: 0 0 34px;
  font-size: 17px;
}

@media (max-width: 860px) {
  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    height: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    padding: 0;
    background-color: var(--palette-magenta);
    color: var(--white);
    font-size: 18px;
    box-shadow: none;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transition: height 460ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 460ms;
    z-index: 40;
  }

  .site-nav.is-open {
    height: calc(100dvh - 68px);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .site-nav a {
    width: 100%;
    flex: 1 1 0;
    display: flex;
    align-items: center;
    padding: 18px 28px;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    opacity: 1;
  }

  .site-nav > a:nth-child(1),
  .site-nav > .nav-dropdown:nth-child(1) {
    background: #e65abb;
  }

  .site-nav > a:nth-child(2),
  .site-nav > .nav-dropdown:nth-child(2) {
    background: var(--palette-magenta);
  }

  .site-nav > a:nth-child(3),
  .site-nav > .nav-dropdown:nth-child(3) {
    background: #b62d8d;
  }

  .site-nav > a:nth-child(4),
  .site-nav > .nav-dropdown:nth-child(4) {
    background: #90236e;
  }

  .nav-dropdown {
    width: 100%;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .nav-dropdown > .nav-dropdown-toggle {
    min-height: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin: 8px 0 0;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .nav-dropdown-menu a {
    color: var(--white);
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 41;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
    transition: background-color 160ms ease, box-shadow 160ms ease;
  }

  .nav-toggle span + span {
    display: none;
  }

  .nav-toggle::before,
  .nav-toggle::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: currentColor;
    opacity: 0;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-toggle[aria-expanded="true"] span {
    background: transparent;
    box-shadow: none;
  }

  .nav-toggle[aria-expanded="true"]::before,
  .nav-toggle[aria-expanded="true"]::after {
    opacity: 1;
  }

  .nav-toggle[aria-expanded="true"]::before {
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"]::after {
    transform: rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-info-panel {
    min-height: 100svh;
    padding: 120px 28px 76px;
  }

  .hero-video-panel {
    min-height: 70svh;
  }

  .hero-content {
    --hero-image-width: clamp(126px, 15vw, 148px);
    --hero-gap: 20px;
    --hero-text-width: clamp(420px, 58vw, 620px);
  }

  .hero-identity {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    transform: none;
  }

  .intro,
  .journal {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .profile-clients {
    grid-column: auto;
    margin-top: 8px;
  }

  .client-logo-grid {
    grid-template-columns: repeat(3, minmax(92px, 1fr));
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-card-large {
    grid-column: span 2;
    min-height: 420px;
  }

  .work-title-card {
    order: -1;
    grid-column: span 2;
    min-height: 220px;
  }

  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }

  .journal-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .post-content {
    grid-template-columns: 1fr;
  }

  .post-content {
    gap: 34px;
  }
}

@media (max-width: 680px) {
  .detail-slide[data-detail-type="mentorias"] .mentorias-gallery {
    grid-template-columns: 1fr;
  }

  .detail-slide[data-detail-type="diseno"] .detail-gallery {
    grid-template-columns: 1fr;
  }

  .detail-slide[data-detail-type="motion"] .detail-gallery {
    grid-template-columns: 1fr;
  }

  .detail-slide[data-detail-type="mentorias"] .detail-gallery-item {
    grid-template-rows: auto 210px;
    min-height: 0;
  }

  .detail-slide[data-detail-type="mentorias"] .detail-gallery-item img,
  .detail-slide[data-detail-type="mentorias"] .detail-gallery-item video {
    height: auto;
    aspect-ratio: 1080 / 630;
    object-fit: contain;
    object-position: center top;
    background: var(--white);
  }

  .detail-docencia-intro {
    min-height: 0;
  }

  .web-quote-section {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 48px;
  }

  .detail-slide[data-detail-type="web"] .detail-gallery-item.is-large {
    height: auto;
    min-height: 0;
  }

  .detail-slide[data-detail-type="web"] .detail-gallery-item:not(.is-large) {
    grid-template-rows: 310px auto;
  }

  .web-quote-form {
    grid-template-columns: 1fr;
  }

  .site-header {
    top: 16px;
    padding: 0 14px;
  }

  .site-header.is-scrolled {
    top: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand-name {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 100svh;
    padding: 0;
  }

  .hero-info-panel {
    min-height: 100svh;
    padding: 116px 20px 78px;
  }

  .hero-video-panel {
    min-height: 62svh;
  }

  .hero-content {
    --hero-image-width: 96px;
    --hero-gap: 18px;
    --hero-text-width: 100%;
    left: 0;
    justify-items: center;
    width: min(100%, calc(100vw - 40px));
    text-align: center;
  }

  .hero-identity {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    transform: none;
  }

  .hero-portrait {
    width: 96px;
    margin-top: 0;
  }

  .hero h1 {
    text-align: center;
  }

  .hero h1 small {
    width: 100%;
    max-width: 100%;
    margin: 5px auto 0;
    text-align: left;
    font-size: clamp(13px, 3.8vw, 18px);
    text-align: center;
    white-space: nowrap;
  }

  .hero h1 .hero-kicker {
    text-align: center;
  }

  .hero-name {
    width: auto;
  }

  .hero-actions,
  .hero-socials {
    justify-content: center;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

  .detail-docencia-intro > p,
  .detail-slide[data-detail-type="docencia"] .detail-slide-content > p {
    column-count: 1;
  }

  .section {
    width: min(calc(100% - 32px), var(--max));
    padding: 68px 0;
  }

  .contact-band {
    grid-template-rows: auto auto;
    min-height: auto;
    width: min(calc(100% - 32px), var(--max));
    row-gap: 34px;
  }

  .contact-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-copy .section-heading.centered {
    text-align: center;
  }

  .contact-info-row {
    gap: 16px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form-field-wide,
  .contact-form button {
    grid-column: auto;
  }

  .contact-image {
    width: min(100%, 344px);
    margin: 0 auto;
    align-self: center;
    height: auto;
  }

  .contact-image img {
    height: auto;
    object-fit: contain;
  }

  .contact-footer {
    margin-top: 0;
  }

  .journal-board,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .profile-clients h3 {
    margin-bottom: 22px;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(105px, 1fr));
    column-gap: 24px;
    row-gap: 24px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card-large {
    grid-column: auto;
    min-height: 360px;
  }

  .work-title-card {
    grid-column: auto;
    min-height: 240px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .capabilities-intro {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
  }

  .capabilities-intro .section-heading {
    text-align: left;
  }

  .capabilities-summary {
    grid-template-columns: 1fr;
    gap: 14px;
    transform: none;
  }

  .journal-preview-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .journal-preview {
    grid-template-rows: 220px auto;
  }

  .journal-card,
  .journal-title-card {
    min-height: auto;
  }

  .post-hero,
  .post-content {
    width: min(calc(100% - 32px), 980px);
  }

  .post-hero {
    padding-top: 128px;
  }

  .whatsapp-widget {
    position: relative;
    right: auto;
    bottom: auto;
  }

  .whatsapp-button {
    min-height: 38px;
    padding: 0 11px;
  }

  .whatsapp-button span {
    display: none;
  }
}
