@font-face {
  font-family: "Helvetica Now";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Helvetica_Now/1-Helvetica Now Text/HelveticaNowText-Regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Now";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Helvetica_Now/1-Helvetica Now Text/HelveticaNowText-Medium.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Now";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Helvetica_Now/1-Helvetica Now Text/HelveticaNowText-Bold.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "The Seasons";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/The.Seasons/The Seasons Light.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "The Seasons";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/The.Seasons/The Seasons Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "The Seasons";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/The.Seasons/The Seasons Bold.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --text: #101010;
  --muted: #6b6b6b;
  --line: rgba(16, 16, 16, 0.12);
  --shadow: 0 22px 70px rgba(16, 16, 16, 0.14);
  --hairline: rgba(16, 16, 16, 0.16);

  --display: "The Seasons", "Cormorant Garamond", "Playfair Display", "Times New Roman", ui-serif, Georgia, serif;
  --serif: "Playfair Display", ui-serif, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Helvetica, Arial, "Helvetica Now",
    "Helvetica Now Text", "Helvetica Now Display", "Apple Color Emoji", "Segoe UI Emoji";

  --container: 1120px;
  --radius: 18px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

input,
textarea,
select,
button {
  font-family: var(--sans);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  transform: translateY(-180%);
  transition: transform 260ms var(--ease);
  z-index: 9999;
}
.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

#contenido {
  scroll-margin-top: 88px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  pointer-events: none;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 0;
  background: transparent;
  border-bottom: 0 solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: height 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease);
  pointer-events: none;
}

.site-header.is-solid::before {
  height: 64px;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(16, 16, 16, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 34px auto 0;
  padding: 18px 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
  box-shadow: none;
  transition: margin 260ms var(--ease), padding 260ms var(--ease), transform 260ms var(--ease);
}

.header-inner > * {
  /* Evita “bailes” de alineación cuando el texto se ajusta. */
  min-width: 0;
}

.site-header.is-solid .header-inner {
  margin: 0 auto;
  padding: 30px 0;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.96);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  pointer-events: auto;
}

.header-logo__img {
  display: block;
  width: auto;
  height: 28px;
  max-width: min(230px, 24vw);
  object-fit: contain;
}

.header-logo__img--asset,
.header-logo__img--uploaded {
  filter: invert(1);
}

.site-header.is-solid .header-logo {
  color: rgba(16, 16, 16, 0.92);
}

.site-header.is-solid .header-logo__img--asset,
.site-header.is-solid .header-logo__img--uploaded {
  filter: none;
}

.menu-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(0, 0, 0, 0.10);
  color: #fff;
  height: 40px;
  width: 44px;
  border-radius: 999px;
  display: none;
  place-items: center;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease), color 260ms var(--ease);
  position: absolute;
  left: 0;
}

.site-header.is-solid .menu-btn {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.menu-btn:hover {
  transform: translateY(-1px);
}

/* Tres líneas: barra central + sombras; evita colapsar el contenedor (antes height: 2px machacaba height: 12px). */
.menu-btn__bars {
  display: block;
  width: 18px;
  height: 2px;
  position: relative;
  background: currentColor;
  border-radius: 2px;
  box-shadow: 0 -6px 0 0 currentColor, 0 6px 0 0 currentColor;
  transition: background 240ms var(--ease), box-shadow 240ms var(--ease), transform 240ms var(--ease);
}

.menu-btn__bars::before,
.menu-btn__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  top: 0;
  background: currentColor;
  border-radius: 2px;
  opacity: 0;
  transform: rotate(0deg);
  transition: transform 240ms var(--ease), opacity 240ms var(--ease);
}

.menu-btn.is-open .menu-btn__bars {
  background: transparent;
  box-shadow: none;
}

.menu-btn.is-open .menu-btn__bars::before {
  opacity: 1;
  transform: rotate(45deg);
}

.menu-btn.is-open .menu-btn__bars::after {
  opacity: 1;
  transform: rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

.site-header.is-solid .nav {
  color: rgba(16, 16, 16, 0.78);
}

.nav__link {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.nav__link:hover {
  transform: translateY(-1px);
  background: transparent;
}
.nav__link:hover::after {
  opacity: 0.85;
  transform: translateY(0);
}

.nav__link--current::after {
  opacity: 0.85;
  transform: translateY(0);
}

.nav__link--disabled {
  opacity: 0.42;
}
.nav__link--disabled:hover {
  transform: none;
  background: transparent;
}
.nav__link--disabled::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.icon-link {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0.9;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), color 260ms var(--ease);
}

.site-header.is-solid .icon-link {
  color: rgba(16, 16, 16, 0.86);
  opacity: 0.75;
}

.icon-link svg,
.icon-link i {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
  overflow: visible;
  fill: currentColor;
}

.icon-link i {
  width: auto;
  height: auto;
  font-size: 18px;
  line-height: 1;
}

.icon-link:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.icon-link--dark {
  color: #fff;
}

.hero {
  min-height: 86vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("../img/image (1).png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(0.98) contrast(1.02);
  will-change: transform;
}

.es7-hero--split .hero-media,
.hero-slide__media {
  background-image: var(--es7-bg-desktop);
}

.hero-slider,
.hero-slide,
.hero-slide__media {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide__media {
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(0.98) contrast(1.02);
  will-change: transform, opacity;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.20) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 164px 20px 88px;
  max-width: 980px;
}

.brand-mark {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 108px);
  letter-spacing: 0.005em;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(16, 16, 16, 0.16);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.hero-slider__arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.hero-slider__arrow--prev {
  left: max(24px, calc((100vw - var(--container)) / 2));
}

.hero-slider__arrow--next {
  right: max(24px, calc((100vw - var(--container)) / 2));
}

.hero-slider__arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.hero-slider__arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.hero-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.82);
}

.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  opacity: 0.78;
  transition: background 220ms var(--ease), opacity 220ms var(--ease), transform 220ms var(--ease);
}

.hero-slider__dot.is-active,
.hero-slider__dot:hover {
  background: #fff;
  opacity: 1;
}

.section {
  padding: 56px 0;
}

h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 4.5px;
  text-transform: uppercase;
}

.h2 {
  font-family: var(--sans);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.section--home-statement {
  min-height: 430px;
  padding: 126px 0 132px;
  text-align: center;
  display: flex;
  align-items: center;
}

.home-statement {
  max-width: 780px;
  margin: 0 auto;
}

.home-statement__kicker {
  margin: 0 0 58px;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.78);
}

.home-statement__lead {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(16, 16, 16, 0.86);
}

.section--intro {
  padding: 48px 0 24px;
}

/* .intro / .purpose: rejilla Tailwind 50/50 (includes/config.php) */

.intro__copy {
  max-width: min(100%, 30rem);
  text-align: left;
}

@media (min-width: 981px) {
  .intro .intro__copy,
  .purpose .purpose__copy {
    max-width: none;
  }
}

.intro__kicker {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.58);
  margin-bottom: 12px;
}

.intro__text {
  margin: 0 0 12px;
  color: rgba(16, 16, 16, 0.78);
}

.intro__text--muted {
  color: rgba(16, 16, 16, 0.64);
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.82);
  position: relative;
  padding-bottom: 6px;
  transition: transform 220ms var(--ease), color 220ms var(--ease);
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.text-link:hover {
  transform: translateY(-1px);
}

.text-link:hover::after {
  transform: scaleX(0.72);
}

.lead {
  margin: 0 0 10px;
  font-size: 16px;
  color: rgba(16, 16, 16, 0.86);
}

.body {
  margin: 0 0 12px;
  color: rgba(16, 16, 16, 0.74);
}

.home-statement__lead p,
.intro__text p,
.body p,
.about-feature__lead p,
.about-founder__p p,
.method-block__intro p,
.method-block__punch p,
.work-model__foot p,
.cases-card__meta p {
  margin: 0;
}

.footer-legal {
  margin-top: 1rem;
  text-align: center;
}

.footer-legal p {
  margin: 0;
}

.intro__text p + p,
.body p + p,
.about-feature__lead p + p,
.about-founder__p p + p,
.method-block__intro p + p,
.method-block__punch p + p,
.work-model__foot p + p,
.cases-card__meta p + p {
  margin-top: 1em;
}

.about-founder__p ul,
.about-founder__p ol {
  margin: 0 0 1em 1.2em;
  padding: 0;
}

.about-founder__p li + li {
  margin-top: 0.35em;
}

.about-founder__p u {
  text-decoration-thickness: 0.07em;
  text-underline-offset: 0.12em;
}

.muted {
  color: var(--muted);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease),
    color 260ms var(--ease);
  will-change: transform;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 12px 34px rgba(16, 16, 16, 0.22);
}
.btn--primary:hover {
  box-shadow: 0 16px 44px rgba(16, 16, 16, 0.28);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.media-card {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(16, 16, 16, 0.12);
  border: 1px solid rgba(16, 16, 16, 0.1);
  background: #fff;
}

.media-card--flat {
  box-shadow: 0 20px 56px rgba(16, 16, 16, 0.1);
}

.media-card--lift {
  transform: translateY(-10px);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.logo {
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(16, 16, 16, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.86));
  display: grid;
  place-items: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(16, 16, 16, 0.70);
  transition: transform 220ms var(--ease), box-shadow 260ms var(--ease), background 260ms var(--ease);
}

.logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(16, 16, 16, 0.10);
  background: linear-gradient(180deg, #fff, rgba(248, 248, 248, 0.9));
}

.section--contact {
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.03), rgba(16, 16, 16, 0.00));
}

.logo-shot {
  margin: 18px 0 0;
}

.logo-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.section--purpose {
  padding: 24px 0 56px;
}

.purpose__copy {
  max-width: min(100%, 30rem);
  text-align: left;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.64);
  margin-bottom: 8px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
  display: grid;
  gap: 10px;
}

.contact-list a {
  color: rgba(16, 16, 16, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms var(--ease), color 220ms var(--ease);
}
.contact-list a:hover {
  color: rgba(16, 16, 16, 0.92);
  border-color: rgba(16, 16, 16, 0.32);
}

.contact__form {
  border: 1px solid rgba(16, 16, 16, 0.10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 60px rgba(16, 16, 16, 0.08);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field__label {
  font-size: 12px;
  color: rgba(16, 16, 16, 0.66);
}

.field__input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(16, 16, 16, 0.14);
  background: #fff;
  outline: none;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease);
  font-family: var(--sans);
}

.field__input:focus {
  border-color: rgba(16, 16, 16, 0.36);
  box-shadow: 0 0 0 4px rgba(16, 16, 16, 0.08);
}

.field__input--textarea {
  resize: vertical;
  min-height: 130px;
}

.footer {
  background: #0e0e0e;
  color: rgba(255, 255, 255, 0.86);
  padding: 22px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 18px;
  align-items: center;
}

.footer-brand {
  font-family: var(--sans);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: inherit;
  text-decoration: none;
  transition: opacity 220ms var(--ease);
}

.footer-brand:hover {
  opacity: 0.88;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.footer-contact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.dot {
  opacity: 0.5;
}

.footer-contact a {
  border-bottom: 1px solid transparent;
  transition: border-color 220ms var(--ease), color 220ms var(--ease);
}
.footer-contact a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

.footer-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Canvas alignment pass */
.hero--inner {
  min-height: 405px;
}

.hero--inner .hero-content {
  padding: 128px 20px 92px;
}

.page-hero-title,
.brand-mark,
.h2,
.method-title,
.method-block__heading,
.team-showcase__title,
.footer-brand {
  font-family: var(--display);
  font-weight: 300;
}

.page-hero-title {
  font-size: clamp(48px, 6.1vw, 78px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.h2 {
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.12;
}

.section--about-feature {
  padding: 108px 0 164px;
}

.about-feature--center .about-feature__copy {
  max-width: 820px;
}

.about-feature__kicker,
.method-kicker,
.kicker {
  font-size: 16px;
  letter-spacing: 0.02em;
  color: rgba(16, 16, 16, 0.86);
}

.about-feature__lead {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.5;
  color: rgba(16, 16, 16, 0.92);
}

.section--about-founder {
  padding-top: 92px;
  padding-bottom: 180px;
}

.about-founder {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 440px);
  gap: clamp(72px, 9vw, 126px);
}

.about-founder__label {
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--text);
}

.about-founder__name {
  font-size: clamp(38px, 4.2vw, 54px);
}

.about-founder__p {
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.48;
  color: #050505;
}

.about-founder__photo {
  max-width: 440px;
  height: 830px;
}

.team-showcase__head {
  margin-bottom: 70px;
}

.team-showcase__grid {
  max-width: 1040px;
  margin: 0 auto;
  gap: 54px 86px;
}

.team-card__media {
  box-shadow: none;
  border: 0;
}

.team-card__label {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  color: var(--text);
}

.section--method {
  padding-top: 150px;
}

.method-head--canvas {
  margin-left: 64px;
  margin-bottom: 120px;
}

.method-title {
  font-size: clamp(42px, 4.3vw, 56px);
}

.method-block {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  gap: clamp(64px, 7vw, 110px);
  margin-top: 140px;
}

.method-block:first-of-type {
  margin-top: 0;
}

.method-block__figure {
  aspect-ratio: 0.78;
  max-height: none;
}

.method-block__heading {
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.12;
}

.method-block__intro,
.method-dash-list li,
.method-block__punch,
.method-block__action {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: #050505;
}

.section--work-model {
  border-top: 0;
  padding-top: 170px;
  padding-bottom: 130px;
}

.work-model__title {
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: 0.02em;
}

.work-model__sub {
  font-size: clamp(22px, 2vw, 30px);
  color: var(--text);
}

.work-model__diagram {
  display: block;
  max-width: 1040px;
}

.work-model__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.work-model__row--top {
  margin-bottom: 24px;
}

.work-model__row--bottom {
  margin-top: 24px;
}

.work-model__line {
  width: 100%;
  height: 1px;
  min-height: 1px;
  background: var(--text);
}

.work-model__label {
  display: block;
  font-size: clamp(22px, 2.1vw, 32px);
  letter-spacing: 0;
  font-weight: 400;
  text-align: center;
}

.work-model__foot {
  margin-top: 72px;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: 0.02em;
}

.section--cases-canvas {
  padding-top: 90px;
  padding-bottom: 120px;
}

.cases-grid--canvas {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 96px 128px;
  margin-top: 0;
}

.cases-grid--canvas .cases-card--wide {
  grid-column: 1 / -1;
}

.cases-card {
  overflow: visible;
}

.cases-card img {
  aspect-ratio: 0.78;
  object-fit: cover;
}

.cases-card--wide img {
  aspect-ratio: 2.05 / 1;
}

.cases-card__body {
  padding: 34px 0 0;
}

.cases-card__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
}

.cases-card__meta {
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(16, 16, 16, 0.78);
}

.section--contact {
  background: #fff;
  padding-top: 112px;
  padding-bottom: 122px;
}

.contact {
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
  max-width: 980px;
}

.contact-list a {
  font-size: 25px;
  color: var(--text);
}

.contact__form {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  justify-self: stretch;
}

.contact > .contact__form {
  width: 100%;
}

.contact__form .field {
  min-width: 0;
  width: 100%;
}

.field__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field__input {
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 16, 0.36);
  border-radius: 0;
  padding: 16px 0;
  font-size: 18px;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.field__input--textarea {
  border: 1px solid rgba(16, 16, 16, 0.36);
  padding: 18px;
  min-height: 150px;
  margin-top: 18px;
}

.contact__form .btn {
  justify-content: flex-start;
  width: max-content;
  height: auto;
  padding: 18px 0 7px;
  border: 0;
  border-radius: 0;
  border-bottom: 2px solid var(--text);
  background: transparent;
  box-shadow: none;
  color: var(--text);
  font-size: 16px;
  letter-spacing: 0.02em;
}

.contact__form .btn:hover {
  box-shadow: none;
}

.footer {
  padding: 92px 0;
  background: #000;
}

.footer-inner {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand {
  font-size: clamp(38px, 4vw, 56px);
}

.footer-brand__img {
  display: block;
  width: min(260px, 48vw);
  height: auto;
}

.footer-brand__img--asset {
  filter: invert(1);
}

.footer-brand__img--uploaded {
  filter: invert(1);
}

.footer-meta {
  display: contents;
}

.footer-contact {
  display: grid;
  gap: 4px;
  justify-content: center;
  text-align: center;
  font-size: 20px;
}

.footer-contact .dot {
  display: none;
}

.footer-icons {
  justify-content: flex-end;
}

.hero--inner {
  min-height: 52vh;
}

.hero--inner .hero-content {
  padding: 132px 20px 56px;
}

.hero-content--page {
  padding-top: 120px;
}

.page-hero-title {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(40px, 7.5vw, 76px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.page-about .hero--inner {
  min-height: 42vh;
}

.page-about .hero--inner .hero-content {
  padding-bottom: 48px;
}

.container--narrow {
  max-width: 720px;
  margin: 0 auto;
}

/* Kicker reutilizable (p. ej. work.php) */
.about-kicker {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.52);
  margin: 0 0 16px;
}


.section--about-feature {
  padding-top: 164px;
  padding-bottom: 164px;
}

.about-feature {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.about-feature__copy {
  max-width: 44rem;
  margin: 0 auto;
  padding-top: 8px;
}

.about-feature__kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.52);
  margin: 0 0 18px;
}

.about-feature__lead {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(16, 16, 16, 0.84);
}

.about-feature__text {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.72;
  color: rgba(16, 16, 16, 0.76);
}

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

.about-feature__figure {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 400px;
  justify-self: end;
  height: min(88vh, 920px);
  min-height: 420px;
  overflow: hidden;
}

.about-feature__parallax {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-feature__parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  will-change: transform;
  transform: scale(1.05);
}

.about-founder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  justify-content: center;
}

.about-founder__copy {
  width: 100%;
  max-width: none;
}

.about-founder__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.52);
  margin: 0 0 10px;
}

.about-founder__name {
  margin-bottom: 22px;
}

.about-founder__p {
  margin-bottom: 14px;
  font-size: var(--about-founder-text-size, clamp(20px, 2vw, 27px));
}

.about-founder__photo {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: min(100%, 560px);
  justify-self: center;
  height: min(82vh, 820px);
  min-height: 400px;
  overflow: hidden;
}

.about-founder__parallax {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-founder__photo img,
.about-founder__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(1);
  display: block;
  will-change: transform;
  transform: scale(1.05);
}

.h2--center {
  text-align: center;
}

.team-showcase__head {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}

.team-showcase__title {
  margin-bottom: 10px;
}

.team-showcase__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}

.team-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.team-card:nth-child(-n + 3) {
  grid-column: span 4;
}

.team-card:nth-child(n + 4) {
  grid-column: span 3;
}

.team-card__media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, 0.1);
  background: #f4f4f4;
  /* Maqueta: cards más “cuadradas” y limpias. */
  aspect-ratio: 1 / 1;
  border-radius: 0;
  box-shadow: 0 20px 56px rgba(16, 16, 16, 0.08);
  transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

.team-card:hover .team-card__media {
  box-shadow: 0 26px 70px rgba(16, 16, 16, 0.12);
}

.team-card:hover .team-card__media img {
  transform: scale(1.03);
}

.team-card__label {
  margin: 14px 0 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(16, 16, 16, 0.68);
  line-height: 1.35;
}

.team-showcase__note {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.65s var(--ease), transform 0.75s var(--ease);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.work-intro {
  max-width: 52rem;
  margin-bottom: 22px;
}

.section-cta {
  margin-top: 18px;
}

.section--contact-cta {
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.03), rgba(16, 16, 16, 0));
}

.contact-cta {
  max-width: none;
}

.contact-cta__lead {
  margin-bottom: 8px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.cases-card--wide {
  grid-column: 1 / -1;
}

.cases-card {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.cases-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.cases-card__body {
  padding: 16px 16px 18px;
  background: #fff;
}

.cases-card__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.cases-card__meta {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.55);
}

/* —— Service: El Método e7 + Modelo de trabajo —— */
.page-service .hero--inner {
  min-height: 44vh;
}

.method-figure {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #f0f0f0;
  overflow: hidden;
}

.method-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--method {
  padding-top: 32px;
  padding-bottom: 64px;
}

.method-head {
  max-width: 42rem;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.method-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.52);
}

.method-title {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(34px, 5.2vw, 56px);
  letter-spacing: 0.02em;
  line-height: 1.12;
  color: var(--text);
}

.method-block {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  margin-top: clamp(48px, 7vw, 88px);
}

.method-block:first-of-type {
  margin-top: clamp(28px, 4vw, 48px);
}

.method-block--img-right .method-block__figure {
  order: 2;
}

.method-block--img-right .method-block__copy {
  order: 1;
}

.method-block__figure {
  margin: 0;
  aspect-ratio: 3 / 4;
  max-height: min(70vh, 540px);
  overflow: hidden;
  background: #ebebeb;
}

.method-block__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.method-block__heading {
  margin: 0 0 14px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--text);
}

.method-block__intro {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 16, 16, 0.82);
}

.method-block__action {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.method-dash-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.method-dash-list li {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(16, 16, 16, 0.84);
}

.method-dash-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text);
}

.method-block__punch {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(16, 16, 16, 0.88);
}

.section--work-model {
  padding-top: 48px;
  padding-bottom: 72px;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
}

.work-model {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.work-model__title {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.work-model__sub {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(16, 16, 16, 0.72);
}

/* Móvil: línea vertical central; etapas alternan izquierda / derecha (orden de lectura en zigzag) */
.work-model__diagram {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-rows: repeat(6, minmax(2.6rem, auto));
  column-gap: 0;
  row-gap: 20px;
  align-items: center;
  margin: 36px auto 32px;
  max-width: min(100%, 400px);
}

.work-model__label {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: clamp(10px, 2.8vw, 12px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.35;
}

.work-model__label--diag {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  text-align: right;
  padding-right: 18px;
}

.work-model__label--est {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
  text-align: left;
  padding-left: 18px;
}

.work-model__label--plan {
  grid-column: 1;
  grid-row: 3;
  justify-self: end;
  text-align: right;
  padding-right: 18px;
}

.work-model__label--act {
  grid-column: 3;
  grid-row: 4;
  justify-self: start;
  text-align: left;
  padding-left: 18px;
}

.work-model__label--exp {
  grid-column: 1;
  grid-row: 5;
  justify-self: end;
  text-align: right;
  padding-right: 18px;
}

.work-model__label--med {
  grid-column: 3;
  grid-row: 6;
  justify-self: start;
  text-align: left;
  padding-left: 18px;
}

.work-model__line {
  grid-column: 2;
  grid-row: 1 / -1;
  z-index: 0;
  width: 1px;
  height: 100%;
  min-height: 220px;
  margin: 0 auto;
  align-self: stretch;
  background: var(--text);
  border: 0;
}

.work-model__foot {
  margin: 14px 0 0;
  font-family: var(--sans);
  font-size: clamp(11px, 2.1vw, 13px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.45;
  color: var(--text);
}

/* Tablet: línea horizontal y filas 3+3 (mejor legibilidad que la vertical en pantallas más anchas) */
@media (min-width: 720px) and (max-width: 959px) {
  .work-model__diagram {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto 1px auto;
    row-gap: 18px;
    column-gap: 8px;
    max-width: 640px;
  }

  .work-model__label {
    padding-left: 0;
    padding-right: 0;
  }

  .work-model__label--diag {
    grid-column: 1 / 5;
    grid-row: 1;
    justify-self: center;
    text-align: center;
  }

  .work-model__label--plan {
    grid-column: 5 / 9;
    grid-row: 1;
    justify-self: center;
    text-align: center;
  }

  .work-model__label--exp {
    grid-column: 9 / 13;
    grid-row: 1;
    justify-self: center;
    text-align: center;
  }

  .work-model__line {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    height: 1px;
    min-height: 1px;
    align-self: center;
  }

  .work-model__label--est {
    grid-column: 1 / 5;
    grid-row: 3;
    justify-self: center;
    text-align: center;
  }

  .work-model__label--act {
    grid-column: 5 / 9;
    grid-row: 3;
    justify-self: center;
    text-align: center;
  }

  .work-model__label--med {
    grid-column: 9 / 13;
    grid-row: 3;
    justify-self: center;
    text-align: center;
  }
}

@media (min-width: 960px) {
  .work-model__diagram {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto 1px auto;
    column-gap: 10px;
    row-gap: 22px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }

  .work-model__label {
    font-size: 12px;
    letter-spacing: 0.16em;
    padding-left: 0;
    padding-right: 0;
  }

  .work-model__label--diag {
    grid-column: 1 / 3;
    grid-row: 1;
    justify-self: start;
    text-align: left;
  }

  .work-model__label--plan {
    grid-column: 4 / 8;
    grid-row: 1;
    justify-self: center;
    text-align: center;
  }

  .work-model__label--exp {
    grid-column: 9 / 13;
    grid-row: 1;
    justify-self: end;
    text-align: right;
  }

  .work-model__line {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    height: 1px;
    min-height: 1px;
    align-self: center;
  }

  .work-model__label--est {
    grid-column: 1 / 4;
    grid-row: 3;
    justify-self: center;
    text-align: center;
  }

  .work-model__label--act {
    grid-column: 5 / 9;
    grid-row: 3;
    justify-self: center;
    text-align: center;
  }

  .work-model__label--med {
    grid-column: 10 / 13;
    grid-row: 3;
    justify-self: end;
    text-align: right;
  }
}

/* reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms var(--ease), transform 700ms var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .header-inner {
    width: min(1180px, calc(100% - 32px));
  }

  .section {
    padding: 48px 0;
  }

  .section--intro {
    padding: 36px 0 22px;
  }

  .section--purpose {
    padding: 22px 0 44px;
  }

  .nav {
    gap: 10px;
    font-size: 11px;
  }

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

  .intro__copy {
    max-width: 520px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-wall {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-feature {
    grid-template-columns: 1fr;
  }

  .about-feature__figure {
    max-width: none;
    justify-self: stretch;
    height: min(70vh, 560px);
    min-height: 320px;
    order: -1;
  }

  .about-founder {
    grid-template-columns: 1fr;
  }

  .about-founder__photo {
    max-height: none;
    height: min(72vh, 620px);
    max-width: none;
    justify-self: stretch;
    order: -1;
  }

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

  .method-block {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  .method-block--img-right .method-block__figure,
  .method-block--img-right .method-block__copy {
    order: unset;
  }

  .method-block__figure {
    order: -1;
    max-height: 420px;
    aspect-ratio: 16 / 10;
  }

  .method-title {
    font-size: clamp(30px, 6vw, 44px);
  }

  .team-card:nth-child(-n + 7) {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  .es7-hero--split .hero-media,
  .hero-slide__media {
    background-image: var(--es7-bg-mobile);
  }

  .hero-slider__arrow {
    width: 40px;
    height: 40px;
  }

  .hero-slider__arrow--prev {
    left: 14px;
  }

  .hero-slider__arrow--next {
    right: 14px;
  }

  .hero-slider__dots {
    bottom: 20px;
  }

  #contenido {
    scroll-margin-top: 72px;
  }

  body.nav-is-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-inner {
    justify-content: center;
    gap: 6px;
    width: min(1180px, calc(100% - 20px));
    margin-top: max(12px, env(safe-area-inset-top, 0px));
    padding-left: max(0px, env(safe-area-inset-left, 0px));
    padding-right: max(0px, env(safe-area-inset-right, 0px));
  }

  .site-header.is-solid .header-inner {
    padding-top: max(8px, env(safe-area-inset-top, 0px));
    padding-bottom: 8px;
  }

  .header-logo {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    max-width: min(230px, 46vw);
    font-size: clamp(17px, 4.8vw, 22px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
  }

  .header-logo__img {
    height: 24px;
    max-width: min(230px, 46vw);
  }

  .site-header.is-solid .header-logo {
    color: rgba(16, 16, 16, 0.92);
    text-shadow: none;
  }

  .menu-btn {
    display: grid;
    position: absolute;
    left: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .header-actions {
    display: flex;
    gap: 6px;
    position: absolute;
    right: 0;
    flex-shrink: 0;
  }

  .icon-link {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }

  .icon-link svg {
    width: 20px;
    height: 20px;
  }

  .icon-link i {
    font-size: 17px;
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: calc(env(safe-area-inset-top, 0px) + 76px) max(20px, env(safe-area-inset-right, 0px))
      calc(env(safe-area-inset-bottom, 0px) + 24px) max(20px, env(safe-area-inset-left, 0px));
    max-height: min(100vh, 100dvh);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 15px;
    letter-spacing: 0.1em;
    justify-content: stretch;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    border: 0;
    border-bottom: 1px solid rgba(16, 16, 16, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(16, 16, 16, 0.82);
    display: grid;
    gap: 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms var(--ease), transform 240ms var(--ease);
    will-change: transform, opacity;
    box-shadow: 0 24px 80px rgba(16, 16, 16, 0.14);
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    touch-action: pan-y;
  }

  .nav__link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 4px;
    background: transparent;
    border-bottom: 1px solid rgba(16, 16, 16, 0.1);
    font-size: 14px;
    letter-spacing: 0.14em;
  }

  .nav__link::after {
    display: none;
  }

  .section {
    padding: 40px 0;
  }

  .section--home-statement {
    min-height: 360px;
    padding: 86px 0 90px;
  }

  .home-statement {
    max-width: 620px;
  }

  .home-statement__kicker {
    margin-bottom: 40px;
    font-size: 14px;
  }

  .home-statement__lead {
    font-size: clamp(22px, 6.2vw, 28px);
    line-height: 1.24;
    padding: 0 12px;
  }

  .section--intro {
    padding: 28px 0 20px;
  }

  .section--purpose {
    padding: 20px 0 36px;
  }

  .section--contact {
    padding-bottom: 48px;
  }

  .section--contact-cta {
    padding-top: 36px;
    padding-bottom: 44px;
  }

  .intro__copy {
    max-width: none;
    padding-top: 0;
  }

  .intro__text {
    font-size: 15px;
    line-height: 1.65;
  }

  .intro__kicker {
    letter-spacing: 0.2em;
  }

  .purpose__copy {
    max-width: none;
    padding-top: 0;
  }

  .body {
    font-size: 15px;
    line-height: 1.6;
  }

  .h2 {
    font-size: clamp(24px, 6.2vw, 34px);
    line-height: 1.2;
  }

  .text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 4px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding: 108px max(16px, env(safe-area-inset-left, 0px)) 72px max(16px, env(safe-area-inset-right, 0px));
  }

  .brand-mark {
    font-size: clamp(36px, 11vw, 64px);
    line-height: 1.05;
    padding: 0 8px;
  }

  .hero--inner {
    min-height: 44vh;
  }

  .hero--inner .hero-content {
    padding-top: max(100px, calc(env(safe-area-inset-top, 0px) + 88px));
    padding-bottom: 40px;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .page-hero-title {
    font-size: clamp(28px, 11vw, 48px);
    letter-spacing: 0.06em;
    line-height: 1.1;
  }

  .page-about .hero--inner {
    min-height: 38vh;
  }

  .about-feature__lead,
  .about-feature__text {
    font-size: 15px;
    line-height: 1.68;
  }

  .about-feature__lead {
    font-size: 17px;
  }

  .about-feature__kicker {
    letter-spacing: 0.22em;
  }

  .about-feature__figure {
    height: min(62vh, 520px);
    min-height: 280px;
    order: -1;
    justify-self: stretch;
    max-width: none;
  }

  .container--narrow {
    width: min(720px, calc(100% - 28px));
  }

  .about-founder__copy .body,
  .about-founder__p {
    font-size: 15px;
  }

  .about-founder__photo {
    height: min(58vh, 520px);
    min-height: 280px;
    order: -1;
    justify-self: stretch;
    max-width: none;
  }

  .team-showcase__grid {
    gap: 16px;
  }

  .team-card:nth-child(n) {
    grid-column: span 12;
  }

  .team-card__label {
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 0 4px;
  }

  .team-showcase__head {
    margin-bottom: 26px;
  }

  .section--method {
    padding-bottom: 48px;
  }

  .method-head {
    margin-bottom: 28px;
  }

  .method-block__heading {
    font-size: clamp(22px, 5.5vw, 30px);
  }

  .method-block__intro,
  .method-dash-list li {
    font-size: 15px;
  }

  .method-block__figure {
    max-height: 320px;
    aspect-ratio: 4 / 3;
  }

  .section--work-model {
    padding-top: 36px;
    padding-bottom: 52px;
  }

  .work-model__diagram {
    margin: 28px 0 28px;
  }

  .work-model__foot {
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 0 4px;
  }

  .cases-grid {
    gap: 18px;
  }

  .cases-card__body {
    padding: 14px 14px 16px;
  }

  .contact {
    gap: 28px;
  }

  .contact__form {
    padding: 16px 14px;
  }

  .field__input {
    font-size: 16px;
    min-height: 48px;
  }

  .field__input--textarea {
    min-height: 140px;
  }

  .btn {
    width: 100%;
    max-width: none;
    min-height: 48px;
  }

  .contact-cta .btn--primary {
    margin-top: 4px;
  }

  .footer {
    padding: 20px 0 max(22px, env(safe-area-inset-bottom, 0px));
  }

  .footer-inner {
    gap: 20px;
  }

  .footer-meta {
    gap: 18px;
  }

  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-contact .dot {
    display: none;
  }

  .footer-icons {
    gap: 14px;
  }

  .footer-icons .icon-link {
    width: 24px;
    height: 24px;
    min-width: 44px;
    min-height: 44px;
    display: inline-grid;
    place-items: center;
  }

  .footer-icons .icon-link svg {
    width: 22px;
    height: 22px;
  }

  .footer-icons .icon-link i {
    font-size: 18px;
  }

  .logo-shot {
    margin-top: 14px;
  }

  .logo-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .muted {
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-inner {
    width: min(1180px, calc(100% - 16px));
  }

  .header-logo {
    max-width: min(180px, 38vw);
    font-size: 16px;
  }

  .section {
    padding: 32px 0;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    padding-bottom: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Final Canvas overrides: keep after responsive legacy rules. */
@media (min-width: 721px) {
  .hero--inner {
    min-height: 405px;
  }

  .hero--inner .hero-content {
    padding: 128px 20px 92px;
  }

  .page-hero-title {
    font-family: var(--display);
    font-size: clamp(48px, 6.1vw, 78px);
    font-weight: 300;
    letter-spacing: 0.01em;
  }

  .work-model__diagram {
    display: block;
    max-width: 1040px;
  }

  .work-model__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
  }

  .work-model__row--top {
    margin-bottom: 24px;
  }

  .work-model__row--bottom {
    margin-top: 24px;
  }

  .work-model__line {
    display: block;
    width: 100%;
    height: 1px;
    min-height: 1px;
  }

  .work-model__label {
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
    text-align: center;
    padding: 0;
  }
}

@media (max-width: 720px) {
  .hero--inner {
    min-height: 360px;
  }

  .page-hero-title {
    font-family: var(--display);
    font-weight: 300;
    letter-spacing: 0.01em;
  }

  .section--about-feature,
  .section--method,
  .section--contact {
    padding-top: 72px;
  }

  .about-feature__lead,
  .about-founder__p,
  .method-block__intro,
  .method-dash-list li,
  .method-block__punch,
  .contact-list a {
    font-size: 18px;
  }

  .about-founder__p {
    font-size: var(--about-founder-text-size-mobile, 18px);
  }

  .method-block__heading {
    font-family: var(--display);
    font-size: 36px;
  }

  .method-block,
  .about-founder,
  .contact {
    gap: 32px;
  }

  .about-founder {
    grid-template-columns: 1fr;
  }

  .about-founder__copy {
    width: 100%;
    max-width: none;
  }

  .about-founder__photo {
    height: auto;
    min-height: 0;
  }

  .cases-grid--canvas {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .cases-card--wide img,
  .cases-card img {
    aspect-ratio: 4 / 3;
  }

  .work-model__diagram {
    display: block;
  }

  .work-model__row {
    display: grid;
    gap: 16px;
  }

  .work-model__label {
    display: block;
    padding: 0;
    text-align: center;
  }

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

  .footer-icons {
    justify-content: center;
  }
}

/* Home statement: exact Canvas spacing/type override. */
.section--home-statement {
  min-height: 440px;
  padding: 0;
  display: flex;
  align-items: center;
  text-align: center;
}

.home-statement {
  max-width: 1040px;
  margin: 0 auto;
}

.home-statement__kicker {
  margin: 0 0 36px;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 4.5px;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.52);
}

.home-statement__lead {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(16, 16, 16, 0.78);
}

@media (max-width: 720px) {
  .section--home-statement {
    min-height: 360px;
    padding: 64px 0;
  }

  .home-statement {
    max-width: 620px;
  }

  .home-statement__kicker {
    margin-bottom: 28px;
    font-size: 12px;
    letter-spacing: 3.6px;
  }

  .home-statement__lead {
    font-size: 18px;
    line-height: 31px;
  }
}

/* Override defensivo: evita que el formulario de contacto colapse al ancho mínimo en otros WordPress. */
.contact .contact__form,
.contact .contact__form .field,
.contact .contact__form .field__input {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
