/*
Theme Name: MOMP theme
Theme URI: https://antiestudi.com
Description: Desarrollo web para MOMP Estudio.
Author: Anti
Author URI: https://antiestudi.com
Version: 0.1.0
Text Domain: momp-theme
*/

@import url("https://use.typekit.net/ffo3tps.css");

/* =========================================================
   ÍNDICE
   1. VARIABLES
   2. RESET Y BASE
   3. HEADER / FOOTER
   4. PRELOADER
   5. MENÚ FULLSCREEN
   6. CURSOR
   7. TIPOGRAFÍA GENERAL
   8. CONTACTO
   9. ESTUDIO
   10. ARCHIVO PROYECTOS
   11. SINGLE PROYECTO
   12. BLOG ARCHIVE
   13. SINGLE BLOG
   14. HOME
   15. COOKIEYES
   16. SERVICIOS
   17. RESPONSIVE
   ========================================================= */


/* =========================================================
   1. VARIABLES
   ========================================================= */

:root{
  --color-marron:#302725;
  --color-marron-secundario:#533e31;
  --color-naranja:#bb8540;
  --color-beige-oscuro:#bda793;
  --color-beige:#d0ccc0;

  --header-h:7vh;
  --footer-h:7vh;
  --main-h:86vh;

  --pad-x:30px;
  --pad-x-mobile:20px;

  --logo-w:200px;
  --logo-w-mobile:180px;

  --menu-plus-size:45px;
  --menu-link-size:90px;
  --menu-link-size-mobile:60px;

  --body-font-size:12px;
  --footer-font-size:12px;

  --z-header:100;
  --z-footer:90;
  --z-menu:9999;
  --z-preloader:99999;
  --z-cursor:999999;

  --studio-gap:14px;
  --studio-text-inner:90%;
}


/* =========================================================
   2. RESET Y BASE
   ========================================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  width:100%;
}

body{
  font-family:"neue-haas-grotesk-display",sans-serif;
  font-weight:500;
  font-size:var(--body-font-size);
  color:var(--color-marron);
  background:var(--color-beige);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

body.momp-horizontal-page{
  overflow:hidden;
}

body.momp-modal-open{
  overflow:hidden;
}

a{
  color:var(--color-marron);
  text-decoration:none;
}

p,
a,
span,
h1,
h2,
h3,
h4,
h5,
h6{
  font-family:"neue-haas-grotesk-display",sans-serif;
  font-style:normal;
}

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

.site-main{
  min-height:100vh;
}

.momp-page{
  min-height:100vh;
}

.momp-placeholder{
  padding:calc(var(--header-h) + 40px) var(--pad-x) calc(var(--footer-h) + 40px);
}

.momp-placeholder h1{
  font-size:clamp(42px,5vw,90px);
  line-height:.95;
  margin-bottom:16px;
}

.momp-placeholder p{
  font-size:clamp(18px,2vw,30px);
  max-width:900px;
}

.momp-horizontal-shell{
  height:100vh;
  padding-top:var(--header-h);
  padding-bottom:var(--footer-h);
  overflow:hidden;
}

.momp-horizontal-inner{
  height:calc(100vh - var(--header-h) - var(--footer-h));
  overflow:hidden;
}

.momp-vertical-shell{
  min-height:100vh;
  padding-top:var(--header-h);
  padding-bottom:var(--footer-h);
}

.section-grande{
  width:100vw;
  height:100vh;
  display:inline-flex;
  align-items:flex-start;
  vertical-align:top;
  padding-top:var(--header-h);
  padding-bottom:var(--footer-h);
  padding-left:var(--pad-x);
}


/* =========================================================
   3. HEADER / FOOTER
   ========================================================= */

.site-header,
.site-footer{
  position:fixed;
  left:0;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 var(--pad-x);
}

.site-header{
  top:0;
  height:var(--header-h);
  z-index:var(--z-header);
}

.site-footer{
  bottom:0;
  height:var(--footer-h);
  z-index:var(--z-footer);
  font-size:var(--footer-font-size);
}

.site-header__left,
.site-header__right,
.site-footer__left,
.site-footer__center,
.site-footer__right{
  display:flex;
  align-items:center;
}

.site-header__left{
  flex:1 1 auto;
}

.site-header__right{
  flex:0 0 auto;
}

.site-footer__left{
  flex:0 0 auto;
}

.site-footer__center{
  flex:1 1 auto;
  justify-content:center;
}

.site-footer__right{
  flex:0 0 auto;
}

.site-footer__policies{
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}

.site-header__logo img{
  width:var(--logo-w);
  transition:width .35s ease;
}

.site-header__toggle{
  appearance:none;
  border:0;
  background:none;
  color:var(--color-marron);
  font-family:"neue-haas-grotesk-display",sans-serif;
  font-size:var(--menu-plus-size);
  font-weight:500;
  line-height:1;
  padding:0;
  cursor:pointer;
}

body:not(.momp-horizontal-page) .site-header{
  position:relative;
}

body:not(.momp-horizontal-page) .site-footer{
  position:relative;
  height:auto;
  min-height:auto;
  padding:18px var(--pad-x) 24px;
}

body:not(.momp-horizontal-page) .site-footer__center{
  justify-content:center;
}

body:not(.momp-horizontal-page) main{
  min-height:auto;
}


/* =========================================================
   4. PRELOADER
   ========================================================= */

#preloader{
  position:fixed;
  inset:0;
  background:var(--color-marron-secundario);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  z-index:var(--z-preloader);
  overflow:hidden;
}

#preloader .logo{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:0;
  font-size:30vw;
  line-height:.82;
  font-weight:600;
  color:var(--color-beige);
  margin-bottom:20px;
  text-align:center;
  white-space:nowrap;
}

#preloader .logo.is-project-title{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  row-gap:.04em;
  column-gap:.18em;
  max-width:88vw;
  font-size:clamp(70px,16vw,260px);
  line-height:.86;
  letter-spacing:-.038em;
  white-space:normal;
}

#preloader .logo.is-project-title.is-medium{
  font-size:clamp(56px,12vw,180px);
  max-width:84vw;
}

#preloader .logo.is-project-title.is-long{
  font-size:clamp(34px,8vw,110px);
  line-height:.92;
  max-width:82vw;
}

#loading-percentage{
  font-size:10vw;
  line-height:1;
  color:var(--color-beige);
}

.pre-char-wrap,
.pre-word-wrap{
  display:inline-block;
  overflow:hidden;
  line-height:1;
  vertical-align:top;
}

.pre-char,
.pre-word{
  display:inline-block;
  will-change:transform;
}

.pre-word{
  white-space:nowrap;
}


/* =========================================================
   5. MENÚ FULLSCREEN
   ========================================================= */

.momp-menu{
  display:none;
  position:fixed;
  inset:0;
  background:var(--color-naranja);
  z-index:var(--z-menu);
}

.momp-menu__inner{
  position:relative;
  width:100%;
  height:100%;
}

.momp-menu__nav{
  position:absolute;
  left:var(--pad-x);
  bottom:30px;
}

.momp-menu__nav a{
  display:block;
  color:var(--color-marron);
  font-size:var(--menu-link-size);
  font-weight:500;
  line-height:.95;
  opacity:0;
  transform:translateX(-50px);
}

.momp-menu__nav a:hover{
  color:var(--color-beige);
  transform:skewX(-14deg)!important;
  transition:transform .4s ease,color .25s ease;
}

.momp-menu__close{
  position:absolute;
  top:19px;
  right:var(--pad-x);
  width:22px;
  height:22px;
  appearance:none;
  border:0;
  background:none;
  padding:0;
  cursor:pointer;
}

.momp-menu__close img{
  width:100%;
  height:100%;
  object-fit:contain;
}


/* =========================================================
   6. CURSOR
   ========================================================= */

#custom-cursor{
  position:fixed;
  top:0;
  left:0;
  width:20px;
  height:20px;
  border-radius:50%;
  background:var(--color-marron);
  pointer-events:none;
  transform:translate(-50%,-50%);
  z-index:var(--z-cursor);
  display:none;
}

body.momp-horizontal-page #custom-cursor,
body.momp-studio-page-body #custom-cursor{
  display:block;
}

#custom-cursor.on-link{
  width:70px;
  height:70px;
  background-color:var(--color-marron);
  background-image:url('/wp-content/uploads/2026/04/flecha-momp.svg');
  background-repeat:no-repeat;
  background-position:center;
  background-size:22px;
}

#custom-cursor.on-link::after{
  content:none;
}

#custom-cursor.on-project-title{
  width:auto;
  height:auto;
  min-width:0;
  background:transparent;
  border-radius:0;
  pointer-events:none;
  transform:translate(-50%,-50%);
}

#custom-cursor.on-project-title::after{
  content:attr(data-title);
  display:block;
  width:420px;
  max-width:420px;
  color:var(--color-beige);
  font-size:56px;
  line-height:.92;
  font-weight:600;
  white-space:normal;
  word-break:normal;
  overflow-wrap:break-word;
  text-wrap:balance;
  text-align:center;
  text-shadow:0 0 14px rgba(48,39,37,.18);
}

#custom-cursor.on-home-project-title::after{
  color:var(--color-marron);
  text-shadow:none;
}




/* =========================================================
   7. TIPOGRAFÍA GENERAL
   ========================================================= */

.abp-texto{
  font-size:20px;
  line-height:1.2em;
  font-weight:500;
  color:var(--color-marron);
  padding-bottom:15px;
  letter-spacing:-.006em;
}

.abp-texto p{
  margin:0 0 14px 0;
  letter-spacing:-.006em;
}

.link-contacto{
  font-size:20px;
  line-height:1.2em;
  font-weight:500;
  color:var(--color-marron);
  text-decoration:none;
  letter-spacing:-.006em;
}

.momp-contact-cta{
  margin:80px 0 0;
}

.momp-contact-cta__link{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:16px;
  color:var(--color-marron);
  font-size:34px;
  line-height:.9;
  font-weight:600;
  letter-spacing:-.06em;
  text-decoration:none;
  text-transform:uppercase;
  width:auto;
}

.momp-contact-cta__link span:first-child{
  max-width:760px;
  background-image:linear-gradient(currentColor,currentColor);
  background-repeat:no-repeat;
  background-position:0 100%;
  background-size:100% 2px;
  padding-bottom:4px;
  transition:background-size .28s ease,color .28s ease;
}

.momp-contact-cta__arrow{
  flex:0 0 auto;
  width:30px;
  height:35px;
  background-image:url('/wp-content/uploads/2026/05/flecha-momp-marron.svg');
  background-repeat:no-repeat;
  background-position:right;
  background-size:contain;
  transition:transform .28s ease;
}

.momp-contact-cta__link:hover span:first-child{
  color:var(--color-naranja);
}

.momp-contact-cta__link:hover .momp-contact-cta__arrow{
  transform:translateX(6px);
}

.abp-h1{
  font-size:70px;
  font-weight:600;
  color:var(--color-marron);
  line-height:60px;
  padding-bottom:10px;
  letter-spacing:-.038em;
}

.abp-h2{
  font-size:70px;
  font-weight:600;
  color:var(--color-marron);
  line-height:1;
  letter-spacing:-.038em;
}

.abp-slogan{
  font-size:20px;
  font-weight:500;
  font-style:italic;
  color:var(--color-naranja);
  padding-bottom:10px;
  letter-spacing:-.006em;
}

.abp-nombre{
  padding-top:14px;
  font-size:25px;
  font-weight:500;
  line-height:1.05;
  margin:0 0 6px 0;
  letter-spacing:-.018em;
}

.abp-cargo{
  font-size:20px;
  font-weight:500;
  font-style:italic;
  line-height:1.15;
  margin:0;
  opacity:.9;
  letter-spacing:-.006em;
}

.abp-publicacion{
  font-size:20px;
  font-weight:500;
  line-height:1.2;
  margin:0 0 8px 0;
  letter-spacing:-.006em;
}

.abp-texto-grande{
  font-weight:600;
  color:var(--color-marron);
  font-size:10vw;
  position:static;
  margin:0;
  padding:0;
  text-align:center;
  line-height:.9;
  white-space:nowrap;
  letter-spacing:-.045em;
}

.abp-texto-inicio{
  color:var(--color-marron);
  font-size:30px;
  line-height:1.12;
  font-weight:600;
  letter-spacing:-.018em;
}

.momp-home-hero__secondary,
.momp-home-project__meta,
.momp-blog-card__excerpt,
.momp-blog-featured__excerpt,
.momp-single-post-main__content p,
.momp-single-post-main__content li,
.momp-single-service__cta-text,
.momp-single-service__item-text,
.momp-single-service__bottom-cta-text,
.momp-single-sector__bottom-cta-text,
.momp-sectors-preview__intro p{
  letter-spacing:-.006em;
}

.momp-blog-card__title,
.momp-blog-featured__title,
.momp-project-card-v2__title,
.momp-project-slide-v2__title,
.momp-single-post-side__title,
.momp-single-service__item-title,
.momp-single-service__related-title,
.momp-single-sector__project-title{
  letter-spacing:-.022em;
}


/* =========================================================
   8. CONTACTO
   ========================================================= */

body.momp-contact-page-body .site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:var(--header-h);
  z-index:var(--z-header);
}

body.momp-contact-page-body .site-footer{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  height:var(--footer-h);
  z-index:var(--z-footer);
}

.momp-contact-page{
  height:100vh;
  overflow:hidden;
  background:var(--color-beige);
}

.momp-contact{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  white-space:nowrap;
}

.momp-contact__text{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  white-space:normal;
  padding-right:30px;
}

.texto-contacto{
  padding-top:var(--header-h);
}

.image-estudio-contacto{
  width:55vw;
  height:var(--main-h);
  margin-right:30px;
  object-fit:cover;
  object-position:center center;
}


/* =========================================================
   9. ESTUDIO
   ========================================================= */

body.momp-studio-page-body{
  overflow-x:hidden;
  overflow-y:auto;
}

body.momp-studio-page-body .site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:var(--header-h);
  z-index:var(--z-header);
  background:var(--color-beige);
}

body.momp-studio-page-body .site-footer{
  position:relative;
  height:auto;
  min-height:auto;
  padding:18px var(--pad-x) 24px;
}

body.momp-studio-page-body main{
  min-height:auto;
}

.momp-studio-page{
  background:var(--color-beige);
}

/* Menú flotante */

.momp-studio-nav-wrap{
  display:flex;
  justify-content:center;
  pointer-events:none;
}

.momp-studio-nav{
  position:fixed;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  min-width:250px;
  padding:10px 16px;
  border:1px solid rgba(48,39,37,.18);
  border-radius:999px;
  background:rgba(48,39,37,.94);
  backdrop-filter:blur(8px);
  z-index:1000;
  pointer-events:auto;
  transition:transform .26s ease, opacity .26s ease;
}

body.momp-studio-nav-visible .momp-studio-nav,
.momp-studio-nav:hover{
  transform:translateX(-50%);
}

.momp-studio-nav .menu-item{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:rgba(208,204,192,.7);
  font-size:14px;
  line-height:1;
  font-weight:500;
  letter-spacing:.01em;
  transition:color .22s ease, opacity .22s ease, transform .22s ease;
}

.momp-studio-nav .menu-item:hover,
.momp-studio-nav .menu-item.is-active{
  color:var(--color-beige);
  opacity:1;
  transform:translateY(-1px);
}

/* Horizontal */

.momp-studio-horizontal{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.momp-studio-horizontal__pin{
  height:100vh;
  padding:var(--header-h) 0 var(--footer-h) 0;
  display:flex;
  align-items:flex-end;
  width:max-content;
}

.momp-studio-panel{
  flex:0 0 auto;
  margin-right:var(--studio-gap);
}

.momp-studio-panel--image{
  width:calc(86vh * 0.7);
  min-width:calc(86vh * 0.7);
  height:86vh;
}

.momp-studio-panel--image-wide{
  width:58vw;
  min-width:58vw;
  padding-left:30px;
}

.momp-studio-panel--image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.momp-studio-panel--text{
  width:calc(0.58 * 86vh);
  min-width:calc(0.58 * 86vh);
  padding:0 12px 0 4px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.momp-studio-panel--text.is-about{
  width:34vw;
  min-width:34vw;
  padding:0 12px 0 4px;
}

.momp-studio-panel--text > .abp-h1,
.momp-studio-panel--text > .abp-h2,
.momp-studio-panel--text > .abp-slogan,
.momp-studio-panel--text > .abp-texto,
.momp-studio-panel--text > div{
  width:100%;
}

.momp-studio-panel--text.is-about > .abp-h1,
.momp-studio-panel--text.is-about > .abp-h2,
.momp-studio-panel--text.is-about > .abp-slogan,
.momp-studio-panel--text.is-about > .abp-texto,
.momp-studio-panel--text.is-about > div{
  width:90%;
}

.momp-studio-panel--label{
  width:100vw;
  min-width:100vw;
  height:42vh;
  margin-right:0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  overflow:hidden;
  border-left:1px solid rgba(48,39,37,.12);
  border-right:1px solid rgba(48,39,37,.12);
}

.momp-studio-team-marquee{
  width:100%;
  overflow:hidden;
}

.momp-studio-team-marquee__track{
  display:flex;
  align-items:center;
  gap:4vw;
  width:max-content;
  animation:momp-studio-team-marquee 18s linear infinite;
  will-change:transform;
}

.momp-studio-team-marquee__track span{
  flex:0 0 auto;
  color:var(--color-marron);
  font-size:12vw;
  line-height:.86;
  font-weight:600;
  letter-spacing:-.045em;
  white-space:nowrap;
  text-transform:uppercase;
}

@keyframes momp-studio-team-marquee{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* Ajustes tipográficos dentro de estudio */

.momp-studio-page .abp-h1{
  font-size:68px;
  line-height:.9;
  padding-bottom:14px;
}

.momp-studio-page .abp-h2{
  font-size:68px;
  line-height:.92;
  padding-bottom:14px;
}

.momp-studio-page .abp-slogan{
  font-size:18px;
  line-height:1.15;
  padding-bottom:12px;
}

.momp-studio-page .abp-texto{
  font-size:20px;
  line-height:1.22;
  padding-bottom:14px;
}

.momp-studio-page .texto-pequeno{
  font-size:16px;
  line-height:1.32;
  max-width:78%;
}

.momp-studio-page .abp-texto-grande{
  font-size:9vw;
  line-height:.86;
  white-space:nowrap;
}

/* Vertical después del horizontal */

.momp-studio-full-image{
  padding:0 30px 30px;
}

.momp-studio-full-image img{
  width:100%;
  height:auto;
}

.momp-studio-photo-grid{
  display:grid;
  grid-template-columns:0.85fr 2fr;
  gap:24px;
  padding:0 30px 30px;
}

.momp-studio-photo-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.momp-studio-team{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px 24px;
  padding:18px 30px 40px;
  align-items:start;
}

.momp-studio-team__item{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.momp-studio-team__item img{
  width:100%;
  height:350px;
  object-fit:cover;
}

.momp-studio-collaborators-title{
  padding:0 30px 10px;
}

.momp-studio-collaborators{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px 24px;
  padding:0 30px 40px;
  align-items:start;
}

.momp-studio-collaborators__item{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.momp-studio-collaborators__item .abp-cargo{
  margin-bottom:10px;
}

.momp-studio-collaborators__item .abp-texto{
  padding-bottom:0;
  line-height:1.25;
}

.momp-studio-text-summary{
  position:relative;
  max-height:550px;
  overflow:hidden;
  width:100%;
}

.momp-studio-text-more{
  appearance:none;
  border:0;
  border-top:1px solid rgba(48,39,37,.18);
  background:transparent;
  color:var(--color-marron);
  margin-top:12px;
  padding:10px 0 0;
  font-family:"neue-haas-grotesk-display",sans-serif;
  font-size:14px;
  line-height:1;
  font-weight:600;
  cursor:pointer;
  width:100%;
  text-align:left;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.momp-studio-text-more::before{
  content:"Leer texto completo";
}

.momp-studio-text-more::after{
  content:"+";
  font-size:20px;
  line-height:.8;
}

.momp-studio-text-more:hover{
  color:var(--color-naranja);
}

.momp-studio-modal{
  position:fixed;
  inset:0;
  z-index:10000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .25s ease, visibility .25s ease;
}

.momp-studio-modal.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.momp-studio-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(48,39,37,.46);
}

.momp-studio-modal__dialog{
  position:relative;
  width:min(720px,100%);
  max-height:calc(100vh - 60px);
  overflow:auto;
  background:var(--color-marron-secundario);
  color:var(--color-beige);
  padding:34px 34px 38px;
}

.momp-studio-modal__close{
  position:absolute;
  top:16px;
  right:18px;
  appearance:none;
  border:0;
  background:transparent;
  color:var(--color-beige);
  font-size:34px;
  line-height:1;
  cursor:pointer;
}

.momp-studio-modal__title{
  margin:0 40px 22px 0;
  color:var(--color-beige);
  font-size:34px;
  line-height:.95;
  font-weight:600;
}

.momp-studio-modal__subtitle{
  margin:0 0 18px;
  color:var(--color-beige);
  font-size:20px;
  line-height:1.15;
  font-weight:500;
  font-style:italic;
}

.momp-studio-modal__text,
.momp-studio-modal__text a{
  color:var(--color-beige);
}

.momp-studio-modal__text{
  max-width:560px;
}

.momp-studio-publications{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  padding:0 30px 40px;
}

.momp-studio-publications__col{
  max-width:33.33vw;
}

.momp-studio-publications .abp-nombre{
  margin-bottom:12px;
}

.abp-publicacion a{
  display:inline-block;
}

.momp-studio-publications .abp-publicacion a:hover{
  font-style:italic;
  transform:skewX(-10deg);
  transition:transform .4s ease;
}


/* =========================================================
   10. ARCHIVO PROYECTOS
   ========================================================= */

/* Base: empieza en grid */
body.momp-projects-archive-body{
  overflow-x:hidden;
  overflow-y:auto;
}

body.momp-projects-archive-body .site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:var(--color-beige);
}

body.momp-projects-archive-body .site-footer{
  position:relative;
  height:auto;
  min-height:auto;
  padding:18px var(--pad-x) 24px;
}

body.momp-projects-archive-body main{
  min-height:auto;
}

.momp-projects-toggle-pill{
  position:fixed;
  top:10px;
  left:50%;
  transform:translateX(-50%);
  z-index:120;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:3px;
  border:1.5px solid var(--color-marron);
  border-radius:999px;
  background:var(--color-marron);
}

.momp-projects-toggle-pill .toggle-segment{
  width:34px;
  height:28px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--color-beige);
  opacity:.9;
  transition:background-color .2s ease,color .2s ease,opacity .2s ease;
}

.momp-projects-toggle-pill .toggle-segment.is-active{
  background:rgba(255,255,255,.12);
  opacity:1;
}

.momp-projects-toggle-pill .icon{
  width:15px;
  height:15px;
  fill:currentColor;
}

.momp-projects-page-v2{
  position:relative;
  height:auto;
  min-height:100vh;
  margin-top:0;
  margin-bottom:0;
  overflow:visible;
  padding:calc(var(--header-h) + 14px) 30px 40px;
}

.momp-projects-page-v2.is-grid .momp-projects-slider-v2{
  display:none;
}

.momp-projects-page-v2.is-grid .momp-projects-grid-v2{
  display:grid;
}

.momp-projects-page-v2.is-slider{
  height:calc(100vh - var(--header-h) - var(--footer-h));
  margin-top:var(--header-h);
  margin-bottom:var(--footer-h);
  overflow:hidden;
  padding:0;
}

.momp-projects-page-v2.is-slider .momp-projects-slider-v2{
  display:block;
}

.momp-projects-page-v2.is-slider .momp-projects-grid-v2{
  display:none;
}

/* Slider */

.momp-projects-slider-v2{
  width:100%;
  height:100%;
  overflow:hidden;
}

.momp-projects-slider-v2__track{
  display:flex;
  align-items:flex-start;
  gap:24px;
  height:100%;
  padding:0 24px;
  will-change:transform;
  transform:translate3d(0,0,0);
}

.momp-project-slide-v2{
  flex:0 0 auto;
  width:calc(0.7 * 86vh);
  height:100%;
  will-change:transform,opacity;
}

.momp-project-slide-v2__link{
  display:block;
}

.momp-project-slide-v2__image{
  width:100%;
  height:86vh;
  object-fit:cover;
  object-position:center;
  transition:filter .35s ease,transform .45s ease;
}

.momp-project-slide-v2__title{
  font-size:20px;
  line-height:1.05;
  font-weight:600;
  margin-top:10px;
  color:var(--color-marron);
}

.momp-project-slide-v2__location{
  font-size:14px;
  line-height:1.1;
  font-weight:500;
  color:var(--color-marron);
  margin-top:3px;
}

.momp-project-slide-v2__link:hover .momp-project-slide-v2__image{
  filter:brightness(.3);
  transform:scale(1.015);
}

/* Grid */

.momp-projects-grid-v2{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:30px 24px;
  padding:0;
  overflow:visible;
  align-content:start;
}

.momp-project-card-v2__link{
  display:block;
}

.momp-project-card-v2__media{
  width:100%;
  aspect-ratio:.72 / 1;
  overflow:hidden;
}

.momp-project-card-v2__image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:filter .35s ease,transform .45s ease;
}

.momp-project-card-v2__meta{
  padding-top:10px;
}

.momp-project-card-v2__copy{
  min-width:0;
}

.momp-project-card-v2__arrow{
  display:none;
}

.momp-project-card-v2__title{
  font-size:20px;
  line-height:1.05;
  font-weight:600;
  color:var(--color-marron);
}

.momp-project-card-v2__location{
  font-size:14px;
  line-height:1.1;
  font-weight:500;
  color:var(--color-marron);
  margin-top:3px;
}

.momp-project-card-v2__link:hover .momp-project-card-v2__image{
  filter:brightness(.86);
  transform:scale(1.015);
}


/* Footer y body según vista */

body.momp-projects-archive-body:has(.momp-projects-page-v2.is-slider){
  overflow:hidden;
}

body.momp-projects-archive-body:has(.momp-projects-page-v2.is-slider) .site-footer{
  position:fixed;
  left:0;
  bottom:0;
  width:100%;
  height:var(--footer-h);
  min-height:0;
  padding:0 var(--pad-x);
}

body.momp-projects-archive-body:has(.momp-projects-page-v2.is-slider) .site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
}

body.momp-projects-archive-body:has(.momp-projects-page-v2.is-grid){
  overflow-x:hidden;
  overflow-y:auto;
}


/* =========================================================
   11. SINGLE PROYECTO
   ========================================================= */

body.momp-single-project-page-body.momp-horizontal-page{
  overflow:hidden;
}

body.momp-single-project-page-body .site-header,
body.momp-single-project-page-body .site-footer{
  position:fixed;
}

body.momp-single-project-page-body .site-main,
body.momp-single-project-page-body main{
  min-height:0;
}

.momp-single-project-page{
  height:calc(100vh - var(--header-h) - var(--footer-h));
  margin-top:var(--header-h);
  margin-bottom:var(--footer-h);
  overflow-x:auto;
  overflow-y:hidden;
  white-space:nowrap;
  scrollbar-width:none;
}

.momp-single-project-page::-webkit-scrollbar{
  display:none;
}

.momp-single-project-hero,
.momp-single-project-intro,
.momp-single-project-block,
.momp-single-project-summary,
.momp-single-project-next{
  height:100%;
  display:inline-flex;
  vertical-align:top;
  align-items:flex-start;
  padding-top:0;
  padding-bottom:0;
  white-space:normal;
}

.momp-single-project-hero{
  width:100vw;
  padding-left:30px;
}

.momp-single-project-hero__main{
  display:flex;
  align-items:flex-start;
}

.momp-single-project-hero__main img{
  height:86vh;
  width:calc(0.7 * 86vh);
  object-fit:cover;
}

.momp-single-project-hero__sketch{
  flex:1;
  height:100%;
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.momp-single-project-hero__sketch img{
  width:calc(0.9 * 86vh);
  height:86vh;
  object-fit:contain;
}

.momp-single-project-intro,
.momp-single-project-block,
.momp-single-project-summary{
  margin-right:15px;
}

.momp-single-project-next{
  margin-right:30px;
}

.momp-single-project-intro{
  flex:0 0 auto;
  width:calc(0.55 * 86vh);
  min-width:calc(0.55 * 86vh);
}

.momp-single-project-intro__text{
  width:100%;
  min-width:100%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.momp-single-project-block{
  flex:0 0 auto;
}

.momp-single-project-block--text{
  width:calc(0.55 * 86vh);
  min-width:calc(0.55 * 86vh);
}

.momp-single-project-block__text{
  width:100%;
  min-width:100%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.momp-single-project-block__image{
  width:calc(0.7 * 86vh);
  min-width:calc(0.7 * 86vh);
  display:flex;
  align-items:center;
  justify-content:center;
}

.momp-single-project-block__image img{
  height:86vh;
  width:calc(0.7 * 86vh);
  object-fit:cover;
}

.momp-single-project-block__double{
  width:calc(0.7 * 86vh);
  min-width:calc(0.7 * 86vh);
  display:flex;
  flex-direction:column;
  gap:15px;
}

.momp-single-project-block__double img{
  width:calc(0.7 * 86vh);
  height:calc(43vh - 7.5px);
  object-fit:cover;
}

.momp-single-project-summary{
  flex:0 0 auto;
  width:calc(0.55 * 86vh);
  min-width:calc(0.55 * 86vh);
}

.momp-single-project-summary__text{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
}

.momp-project-summary-item{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.momp-project-summary-item__label{
  margin:0;
  font-size:20px;
  line-height:1.05;
  font-style:italic;
  color:var(--color-marron);
  opacity:.78;
}

.momp-project-summary-item__value{
  margin:0;
  font-size:20px;
  line-height:1.08;
  color:var(--color-marron);
}

/* Botón +info */

.info-button{
  margin-top:8px;
  background:none;
  border:0;
  padding:0;
  cursor:pointer;
  font-size:20px;
  line-height:1;
  font-weight:500;
  font-style:italic;
  color:var(--color-marron);
  animation:mompInfoPulse 1.8s ease-in-out infinite;
  transform-origin:left center;
}

.info-button:hover{
  animation-play-state:paused;
  opacity:.7;
}

@keyframes mompInfoPulse{
  0%,100%{
    transform:scale(1);
    opacity:1;
  }
  50%{
    transform:scale(1.06);
    opacity:.68;
  }
}

/* Modal info */

.info-modal{
  display:block;
  position:fixed;
  z-index:1001;
  right:calc(-1 * ((0.7 * 86vh) + 30px));
  top:0;
  width:calc((0.7 * 86vh) + 30px);
  height:100vh;
  overflow-y:auto;
  overflow-x:hidden;
  -webkit-overflow-scrolling:touch;
  background-color:var(--color-marron-secundario);
  transition:right .5s ease;
}

.info-modal.is-open{
  right:0;
}

.modal-content{
  color:var(--color-beige);
  margin:7vh 20px 14vh 20px;
}

.abp-texto-info{
  font-size:20px;
  line-height:1.2em;
  font-weight:500;
  padding-bottom:15px;
  color:var(--color-beige);
}

.abp-info-{
  font-size:20px;
  font-weight:500;
  font-style:italic;
  color:var(--color-beige);
}

.close-modal{
  position:absolute;
  top:20px;
  right:20px;
  border:0;
  background:none;
  color:var(--color-beige);
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

.momp-single-project-next{
  flex:0 0 auto;
}

.momp-single-project-next__media{
  position:relative;
}

.momp-single-project-next__media img{
  height:86vh;
  width:calc(0.7 * 86vh);
  object-fit:cover;
}

.momp-single-project-next__media::after{
  content:'';
  position:absolute;
  inset:0;
  background:var(--color-marron);
  opacity:.7;
  transition:opacity .3s ease;
  pointer-events:none;
}

.momp-single-project-next__media:hover::after{
  opacity:0;
}


/* =========================================================
   12. BLOG ARCHIVE
   ========================================================= */

body.blog,
body.home.blog,
body.archive.category,
body.archive.tag{
  background:var(--color-beige);
}

body.blog .site-header,
body.home.blog .site-header,
body.archive.category .site-header,
body.archive.tag .site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:var(--color-beige);
}

.momp-blog-page{
  padding-top:calc(var(--header-h) + 20px);
  padding-bottom:40px;
}

.momp-blog-heading{
  padding:0 30px 18px;
}

.momp-blog-heading__title{
  font-size:clamp(38px,5vw,78px);
  line-height:.95;
  font-weight:600;
  color:var(--color-marron);
}

.momp-blog-featured{
  padding:0 30px 18px;
}

.momp-blog-featured__viewport{
  overflow:hidden;
  width:100%;
}

.momp-blog-featured__track{
  display:flex;
  gap:0;
  will-change:transform;
  transform:translate3d(0,0,0);
}

.momp-blog-featured__slide{
  flex:0 0 100%;
  min-width:100%;
}

.momp-blog-featured__link{
  display:block;
}

.momp-blog-featured__media{
  position:relative;
  width:100%;
  overflow:hidden;
  margin-bottom:12px;
  background:#c9bfaf;
  border-radius:5px;
}

.momp-blog-featured__image{
  width:100%;
  height:clamp(280px,38vw,520px);
  object-fit:cover;
  transition:transform .45s ease, filter .35s ease;
  border-radius:5px;
}

.momp-blog-featured__link:hover .momp-blog-featured__image{
  transform:scale(1.012);
  filter:brightness(.94);
}

.momp-blog-featured__cat{
  position:absolute;
  top:16px;
  left:16px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:8px 16px;
  border-radius:999px;
  background:var(--color-naranja);
  color:var(--color-marron);
  font-size:14px;
  line-height:1;
  font-weight:500;
  text-transform:uppercase;
  white-space:nowrap;
}

.momp-blog-featured__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:8px;
}

.momp-blog-featured__author,
.momp-blog-featured__date{
  color:var(--color-naranja);
  font-size:18px;
  line-height:1.1;
  font-weight:500;
}

.momp-blog-featured__title{
  font-size:35px;
  line-height:1.02;
  font-weight:600;
  color:var(--color-marron);
  margin:0 0 12px 0;
  max-width:980px;
}

.momp-blog-featured__excerpt{
  font-size:20px;
  line-height:1.25;
  font-weight:500;
  color:var(--color-marron);
  max-width:980px;
  padding-bottom:0;
  margin:0;
}

.momp-blog-featured__controls{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 30px 0;
}

.momp-blog-featured__progress{
  position:relative;
  width:120px;
  height:1px;
  background:rgba(48,39,37,.16);
  overflow:hidden;
}

.momp-blog-featured__progress-bar{
  position:absolute;
  left:0;
  top:0;
  width:0%;
  height:100%;
  background:var(--color-marron);
  transition:width .45s ease;
}

.momp-blog-grid{
  padding:0 30px 30px;
}

.momp-blog-grid__inner{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px 16px;
  align-items:start;
}

.momp-blog-card{
  display:block;
}

.momp-blog-card__link{
  display:block;
}

.momp-blog-card__media{
  position:relative;
  overflow:hidden;
  margin-bottom:10px;
  border-radius:5px;
}

.momp-blog-card__image{
  width:100%;
  height:240px;
  object-fit:cover;
  transition:transform .4s ease, filter .35s ease;
  border-radius:5px;
}

.momp-blog-card__tag{
  position:absolute;
  top:10px;
  left:10px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:24px;
  padding:7px 14px;
  border-radius:999px;
  background:var(--color-naranja);
  color:var(--color-marron);
  font-size:12px;
  line-height:1;
  font-weight:500;
  text-transform:uppercase;
  white-space:nowrap;
}

.momp-blog-card__meta-line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}

.momp-blog-card__author,
.momp-blog-card__date{
  font-size:14px;
  line-height:1.1;
  font-weight:500;
  color:var(--color-naranja);
}

.momp-blog-card__title{
  font-size:20px;
  line-height:1.15;
  font-weight:600;
  color:var(--color-marron);
  margin:0 0 8px 0;
}

.momp-blog-card__excerpt{
  font-size:14px;
  line-height:1.35;
  font-weight:500;
  color:var(--color-marron);
  padding-bottom:0;
  opacity:.95;
}

.momp-blog-card__link:hover .momp-blog-card__image{
  transform:scale(1.02);
  filter:brightness(.9);
}

.momp-blog-pagination{
  padding-top:26px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:6px;
}

.momp-blog-pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:28px;
  height:28px;
  margin:0 2px;
  border:1px solid rgba(48,39,37,.22);
  border-radius:999px;
  color:rgba(48,39,37,.72);
  font-size:12px;
  font-weight:500;
  transition:all .25s ease;
}

.momp-blog-pagination .page-numbers:hover{
  border-color:rgba(48,39,37,.5);
  color:var(--color-marron);
}

.momp-blog-pagination .page-numbers.current{
  border-color:var(--color-marron);
  background:transparent;
  color:var(--color-marron);
}

.momp-blog-pagination .prev,
.momp-blog-pagination .next{
  font-size:11px;
}


/* =========================================================
   13. SINGLE BLOG
   ========================================================= */

.single-post{
  background:var(--color-beige);
}

.single-post .site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:var(--color-beige);
  z-index:100;
}

.single-post .site-footer{
  position:relative;
  height:auto;
  min-height:auto;
  padding:18px var(--pad-x) 24px;
}

.momp-single-post-page{
  padding:calc(var(--header-h) - 63px) 30px 40px;
  overflow:visible !important;
}

.momp-single-post-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 410px;
  gap:40px;
  align-items:start;
  overflow:visible !important;
}

.momp-single-post-main{
  min-width:0;
  overflow:visible !important;
}

.momp-single-post-main__hero{
  margin:0 0 20px 0;
}

.momp-single-post-main__hero figcaption{
  font-size:12px;
  line-height:1.2;
  color:rgba(48,39,37,.7);
  margin-top:6px;
}

.momp-single-post-main__hero-image{
  width:100%;
  height:auto;
  display:block;
  border-radius:0;
}

.momp-single-post-main__content{
  max-width:1200px;
}

.momp-single-post-main__content p,
.momp-single-post-main__content li,
.momp-single-post-main__content span{
  font-size:20px !important;
  line-height:1.28 !important;
  font-weight:500 !important;
  color:var(--color-marron) !important;
  margin-bottom: 15px !important;
}

.momp-single-post-main__content h2,
.momp-single-post-main__content h3,
.momp-single-post-main__content h4{
  font-size:30px !important;
  line-height:1.04 !important;
  font-weight:600 !important;
  color:var(--color-marron) !important;
  margin:34px 0 14px !important;
}

.momp-single-post-main__content strong,
.momp-single-post-main__content b{
  font-weight:600 !important;
}

.momp-single-post-main__content .wp-block-image,
.momp-single-post-main__content figure,
.momp-single-post-main__content .blocks-gallery-item,
.momp-single-post-main__content .wp-caption{
  width:100% !important;
  max-width:100% !important;
  margin:26px 0 !important;
}

.momp-single-post-main__content img{
  display:block;
  width:100% !important;
  max-width:100% !important;
  height:auto !important;
  object-fit:cover;
  border-radius:0;
}

.momp-single-post-main__content .alignwide,
.momp-single-post-main__content .alignfull{
  width:100% !important;
  max-width:100% !important;
  margin-left:0 !important;
  margin-right:0 !important;
}

.momp-single-post-main__content figcaption,
.momp-single-post-main__content .wp-caption-text{
  font-size:12px;
  line-height:1.25;
  color:rgba(48,39,37,.7);
  margin-top:8px;
}

.momp-single-post-main__content a img{
  pointer-events:none;
}

.momp-single-post-main__share{
  display:flex;
  align-items:center;
  gap:14px;
  margin:26px 0 28px;
}

.momp-share-btn{
  width:42px;
  height:42px;
  border-radius:999px;
  background:var(--color-marron);
  color:var(--color-beige);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:600;
  text-transform:lowercase;
}

.momp-author-box-custom{
  display:grid;
  grid-template-columns:300px minmax(0,1fr);
  gap:20px;
  align-items:center;
  background:var(--color-naranja);
  padding:20px;
  margin-top:20px;
  border-radius:5px;
}

.momp-author-box-custom__media img,
.momp-author-box-custom__media .avatar{
  width:100%;
  height:240px;
  display:block;
  object-fit:cover;
  border-radius:0;
}

.momp-author-box-custom__name{
  font-size:28px;
  line-height:1;
  font-weight:600;
  color:var(--color-marron);
  margin:0 0 10px 0;
}

.momp-author-box-custom__bio{
  font-size:18px;
  line-height:1.35;
  font-weight:500;
  color:var(--color-marron);
  margin:0 0 18px 0;
  max-width:900px;
}

.momp-author-box-custom__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:12px 20px;
  border-radius:999px;
  background:var(--color-marron);
  color:var(--color-beige);
  font-size:16px;
  line-height:1;
  font-weight:600;
}

.momp-single-post-side{
  min-width:0;
  position:relative;
  overflow:visible !important;
  align-self:start;
}

.momp-single-post-side__inner{
  position:fixed;
  top:var(--header-h);
  right:30px;
  width:410px;
  max-height:calc(100vh - var(--header-h) - 64px);
  overflow:auto !important;
  scrollbar-width:none;
  padding-bottom:24px;
}

.momp-single-post-side__inner::-webkit-scrollbar{
  display:none;
}

.momp-single-post-side__title{
  font-size:34px;
  line-height:.95;
  font-weight:600;
  color:var(--color-marron);
  margin:0 0 18px 0;
}

.momp-single-post-side__meta-line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.momp-single-post-side__author,
.momp-single-post-side__date{
  color:var(--color-naranja) !important;
  font-size:18px;
  line-height:1.1;
  font-weight:500;
}

.momp-single-post-side__cats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:42px;
}

.momp-single-post-side__cat{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:8px 16px;
  border-radius:999px;
  background:var(--color-naranja);
  color:var(--color-marron);
  font-size:14px;
  line-height:1;
  font-weight:500;
  text-transform:uppercase;
  white-space:nowrap;
}

.momp-single-post-side__related-title{
  font-size:20px;
  line-height:1.1;
  font-weight:600;
  color:var(--color-marron);
  margin:0 0 16px 0;
}

.momp-related-card__link{
  display:block;
}

.momp-related-card__media{
  position:relative;
  overflow:hidden;
  margin-bottom:14px;
  border-radius:5px;
}

.momp-related-card__image{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
  border-radius:5px;
}

.momp-related-card__cat{
  position:absolute;
  top:10px;
  left:10px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:24px;
  padding:7px 14px;
  border-radius:999px;
  background:var(--color-naranja);
  color:var(--color-marron);
  font-size:12px;
  line-height:1;
  font-weight:500;
  text-transform:uppercase;
  white-space:nowrap;
}

.momp-related-card__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:12px;
}

.momp-related-card__author,
.momp-related-card__date{
  color:var(--color-naranja) !important;
  font-size:14px;
  line-height:1.1;
  font-weight:500;
}

.momp-related-card__title{
  font-size:20px;
  line-height:1.15;
  font-weight:600;
  color:var(--color-marron);
  margin:0 0 12px 0;
}

.momp-related-card__excerpt{
  font-size:14px;
  line-height:1.5;
  font-weight:500;
  color:var(--color-marron);
  margin:0;
}

.single-post .site-main,
.single-post main,
.single-post .content-area,
.single-post .site-content,
.single-post .inside-article,
.single-post .entry-content,
.momp-single-post-page,
.momp-single-post-layout,
.momp-single-post-side{
  overflow:visible !important;
  transform:none !important;
}


/* =========================================================
   14. HOME
   ========================================================= */

body.home.momp-horizontal-page{
  overflow:hidden;
}

body.home #custom-cursor{
  display:block;
}

body.home .site-header{
  opacity:1 !important;
  visibility:visible !important;
  top:0;
  z-index:var(--z-header);
}

body.home:not(.momp-home-after-intro) .site-header__logo img{
  width:calc(var(--logo-w) * 1.5);
}

body.home .site-footer{
  position:fixed;
  left:0;
  bottom:0;
  width:100%;
  opacity:0;
  visibility:hidden;
  transition:opacity .35s ease, visibility .35s ease;
  z-index:var(--z-footer);
}

body.home.momp-home-after-intro .site-footer{
  opacity:1;
  visibility:visible;
}

.momp-home-page{
  height:100vh;
  overflow:hidden;
  background:var(--color-beige);
}

.momp-home-slider{
  display:flex;
  align-items:stretch;
  height:100vh;
  width:max-content;
  will-change:transform;
  transform:translate3d(0,0,0);
}

.momp-home-slide{
  flex:0 0 100vw;
  width:100vw;
  height:100vh;
  padding-top:var(--header-h);
  padding-bottom:0;
}

.momp-home-slide--intro{
  padding-top:0 !important;
  padding-bottom:0;
}

.momp-home-hero{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
  background:var(--color-marron);
}

.momp-home-hero__media{
  position:absolute;
  inset:0;
}

.momp-home-hero__slider{
  position:absolute;
  inset:0;
}

.momp-home-hero__slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1.2s ease;
}

.momp-home-hero__slide.is-active{
  opacity:1;
}

.momp-home-hero__slide img,
.momp-home-hero__video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.momp-home-hero__video{
  position:absolute;
  inset:0;
  display:block;
}

.momp-home-hero__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.24)),
    linear-gradient(to top, rgba(0,0,0,.20), rgba(0,0,0,.05));
  pointer-events:none;
}

.momp-home-hero__content{
  position:relative;
  z-index:2;
  height:100%;
  padding:calc(var(--header-h) + 26px) 30px 102px 30px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.momp-home-hero__bottom{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:40px;
  align-items:end;
}

.momp-home-hero__title{
  font-size:70px;
  line-height:.9;
  font-weight:600;
  color:#f6f1e8;
  margin:0;
  max-width:980px;
  letter-spacing:-.045em;
}

.momp-home-hero__aside{
  display:flex;
  justify-content:flex-end;
}

.momp-home-hero__secondary{
  font-size:20px;
  line-height:1.2;
  font-weight:500;
  color:#f6f1e8;
  margin:0;
  max-width:320px;
  text-align:right;
}

.momp-home-slide--project{
  position:relative;
  flex:0 0 auto;
  width:calc((0.62 * 86vh) + 60px);
  padding:var(--header-h) 15px var(--footer-h);
  background:var(--color-beige);
}

.momp-home-project{
  width:100%;
  height:100%;
  display:block;
}

.momp-home-project__link{
  display:flex;
  flex-direction:column;
  width:100%;
  height:100%;
  color:var(--color-marron);
}

.momp-home-project__media{
  position:relative;
  display:block;
  width:100%;
  height:calc(100% - 80px);
  overflow:hidden;
  border-radius:0;
  background:rgba(48,39,37,.08);
}

.momp-home-project__image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform .45s ease, filter .35s ease, opacity .35s ease;
}

.momp-home-project__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(208,204,192,.9);
  opacity:0;
  transition:opacity .35s ease;
  pointer-events:none;
}

.momp-home-project__media:hover::after{
  opacity:1;
}

.momp-home-project__media:hover .momp-home-project__image{
  transform:scale(1.012);
  filter:brightness(.78) saturate(.9);
}

.momp-home-project__text{
  position:relative;
  height:80px;
  padding:14px 0 0;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}

.momp-home-project__copy{
  min-width:0;
}

.momp-home-project__title{
  margin:0 0 7px;
  color:var(--color-marron);
  font-size:30px;
  line-height:.98;
  font-weight:600;
  letter-spacing:-.022em;
}

.momp-home-project__link:hover .momp-home-project__title{
  color:var(--color-marron);
}

.momp-home-project__meta{
  margin:0;
  font-size:20px;
  line-height:1.1;
  font-weight:500;
  color:var(--color-marron);
}

.momp-home-project__sketch{
  position:absolute;
  inset:18px;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:opacity .35s ease, transform .35s ease;
  transform:scale(.98);
  pointer-events:none;
}

.momp-home-project__sketch img{
  max-height:100%;
  max-width:100%;
  width:auto;
  object-fit:contain;
}

.momp-home-project__media:hover .momp-home-project__sketch{
  opacity:1;
  transform:scale(1);
}

.momp-home-project__arrow{
  flex:0 0 auto;
  width:58px;
  height:45px;
  margin-top:2px;
  background-image:url('/wp-content/uploads/2026/05/flecha-momp-marron.svg');
  background-repeat:no-repeat;
  background-position:right;
  background-size:contain;
}

.momp-home-slide--featured-label{
  flex:0 0 150px;
  width:150px;
  padding:0;
  position:relative;
  background:var(--color-beige);
  overflow:hidden;
}

.momp-home-featured-marquee{
  width:100%;
  height:100%;
  padding:var(--header-h) 0 var(--footer-h);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.momp-home-featured-marquee__track{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0;
  animation:momp-home-featured-marquee 24s linear infinite;
  will-change:transform;
}

.momp-home-featured-marquee__track span{
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  white-space:nowrap;
  color:var(--color-marron);
  font-size:86px;
  line-height:.9;
  font-weight:600;
  letter-spacing:-.045em;
  text-transform:uppercase;
}

@keyframes momp-home-featured-marquee{
  from{ transform:translateY(0); }
  to{ transform:translateY(-50%); }
}

.momp-home-slide--end{
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top:0;
}

.momp-home-end{
  width:100%;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 30px;
}

.momp-home-end__logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:22vw;
  line-height:.78;
  font-weight:600;
  letter-spacing:-.065em;
  color:var(--color-marron);
  text-decoration:none;
}

.momp-home-end__logo span{
  display:inline-block;
}

.momp-home-end__o{
  color:var(--color-naranja);
  animation:latido 1.5s infinite;
}

.momp-home-mobile-featured{
  display:none;
}

@keyframes latido{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.08); }
}

.momp-split-line{
  display:block;
  overflow:hidden;
}

.momp-split-word{
  display:inline-block;
  overflow:hidden;
  vertical-align:top;
}

.momp-split-word-inner{
  display:inline-block;
  will-change:transform, opacity;
}


/* =========================================================
   15. COOKIEYES
   ========================================================= */

.cky-consent-container,
.cky-consent-container *,
.cky-consent-bar,
.cky-consent-bar *,
.cky-modal,
.cky-modal *,
[id^="cookieyes-"],
[id^="cookieyes-"] *{
  cursor:auto !important;
}


/* =========================================================
   16. SERVICIOS
   ========================================================= */

.momp-services-archive-page{
  background:var(--color-beige);
  padding:0;
}

/* Hero */

.momp-services-hero-v3{
  padding:0;
}

.momp-services-hero-v3__top{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,.9fr);
  gap:40px;
  align-items:start;
  padding:30px 0 24px;
}

.momp-services-hero-v3__title{
  margin:0;
  padding-left:30px;
  font-size:70px;
  line-height:.9;
  font-weight:600;
  letter-spacing:-.038em;
  color:var(--color-marron);
}

.momp-services-hero-v3__intro{
  max-width:620px;
  padding-right:30px;
}

.momp-services-hero-v3__intro p{
  margin:0;
  font-size:22px;
  line-height:1.28;
  font-weight:500;
  color:var(--color-marron);
}

.momp-services-hero-v3__image-wrap{
  width:100%;
  border-top:1px solid rgba(48,39,37,.12);
  border-bottom:1px solid rgba(48,39,37,.12);
}

.momp-services-hero-v3__image,
.momp-services-hero-v3__placeholder{
  width:100%;
  height:clamp(380px,48vw,760px);
  display:block;
}

.momp-services-hero-v3__image{
  object-fit:cover;
}

.momp-services-hero-v3__placeholder{
  background:rgba(48,39,37,.08);
}

/* Stats */

.momp-services-stats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  border-bottom:1px solid rgba(48,39,37,.12);
}

.momp-services-stat{
  min-height:clamp(170px,15vw,230px);
  padding:26px 30px 28px;
  border-right:1px solid rgba(48,39,37,.12);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:10px;
}

.momp-services-stat:last-child{
  border-right:0;
}

.momp-services-stat__value{
  font-size:clamp(42px,4vw,68px);
  line-height:.95;
  font-weight:600;
  color:var(--color-marron);
  letter-spacing:-.03em;
  margin-bottom:0;
}

.momp-services-stat__label{
  font-size:11px;
  line-height:1.1;
  font-weight:500;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(48,39,37,.48);
}

/* Accordion editorial */

.momp-services-accordion{
  position:relative;
  width:100%;
  height:90vh;
  overflow:hidden;
  border-top:1px solid rgba(48,39,37,.12);
  border-bottom:1px solid rgba(48,39,37,.12);
  background:var(--color-beige);
}

.momp-services-accordion__track{
  display:flex;
  width:100%;
  height:100%;
}

.momp-service-panel{
  position:relative;
  flex:0 0 15%;
  min-width:15%;
  height:100%;
  overflow:hidden;
  border-right:1px solid rgba(48,39,37,.12);
  transition:flex 1.35s cubic-bezier(.19,1,.22,1), min-width 1.35s cubic-bezier(.19,1,.22,1), background-color 1s ease;
  background:var(--color-beige);
}

.momp-service-panel:last-child{
  border-right:0;
}

.momp-service-panel.is-active{
  flex:1 1 auto;
  min-width:40%;
}

.momp-service-panel__link{
  display:block;
  width:100%;
  height:100%;
  color:var(--color-marron);
  position:relative;
}

.momp-service-panel.is-active .momp-service-panel__link{
  display:grid;
  grid-template-rows:minmax(0,7fr) minmax(96px,1fr);
  gap:18px;
  padding:22px 26px 22px;
}

.momp-service-panel__datas{
  position:absolute;
  inset:0;
  z-index:3;
  pointer-events:none;
}

.momp-service-panel:not(.is-active) .momp-service-panel__datas{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px 10px;
}

.momp-service-panel.is-active .momp-service-panel__datas{
  position:static;
  inset:auto;
  grid-row:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  min-height:0;
  opacity:0;
  animation:mompServiceTextIn .32s ease .58s forwards;
}

.momp-service-panel__label{
  margin:0;
  color:var(--color-marron);
  text-transform:uppercase;
}

.momp-service-panel:not(.is-active) .momp-service-panel__label{
  font-family:"neue-haas-grotesk-display",sans-serif;
  font-size:28px;
  line-height:.92;
  font-weight:600;
  letter-spacing:-.022em;
  text-align:center;
  transform:rotate(-90deg);
  transform-origin:center center;
  flex:0 0 auto;
  width:min(640px, calc(90vh - 96px));
  min-width:min(640px, calc(90vh - 96px));
  max-width:min(640px, calc(90vh - 96px));
  white-space:normal;
  word-break:normal;
  overflow-wrap:normal;
  text-wrap:normal;
  overflow:visible;
  transition:none;
}

.momp-service-panel.is-active .momp-service-panel__label{
  font-family:"neue-haas-grotesk-display",sans-serif;
  font-size:30px;
  line-height:.95;
  font-weight:600;
  letter-spacing:-.022em;
  flex:1 1 auto;
  max-width:100%;
  white-space:normal;
  word-break:normal;
  overflow-wrap:normal;
  text-align:left;
  transition:none;
}

@keyframes mompServiceTextIn{
  from{ opacity:0; }
  to{ opacity:1; }
}

.momp-service-panel__media-wrap{
  position:absolute;
  inset:22px 22px 92px 22px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  opacity:0;
  transition:opacity .95s ease .14s, transform 1.15s cubic-bezier(.19,1,.22,1);
  transform:translateY(10px);
  pointer-events:none;
}

.momp-service-panel.is-active .momp-service-panel__media-wrap{
  position:static;
  inset:auto;
  grid-row:1;
  opacity:1;
  transform:translateY(0);
  min-height:0;
}

.momp-service-panel__media,
.momp-service-panel__placeholder{
  width:min(28vw,440px);
  height:100%;
  max-height:100%;
  border-radius:0;
  display:block;
}

.momp-service-panel.is-active .momp-service-panel__media,
.momp-service-panel.is-active .momp-service-panel__placeholder{
  width:100%;
}

.momp-service-panel__media{
  object-fit:cover;
}

.momp-service-panel__placeholder{
  background:rgba(48,39,37,.08);
}

.momp-service-panel__cta{
  flex:0 0 auto;
  display:block;
  z-index:4;
  width:62px;
  height:38px;
  background-image:url('/wp-content/uploads/2026/05/flecha-momp-marron.svg');
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  opacity:0;
  transform:translateY(8px);
  transition:opacity .7s ease .24s, transform .85s cubic-bezier(.19,1,.22,1) .24s;
}

.momp-service-panel:not(.is-active) .momp-service-panel__cta{
  display:none;
}

.momp-service-panel.is-active .momp-service-panel__cta{
  display:block;
  opacity:1;
  transform:translateY(0);
}

/* Sectores */

.momp-sectors-preview{
  padding:0;
  background:var(--color-beige);
}

.momp-sectors-preview__head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,.9fr);
  gap:40px;
  align-items:start;
  padding:30px 0 24px;
  border-bottom:1px solid rgba(48,39,37,.12);
}

.momp-sectors-preview__title-col{
  padding:0;
}

.momp-sectors-preview__intro{
  max-width:620px;
  padding-right:30px;
}

.momp-sectors-preview__intro p{
  margin:0;
}

.momp-sectors-preview__intro p:last-child{
  margin-bottom:0;
}

.momp-sectors-preview__title{
  margin:0;
  padding-left:30px;
  color:var(--color-marron);
  font-size:70px;
  line-height:.9;
  font-weight:600;
  letter-spacing:-.038em;
}

.momp-sectors-preview__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0;
}

.momp-sector-card{
  padding:30px;
  border-right:1px solid rgba(48,39,37,.12);
  border-bottom:1px solid rgba(48,39,37,.12);
}

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

.momp-sector-card__link{
  display:block;
}

.momp-sector-card__media{
  position:relative;
  width:100%;
  aspect-ratio:1.58 / 1;
  overflow:hidden;
  background:rgba(48,39,37,.08);
}

.momp-sector-card__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(48,39,37,.4);
  transition:background .35s ease;
}

.momp-sector-card__image,
.momp-sector-card__placeholder{
  width:100%;
  height:100%;
  display:block;
}

.momp-sector-card__image{
  object-fit:cover;
  transform:scale(1.001);
  transition:transform .45s ease;
}

.momp-sector-card__placeholder{
  background:rgba(83,62,49,.12);
}

.momp-sector-card__title{
  position:absolute;
  top:50%;
  left:50%;
  z-index:2;
  width:calc(100% - 42px);
  margin:0;
  color:var(--color-beige);
  font-size:30px;
  line-height:.95;
  font-weight:600;
  letter-spacing:-.022em;
  text-align:center;
  text-transform:uppercase;
  transform:translate(-50%,-50%);
}

.momp-sector-card__link:hover .momp-sector-card__media::after{
  background:rgba(48,39,37,.28);
}

.momp-sector-card__link:hover .momp-sector-card__image{
  transform:scale(1.025);
}

/* Single servicio */

.single-servicio .site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:var(--color-beige);
}

.single-servicio .site-footer{
  position:relative;
  height:auto;
  min-height:auto;
  padding:18px var(--pad-x) 24px;
}

.momp-single-service-page{
  padding:calc(var(--header-h) + 8px) 30px 40px;
  background:var(--color-beige);
}

.momp-single-service__hero{
  margin-bottom:42px;
}

.momp-single-service__hero-top{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:30px;
  align-items:start;
  margin-bottom:22px;
}

.momp-single-service__eyebrow{
  margin:0 0 10px 0;
  font-size:12px;
  line-height:1.1;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--color-naranja);
}

.momp-single-service__title{
  font-size:70px;
  line-height:.9;
  font-weight:600;
  color:var(--color-marron);
  margin:0 0 18px 0;
  max-width:1100px;
  letter-spacing:-.038em;
}

.momp-single-service__intro p{
  max-width:1000px;
  margin:0;
}

.momp-single-service__hero-cta{
  padding-top:8px;
}

.momp-single-service__cta-text{
  font-size:20px;
  line-height:1.2;
  color:var(--color-marron);
  margin:0 0 16px 0;
}

.momp-btn-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:12px 20px;
  border-radius:999px;
  background:var(--color-marron);
  color:var(--color-beige);
  font-size:14px;
  line-height:1;
  font-weight:600;
}

.momp-single-service__hero-media{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(0,.85fr);
  gap:18px;
}

.momp-single-service__hero-image,
.momp-single-service__hero-placeholder{
  width:100%;
  height:calc(100vh - var(--header-h));
  display:block;
  border-radius:0;
}

.momp-single-service__hero-image{
  object-fit:cover;
}

.momp-single-service__hero-placeholder{
  background:rgba(48,39,37,.08);
}

.momp-single-service__section{
  padding:0 0 42px;
}

.momp-single-service__section-head{
  margin-bottom:18px;
}

.momp-single-service__section-title{
  font-size:34px;
  line-height:.95;
  font-weight:600;
  color:var(--color-marron);
  margin:0;
}

.momp-single-service__section-title--large{
  font-size:70px;
  line-height:.9;
  letter-spacing:-.038em;
}

.momp-single-service__items{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px 24px;
}

.momp-single-service__item{
  padding-top:10px;
  border-top:1px solid rgba(48,39,37,.15);
}

.momp-single-service__item-title{
  font-size:22px;
  line-height:1;
  font-weight:600;
  color:var(--color-marron);
  margin:0 0 10px 0;
}

.momp-single-service__item-text{
  font-size:20px;
  line-height:1.2;
  color:var(--color-marron);
  margin:0;
}

.momp-single-service__images-grid{
  padding:0 0 42px;
}

.momp-single-service__images-grid-inner{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:18px;
}

.momp-single-service__images-grid-inner img,
.momp-single-service__image-placeholder{
  width:100%;
  height:64vh;
  display:block;
  border-radius:0;
}

.momp-single-service__images-grid-inner img{
  object-fit:cover;
}

.momp-single-service__image-placeholder{
  background:rgba(48,39,37,.08);
}

.momp-single-service__related{
  padding:0 0 42px;
}

.momp-single-service__related-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px 18px;
}

.momp-single-service__related-link{
  display:block;
}

.momp-single-service__related-media{
  overflow:hidden;
  border-radius:0;
  margin-bottom:10px;
}

.momp-single-service__related-image{
  width:100%;
  aspect-ratio:1.15 / 1;
  object-fit:cover;
  transition:transform .4s ease, filter .35s ease;
}

.momp-single-service__related-link:hover .momp-single-service__related-image{
  transform:scale(1.02);
  filter:brightness(.94);
}

.momp-single-service__related-title{
  font-size:30px;
  line-height:1.02;
  font-weight:600;
  color:var(--color-marron);
  margin:0 0 8px 0;
  letter-spacing:-.022em;
}

.momp-single-service__related-meta{
  font-size:20px;
  line-height:1.2;
  color:var(--color-naranja);
  margin:0;
}

.momp-single-service__bottom-cta{
  padding-top:6px;
}

.momp-single-service__bottom-cta-inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  padding-top:18px;
  border-top:1px solid rgba(48,39,37,.16);
}

.momp-single-service__bottom-cta-text{
  max-width:900px;
  margin:0;
  font-size:20px;
  line-height:1.2;
  color:var(--color-marron);
}

/* Single sector */

.momp-single-sector-body .site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:var(--color-beige);
}

.momp-single-sector-body .site-footer{
  position:relative;
  height:auto;
  min-height:auto;
  padding:18px var(--pad-x) 24px;
}

.momp-single-sector-page{
  padding: 0px 30px 40px;
  background:var(--color-beige);
}

.momp-single-sector__hero{
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);
  gap:30px;
  align-items:stretch;
  margin-bottom:48px;
  padding-bottom:30px;
  border-bottom:1px solid rgba(48,39,37,.16);
}

.momp-single-sector__copy{
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  max-width:780px;
}

.momp-single-sector__eyebrow{
  margin:0 0 12px;
  color:var(--color-naranja);
  font-size:13px;
  line-height:1;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.momp-single-sector__title{
  margin:0;
  color:var(--color-marron);
  font-size:70px;
  line-height:.9;
  font-weight:600;
  letter-spacing:-.038em;
}

.momp-single-sector__intro{
  max-width:680px;
  margin-top:22px;
}

.momp-single-sector__intro p{
  margin:0;
}

.momp-single-sector__cta{
  margin-top:22px;
}

.momp-single-sector__image,
.momp-single-sector__placeholder{
  width:100%;
  height:calc(97vh - var(--header-h));
  display:block;
  border-radius:0;
}

.momp-single-sector__image{
  object-fit:cover;
}

.momp-single-sector__placeholder{
  background:rgba(48,39,37,.08);
}

.momp-single-sector__projects{
  padding-bottom:42px;
}

.momp-single-sector__section-head{
  margin-bottom:18px;
}

.momp-single-sector__section-title{
  margin:0;
  color:var(--color-marron);
  font-size:34px;
  line-height:.95;
  font-weight:600;
  letter-spacing:0;
}

.momp-single-sector__section-title--large{
  font-size:70px;
  line-height:.9;
  letter-spacing:-.038em;
}

.momp-single-sector__projects-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px 18px;
}

.momp-single-sector__project-link{
  display:block;
}

.momp-single-sector__project-media{
  overflow:hidden;
  border-radius:0;
  margin-bottom:10px;
}

.momp-single-sector__project-image,
.momp-single-sector__project-placeholder{
  width:100%;
  aspect-ratio:1.15 / 1;
  display:block;
}

.momp-single-sector__project-image{
  object-fit:cover;
  transition:transform .4s ease, filter .35s ease;
}

.momp-single-sector__project-placeholder{
  background:rgba(48,39,37,.08);
}

.momp-single-sector__project-link:hover .momp-single-sector__project-image{
  transform:scale(1.02);
  filter:brightness(.94);
}

.momp-single-sector__project-title{
  margin:0 0 8px 0;
  color:var(--color-marron);
  font-size:30px;
  line-height:1.02;
  font-weight:600;
  letter-spacing:-.022em;
}

.momp-single-sector__project-meta{
  margin:0;
  color:var(--color-naranja);
  font-size:20px;
  line-height:1.2;
}

.momp-single-sector__bottom-cta{
  padding-top:6px;
}

.momp-single-sector__bottom-cta-inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  padding-top:18px;
  border-top:1px solid rgba(48,39,37,.16);
}

.momp-single-sector__bottom-cta-text{
  max-width:900px;
  margin:0;
  color:var(--color-marron);
  font-size:20px;
  line-height:1.2;
}


/* =========================================================
   17. RESPONSIVE
   ========================================================= */

@media (min-width:2400px){
  :root{
    --header-h:5vh;
    --footer-h:5vh;
  }

  .abp-texto,
  .link-contacto{
    font-size:24px;
  }

  .abp-slogan{
    font-size:24px;
  }

  .image-estudio-contacto{
    height:90vh;
  }

  .momp-studio-panel--image,
  .momp-studio-panel--image img{
    height:90vh;
  }

  .momp-studio-horizontal__pin{
    padding:5vh 0;
  }

  .momp-project-slide-v2{
    width:calc(0.7 * 90vh);
  }

  .momp-project-slide-v2__image{
    height:90vh;
  }

  .momp-home-project{
    height:90vh;
    margin-top:5vh;
  }

  .momp-home-project__image{
    height:90vh;
  }

  .momp-home-project__text{
    height:90vh;
  }

  .momp-home-project__text .abp-h2{
    font-size:90px;
  }

  .momp-home-project__meta{
    font-size:45px;
  }

  .momp-home-end__logo{
    font-size:20vw;
  }
}

@media (max-width:1200px){
  .momp-blog-grid__inner{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .momp-projects-grid-v2{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  #custom-cursor.on-project-title::after{
    font-size:46px;
  }

  .momp-single-post-layout{
    grid-template-columns:minmax(0,1fr) 360px;
    gap:30px;
  }

  .momp-single-post-side__title{
    font-size:30px;
  }

  .momp-single-post-side__inner{
    width:360px;
  }

  .momp-services-hero-v3__top{
    grid-template-columns:1fr 1fr;
  }

  .momp-services-hero-v3__title,
  .momp-sectors-preview__title{
    font-size:62px;
  }

  .momp-services-accordion{
    height:82vh;
  }

  .momp-service-panel{
    flex:0 0 18%;
    min-width:18%;
  }

  .momp-service-panel.is-active{
    min-width:38%;
  }

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

  .momp-sectors-preview__grid,
  .momp-single-sector__projects-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .momp-sector-card:nth-child(3n){
    border-right:1px solid rgba(48,39,37,.12);
  }

  .momp-sector-card:nth-child(2n){
    border-right:0;
  }

  .momp-service-panel__media,
  .momp-service-panel__placeholder{
    width:min(100%,340px);
  }
}

@media (max-width:1024px){
  :root{
    --pad-x:20px;
    --logo-w:180px;
    --menu-link-size:70px;
  }

  .momp-studio-team{
    grid-template-columns:repeat(2,1fr);
    gap:32px 24px;
  }

  .momp-studio-collaborators{
    grid-template-columns:repeat(2,1fr);
    gap:32px 24px;
  }

  .momp-projects-page-v2{
    padding:calc(var(--header-h) + 14px) 20px 30px;
  }

  .momp-projects-grid-v2{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px 20px;
  }

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

  .momp-home-hero__bottom{
    grid-template-columns:1fr 320px;
    gap:26px;
  }

  .momp-home-hero__title{
    font-size:clamp(58px,8vw,94px);
  }

  .momp-home-hero__secondary{
    font-size:18px;
  }
}

@media (max-width:980px){
  .momp-single-post-layout{
    grid-template-columns:1fr;
  }

  .momp-single-post-side{
    order:-1;
  }

  .momp-single-post-side__inner{
    position:static;
  }

  .momp-services-hero-v3__top,
  .momp-single-service__hero-top,
  .momp-single-service__hero-media,
  .momp-single-service__images-grid-inner,
  .momp-single-service__bottom-cta-inner{
    grid-template-columns:1fr;
    display:grid;
    gap:20px;
  }

  .momp-services-hero-v3__intro{
    padding:0 30px;
    max-width:none;
  }

  .momp-single-sector__hero{
    grid-template-columns:1fr;
  }

  .momp-sectors-preview__head{
    grid-template-columns:1fr;
    gap:20px;
  }

  .momp-services-accordion{
    height:auto;
    overflow:visible;
  }

  .momp-services-accordion__track{
    display:block;
    height:auto;
    min-height:0;
  }

  .momp-service-panel,
  .momp-service-panel.is-active{
    min-width:100%;
    width:100%;
    height:auto;
    flex:none;
    border-right:0;
    border-bottom:1px solid rgba(48,39,37,.12);
  }

  .momp-service-panel__datas,
  .momp-service-panel:not(.is-active) .momp-service-panel__datas,
  .momp-service-panel.is-active .momp-service-panel__datas{
    position:static;
    inset:auto;
    transform:none;
    width:100%;
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    pointer-events:auto;
    order:2;
  }

  .momp-service-panel__label,
  .momp-service-panel:not(.is-active) .momp-service-panel__label,
  .momp-service-panel.is-active .momp-service-panel__label{
    transform:none;
    width:auto;
    max-width:none;
    font-size:22px;
    line-height:.95;
    font-weight:600;
    letter-spacing:0;
    text-align:left;
    white-space:normal;
    word-break:normal;
    overflow-wrap:break-word;
  }

  .momp-service-panel__link,
  .momp-service-panel.is-active .momp-service-panel__link{
    display:flex;
    flex-direction:column;
    grid-template-rows:none;
    gap:0;
    padding:0;
  }

  .momp-service-panel__media-wrap{
    position:static;
    inset:auto;
    display:none;
    opacity:1;
    padding:20px 20px 0;
    order:1;
  }

  .momp-service-panel.is-active .momp-service-panel__media-wrap{
    display:block;
  }

  .momp-service-panel__media,
  .momp-service-panel__placeholder{
    width:100%;
    height:42vh;
    max-height:none;
  }

  .momp-service-panel__cta{
    display:block;
    width:54px;
    height:32px;
    background-position: right;
  }

  .momp-service-panel:not(.is-active) .momp-service-panel__cta{
    display:none;
  }

  .momp-single-service__items{
    grid-template-columns:1fr;
  }
}

@media (max-width:900px){
  .momp-single-post__author-box-inner{
    grid-template-columns:1fr;
  }

  .momp-single-post__author-avatar{
    max-width:300px;
  }
}

@media (min-width:769px) and (max-width:1180px), (min-width:769px) and (max-height:760px){
  :root{
    --header-h:58px;
    --footer-h:52px;
    --pad-x:22px;
    --logo-w:170px;
    --menu-link-size:72px;
  }

  .site-header,
  .site-footer{
    padding-left:var(--pad-x);
    padding-right:var(--pad-x);
  }

  .site-footer{
    min-height:var(--footer-h);
    gap:16px;
  }

  .site-footer__policies{
    gap:12px;
  }

  .momp-menu__nav a{
    font-size:var(--menu-link-size);
    line-height:.9;
  }

  .section-grande{
    padding-left:var(--pad-x);
  }

  .abp-h1{
    font-size:clamp(54px,7vw,88px);
    line-height:.88;
  }

  .abp-h2{
    font-size:clamp(44px,5vw,68px);
    line-height:.9;
  }

  .abp-texto,
  .link-contacto{
    font-size:17px;
    line-height:1.18;
  }

  .abp-slogan,
  .abp-cargo,
  .abp-publicacion,
  .momp-home-hero__secondary,
  .momp-home-project__meta,
  .momp-project-card-v2__location,
  .momp-project-slide-v2__location,
  .momp-project-summary-item__label,
  .momp-project-summary-item__value,
  .abp-texto-info,
  .abp-info-,
  .info-button{
    font-size:17px;
  }

  body.momp-contact-page-body{
    overflow:hidden;
  }

  body.momp-contact-page-body .site-header{
    height:var(--header-h);
  }

  body.momp-contact-page-body .site-footer{
    height:var(--footer-h);
    min-height:var(--footer-h);
    padding-top:0;
    padding-bottom:0;
  }

  .momp-contact-page{
    height:100dvh;
    overflow:hidden;
  }

  .momp-contact.section-grande{
    height:100dvh;
    padding-top:var(--header-h);
    padding-bottom:var(--footer-h);
    padding-left:var(--pad-x);
    align-items:flex-end;
  }

  .momp-contact__text{
    max-height:calc(100dvh - var(--header-h) - var(--footer-h));
    padding-right:22px;
    overflow:auto;
    scrollbar-width:none;
  }

  .momp-contact__text::-webkit-scrollbar{
    display:none;
  }

  .texto-contacto{
    padding-top:0;
  }

  .image-estudio-contacto{
    width:50vw;
    height:calc(100dvh - var(--header-h) - var(--footer-h));
    margin-right:var(--pad-x);
  }

  .momp-contact-cta{
    margin-top:48px;
  }

  .momp-contact-cta__link{
    font-size:28px;
    letter-spacing:-.045em;
  }

  .momp-contact-cta__arrow{
    width:88px;
    height:28px;
  }

  .momp-home-hero__content{
    padding:calc(var(--header-h) + 18px) var(--pad-x) calc(var(--footer-h) + 34px);
  }

  .momp-home-hero__bottom{
    grid-template-columns:minmax(0,1fr) minmax(230px,30vw);
    gap:24px;
  }

  .momp-home-hero__title{
    max-width:820px;
    font-size:clamp(54px,6.5vw,78px);
  }

  .momp-home-hero__secondary{
    max-width:300px;
    font-size:17px;
  }

  .momp-home-slider,
  .momp-projects-slider-v2__track{
    touch-action:pan-y;
  }

  .momp-home-slide--project{
    width:clamp(350px,42vw,510px);
    padding:var(--header-h) 12px var(--footer-h);
    touch-action:pan-y;
  }

  .momp-home-project__media{
    height:calc(100% - 92px);
  }

  .momp-home-project__text{
    height:92px;
    gap:12px;
  }

  .momp-home-project__title{
    font-size:clamp(23px,2.5vw,29px);
    line-height:.98;
  }

  .momp-home-project__meta{
    font-size:17px;
  }

  .momp-home-project__arrow{
    width:48px;
    height:31px;
  }

  .momp-home-slide--featured-label{
    flex-basis:132px;
    width:132px;
  }

  .momp-home-featured-marquee__track span{
    font-size:clamp(62px,7vw,78px);
  }

  .momp-home-end__logo{
    font-size:20vw;
  }

  .momp-projects-page-v2{
    padding:calc(var(--header-h) + 16px) var(--pad-x) 34px;
  }

  .momp-projects-grid-v2{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px 18px;
  }

  .momp-projects-slider-v2__track{
    gap:18px;
    padding:0 var(--pad-x);
  }

  .momp-project-slide-v2{
    width:clamp(340px,42vw,460px);
  }

  .momp-project-slide-v2__image{
    height:calc(100dvh - var(--header-h) - var(--footer-h));
  }

  .momp-single-project-page{
    height:calc(100dvh - var(--header-h) - var(--footer-h));
    overflow-x:auto;
    overflow-y:hidden;
    touch-action:pan-x;
    -webkit-overflow-scrolling:touch;
  }

  .momp-studio-horizontal{
    height:100dvh;
  }

  .momp-studio-horizontal__pin{
    height:100dvh;
    padding-top:var(--header-h);
    padding-bottom:var(--footer-h);
  }

  .momp-studio-panel--image{
    width:calc((100dvh - var(--header-h) - var(--footer-h)) * .68);
    min-width:calc((100dvh - var(--header-h) - var(--footer-h)) * .68);
    height:calc(100dvh - var(--header-h) - var(--footer-h));
  }

  .momp-studio-panel--image-wide{
    width:46vw;
    min-width:46vw;
    padding-left:var(--pad-x);
  }

  .momp-studio-panel--text,
  .momp-studio-panel--text.is-about{
    width:clamp(390px,43vw,520px);
    min-width:clamp(390px,43vw,520px);
    max-height:calc(100dvh - var(--header-h) - var(--footer-h));
    padding:0 16px 0 0;
    overflow:visible;
  }

  .momp-studio-panel--text > .abp-h1,
  .momp-studio-panel--text > .abp-h2,
  .momp-studio-panel--text > .abp-slogan,
  .momp-studio-panel--text > .abp-texto,
  .momp-studio-panel--text > div,
  .momp-studio-panel--text.is-about > .abp-h1,
  .momp-studio-panel--text.is-about > .abp-h2,
  .momp-studio-panel--text.is-about > .abp-slogan,
  .momp-studio-panel--text.is-about > .abp-texto,
  .momp-studio-panel--text.is-about > div{
    width:100%;
  }

  .momp-studio-page .abp-h1,
  .momp-studio-page .abp-h2{
    font-size:clamp(44px,5.4vw,62px);
    line-height:.9;
    padding-bottom:10px;
  }

  .momp-studio-page .abp-slogan{
    font-size:17px;
    line-height:1.12;
    padding-bottom:9px;
  }

  .momp-studio-page .abp-texto{
    font-size:17px;
    line-height:1.16;
    padding-bottom:10px;
  }

  .momp-studio-text-summary{
    max-height:calc(100dvh - var(--header-h) - var(--footer-h) - 116px);
  }

  .momp-studio-text-more{
    margin-top:8px;
    padding-top:8px;
  }

  .momp-single-project-hero{
    padding-left:var(--pad-x);
  }

  .momp-single-project-hero__main img,
  .momp-single-project-block__image img,
  .momp-single-project-next__media img{
    height:calc(100dvh - var(--header-h) - var(--footer-h));
    width:clamp(320px,40vw,480px);
  }

  .momp-single-project-hero__sketch img{
    height:calc(100dvh - var(--header-h) - var(--footer-h));
    width:clamp(360px,48vw,560px);
  }

  .momp-single-project-intro,
  .momp-single-project-block--text,
  .momp-single-project-summary{
    width:clamp(300px,36vw,430px);
    min-width:clamp(300px,36vw,430px);
  }

  .momp-single-project-block__image,
  .momp-single-project-block__double{
    width:clamp(320px,40vw,480px);
    min-width:clamp(320px,40vw,480px);
  }

  .momp-single-project-block__double img{
    width:100%;
    height:calc((100dvh - var(--header-h) - var(--footer-h) - 15px) / 2);
  }

  .momp-single-project-intro__text,
  .momp-single-project-block__text,
  .momp-single-project-summary__text{
    max-height:calc(100dvh - var(--header-h) - var(--footer-h));
    overflow:auto;
    scrollbar-width:none;
    padding-right:4px;
  }

  .momp-single-project-intro__text::-webkit-scrollbar,
  .momp-single-project-block__text::-webkit-scrollbar,
  .momp-single-project-summary__text::-webkit-scrollbar{
    display:none;
  }

  .momp-services-hero-v3__title,
  .momp-sectors-preview__title,
  .momp-single-service__title,
  .momp-single-sector__title{
    font-size:clamp(54px,6.5vw,74px);
  }

  .momp-services-hero-v3__intro p,
  .momp-sectors-preview__intro p,
  .momp-single-service__intro p,
  .momp-single-sector__intro p{
    font-size:17px;
    line-height:1.18;
  }

  .momp-services-accordion{
    height:calc(100dvh - var(--header-h) - var(--footer-h));
    min-height:560px;
  }

  .momp-service-panel__label,
  .momp-service-panel:not(.is-active) .momp-service-panel__label,
  .momp-service-panel.is-active .momp-service-panel__label{
    font-size:clamp(22px,3.1vw,38px);
    max-width:min(78vh,520px);
  }

  .momp-services-stats{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  .momp-services-stat{
    min-height:150px;
    align-items:center;
    justify-content:center;
  }

  .momp-services-stat__value{
    font-size:clamp(42px,5vw,62px);
  }

  .momp-sectors-preview__grid,
  .momp-single-sector__projects-grid,
  .momp-single-service__related-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .momp-single-service-page,
  .momp-single-sector-page{
    padding-left:var(--pad-x);
    padding-right:var(--pad-x);
  }
}

@media (max-width:768px){
  body,
  body.momp-horizontal-page{
    overflow:auto;
  }

  .site-header{
    position:static;
    height:var(--header-h);
    padding:0 var(--pad-x-mobile);
  }

  .site-footer{
    position:static;
    height:auto;
    min-height:auto;
    padding:18px var(--pad-x-mobile) 24px;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .site-footer__center{
    justify-content:flex-start;
  }

  .site-footer__policies{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .site-header__logo img{
    width:var(--logo-w-mobile);
  }

  .site-header__toggle{
    font-size:38px;
  }

  .momp-menu__nav{
    left:20px;
    bottom:30px;
  }

  .momp-menu__nav a{
    font-size:var(--menu-link-size-mobile);
  }

  .momp-menu__close{
    top:17px;
    right:20px;
    width:21px;
    height:21px;
  }

  #custom-cursor{
    display:none !important;
  }

  body.momp-contact-page-body{
    overflow:auto;
  }

  body.momp-contact-page-body .site-header{
    position:fixed;
    background:var(--color-beige);
  }

  body.momp-contact-page-body .site-footer{
    position:static;
    width:100%;
    height:auto;
    min-height:auto;
  }

  .momp-contact-page{
    height:auto;
    overflow:visible;
  }

  .momp-contact.section-grande{
    display:flex;
    flex-direction:column-reverse;
    width:100%;
    height:auto;
    padding:0 var(--pad-x-mobile) 20px var(--pad-x-mobile);
  }

  .momp-contact__text{
    width:100%;
    padding-right:0;
    padding-top:20px;
  }

  .texto-contacto{
    padding-top:20px;
  }

  .image-estudio-contacto{
    width:100%;
    height:48vh;
    padding-top:var(--header-h);
    margin-right:0;
    object-fit:cover;
    object-position:center center;
  }

  .momp-studio-nav{
    display:none;
  }

  .momp-studio-horizontal{
    height:auto;
    overflow:visible;
  }

  .momp-studio-horizontal__pin{
    display:block;
    width:100%;
    height:auto;
    padding:0;
  }

  .momp-studio-panel,
  .momp-studio-panel--image,
  .momp-studio-panel--image-wide,
  .momp-studio-panel--text{
    width:100% !important;
    min-width:100% !important;
    height:auto;
    margin-right:0;
    padding:20px 20px 0;
  }

  .momp-studio-panel--text > .abp-h1,
  .momp-studio-panel--text > .abp-h2,
  .momp-studio-panel--text > .abp-slogan,
  .momp-studio-panel--text > .abp-texto,
  .momp-studio-panel--text > div{
    width:100%;
  }

  .momp-studio-panel--image img{
    height:auto;
  }

  .abp-h1{
    font-size:50px;
    line-height:40px;
    padding-top:0px;
  }

  .abp-h2{
    font-size:50px;
  }

  .abp-texto-grande{
    font-size:20vw;
    line-height:1;
    white-space:normal;
    text-align:center;
  }

  .momp-studio-panel--label{
    min-height:30vh;
    height:30vh;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .momp-studio-team-marquee__track span{
    font-size:13vw;
  }

  .momp-studio-full-image{
    padding:0 20px 20px;
  }

  .momp-studio-photo-grid{
    grid-template-columns:1fr;
    gap:20px;
    padding:0 20px 20px;
  }

  .momp-studio-team{
    grid-template-columns:1fr;
    gap:24px;
    padding:0 20px 30px;
  }

  .momp-studio-team__item img{
    height:290px;
  }

  .momp-studio-collaborators-title{
    padding:20px 20px 10px;
  }

  .momp-studio-collaborators{
    grid-template-columns:1fr;
    gap:24px;
    padding:0 20px 30px;
  }

  .momp-studio-text-summary{
    max-height:none;
    overflow:visible;
  }

  .momp-studio-text-summary::after,
  .momp-studio-text-more{
    display:none;
  }

  .momp-studio-modal{
    padding:20px;
  }

  .momp-studio-modal__dialog{
    max-height:calc(100vh - 40px);
    padding:30px 24px 32px;
  }

  .momp-studio-publications{
    grid-template-columns:1fr;
    gap:20px;
    padding:0 20px 30px;
  }

  .momp-studio-publications__col{
    max-width:none;
  }

  .momp-projects-toggle-pill{
    top:9px;
    transform:translateX(-50%) scale(.95);
  }

  body.momp-projects-archive-body .site-header,
  body.momp-projects-archive-body:has(.momp-projects-page-v2.is-slider) .site-header{
    position:static;
  }

  body.momp-projects-archive-body .site-footer,
  body.momp-projects-archive-body:has(.momp-projects-page-v2.is-slider) .site-footer{
    position:static;
    height:auto;
    min-height:auto;
    padding:18px var(--pad-x-mobile) 24px;
  }

  body.momp-projects-archive-body,
  body.momp-projects-archive-body:has(.momp-projects-page-v2.is-slider){
    overflow:auto;
  }

  .momp-projects-page-v2{
    padding:10px 20px 30px;
    min-height:auto;
  }

  .momp-projects-page-v2.is-slider{
    height:auto;
    margin-top:0;
    margin-bottom:0;
    overflow:visible;
    padding:10px 20px 30px;
  }

  .momp-projects-slider-v2{
    display:none !important;
  }

  .momp-projects-grid-v2{
    display:grid !important;
    grid-template-columns:1fr;
    gap:40px;
  }

  body.momp-single-project-page-body,
  body.momp-single-project-page-body.momp-horizontal-page{
    overflow:auto;
    white-space:normal;
  }

  .momp-single-project-page{
    height:auto;
    margin-top:0;
    margin-bottom:0;
    overflow:visible;
    white-space:normal;
    display:flex;
    flex-direction:column;
  }

  .momp-single-project-hero,
  .momp-single-project-intro,
  .momp-single-project-block,
  .momp-single-project-summary,
  .momp-single-project-next{
    display:block;
    width:100%;
    height:auto;
    padding:0 20px 20px;
    margin-right:0;
  }

  .momp-single-project-hero{
    padding-top:0;
  }

  .momp-single-project-hero__main img{
    width:100%;
    height:70vh;
    padding-top:7vh;
  }

  .momp-single-project-hero__sketch{
    display:none;
  }

  .momp-single-project-intro__text,
  .momp-single-project-block__text,
  .momp-single-project-summary__text,
  .momp-single-project-block__image,
  .momp-single-project-block__double{
    width:100%;
    min-width:100%;
    margin-left:0;
  }

  .momp-single-project-block__image img,
  .momp-single-project-block__double img,
  .momp-single-project-next__media img{
    width:100%;
    height:auto;
  }

  .info-modal{
    width:100%;
    right:-100%;
  }

  .info-modal.is-open{
    right:0;
  }

  .momp-blog-page{
    padding-top:0;
    padding-bottom:24px;
  }

  .momp-blog-heading{
    padding:0 20px 18px;
  }

  .momp-blog-featured{
    padding:0 20px 18px;
  }

  .momp-blog-featured__image{
    height:46vw;
    min-height:240px;
    max-height:320px;
  }

  .momp-blog-featured__cat{
    top:12px;
    left:12px;
    min-height:30px;
    padding:7px 13px;
    font-size:12px;
  }

  .momp-blog-featured__author,
  .momp-blog-featured__date{
    font-size:16px;
  }

  .momp-blog-featured__title{
    font-size:30px;
  }

  .momp-blog-featured__excerpt{
    font-size:16px;
    line-height:1.3;
    max-width:100%;
  }

  .momp-blog-featured__controls{
    padding:14px 20px 0;
  }

  .momp-blog-featured__progress{
    width:84px;
  }

  .momp-blog-grid{
    padding:0 20px 24px;
  }

  .momp-blog-grid__inner{
    grid-template-columns:1fr;
    gap:20px;
  }

  .momp-blog-card__title{
    font-size:22px;
  }

  .momp-blog-card__excerpt{
    font-size:14px;
  }

  .momp-single-post-page{
    padding:calc(var(--header-h) + 2px) 20px 30px;
  }

  .momp-single-post-layout{
    display:flex;
    flex-direction:column;
  }

  .momp-single-post-main{
    display:flex;
    flex-direction:column;
  }

  .momp-single-post-side{
    display:contents;
    order:0;
  }

  .momp-single-post-side__inner{
    display:contents;
    position:static;
    width:auto;
    max-height:none;
    overflow:visible !important;
    padding-bottom:0;
  }

  .momp-single-post-main__hero{
    order:1;
    margin-bottom:16px;
  }

  .momp-single-post-side__head{
    order:2;
    padding-bottom:20px;
  }

  .momp-single-post-main__content{
    order:3;
  }

  .momp-single-post-main__share{
    order:4;
  }

  .momp-author-box-custom{
    order:5;
  }

  .momp-single-post-side__related{
    order:6;
    margin-top:26px;
  }

  .momp-single-post-side__title{
    font-size:30px;
  }

  .momp-single-post-side__meta-line{
    margin-bottom:14px;
  }

  .momp-single-post-side__author,
  .momp-single-post-side__date{
    font-size:16px;
  }

  .momp-single-post-main__content p,
  .momp-single-post-main__content li,
  .momp-single-post-main__content span{
    font-size:18px !important;
  }

  .momp-single-post-main__content h2,
  .momp-single-post-main__content h3,
  .momp-single-post-main__content h4{
    font-size:26px !important;
  }

  .momp-author-box-custom{
    grid-template-columns:1fr;
    gap:18px;
    padding:20px;
  }

  .momp-author-box-custom__media{
    max-width:100%;
  }

  body.home,
  body.home.momp-horizontal-page{
    overflow:auto;
  }

  body.home .site-footer{
    opacity:1 !important;
    visibility:visible !important;
    position:static;
  }

  .momp-home-page{
    height:auto;
    overflow:visible;
  }

  .momp-home-slider{
    display:block;
    height:auto;
    transform:none !important;
  }

  .momp-home-slide{
    width:100%;
    height:auto;
    padding:0 20px 20px;
  }

  .momp-home-slide--intro{
    padding:0;
  }

  .momp-home-hero{
    height:100vh;
  }

  .momp-home-hero__content{
    padding:calc(var(--header-h) + 16px) 20px 24px 20px;
  }

  .momp-home-hero__bottom{
    grid-template-columns:1fr;
    gap:18px;
  }

  .momp-home-hero__title{
    font-size:clamp(52px,12vw,74px);
    max-width:100%;
  }

  .momp-home-hero__aside{
    justify-content:flex-start;
  }

  .momp-home-hero__secondary{
    max-width:100%;
    text-align:left;
    font-size:18px;
    line-height:1.25;
  }

  .momp-home-project{
    display:block;
    height:auto;
    padding:0;
  }

  .momp-home-project__media{
    display:block;
    width:100%;
    height:auto;
  }

  .momp-home-project__image{
    width:100%;
    height:62vh;
    object-fit:cover;
  }

  .momp-home-project__text{
    width:100%;
    height:auto;
    padding:10px 0 0;
    display:flex;
  }

  .momp-home-project__title{
    font-size:50px;
    padding-bottom:10px;
  }

  .momp-home-project__sketch{
    display:none;
  }

  .momp-home-project__meta{
    font-size:24px;
  }

  .momp-home-project__arrow{
    width:48px;
    height:30px;
  }

  .momp-home-slide--featured-label{
    display:none;
  }

  .momp-home-slide--end{
    padding:0px;
  }

  .momp-home-end{
    height:auto;
    min-height:60vh;
    padding:0;
  }

  .momp-home-end__logo{
    font-size:30vw;
    letter-spacing:-.06em;
  }

  .abp-texto,
  .link-contacto{
    font-size:20px;
  }

  .momp-services-hero-v3__top{
    padding:20px 0 20px;
  }

  .momp-services-hero-v3__title,
  .momp-sectors-preview__title{
    font-size:52px;
  }

  .momp-services-hero-v3__title,
  .momp-sectors-preview__title{
    padding-left:20px;
  }

  .momp-services-hero-v3__intro{
    padding:0 20px;
  }

  .momp-services-hero-v3__intro p{
    font-size:18px;
  }

  .momp-services-hero-v3__image,
  .momp-services-hero-v3__placeholder{
    height:48vh;
  }

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

  .momp-services-stat{
    padding:22px 20px 24px;
    border-right:1px solid rgba(48,39,37,.12);
    border-bottom:1px solid rgba(48,39,37,.12);
  }

  .momp-services-stat:nth-child(2n){
    border-right:0;
  }

  .momp-services-stat:nth-last-child(-n+2){
    border-bottom:0;
  }

  .momp-sectors-preview{
    padding:0;
  }

  .momp-sectors-preview__title-col{
    padding:0;
  }

  .momp-sectors-preview__intro{
    padding:0 20px;
  }

  .momp-sectors-preview__intro p{
    font-size:20px;
  }

  .momp-sectors-preview__grid{
    grid-template-columns:1fr;
  }

  .momp-single-sector__projects-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .momp-sector-card{
    padding:20px;
    border-right:0;
    border-bottom:1px solid rgba(48,39,37,.12);
  }

  .momp-sector-card:nth-child(2n),
  .momp-sector-card:nth-child(3n){
    border-right:0;
  }

  .momp-sector-card__media{
    aspect-ratio:1.34 / 1;
  }

  .momp-single-sector-page{
    padding:var(--header-h) 20px 30px;
  }

  .momp-single-sector__hero{
    gap:22px;
    margin-bottom:34px;
    padding-bottom:24px;
  }

  .momp-single-sector__title{
    font-size:52px;
  }

  .momp-single-sector__intro p{
    font-size:20px;
  }

  .momp-single-sector__image,
  .momp-single-sector__placeholder{
    height:calc(100vh - var(--header-h));
  }

  .momp-single-sector__section-title{
    font-size:28px;
  }

  .momp-single-sector__section-title--large{
    font-size:52px;
  }

  .momp-single-service-page{
    padding:calc(var(--header-h) + 6px) 20px 30px;
  }

  .momp-single-service__title{
    font-size:52px;
  }

  .momp-single-service__related-grid{
    grid-template-columns:1fr;
  }

  .momp-single-service__hero-image,
  .momp-single-service__hero-placeholder{
    height:calc(100vh - var(--header-h));
  }

  .momp-single-service__images-grid-inner img,
  .momp-single-service__image-placeholder{
    height:44vh;
  }

  .momp-single-service__section-title{
    font-size:28px;
  }

  .momp-single-service__section-title--large{
    font-size:52px;
  }

  .momp-single-service__item-title{
    font-size:20px;
  }

  .momp-single-service__item-text{
    font-size:20px;
  }

  .momp-single-service__intro p,
  .momp-single-service__bottom-cta-text,
  .momp-single-sector__bottom-cta-text{
    font-size:20px;
  }

  .momp-single-service__bottom-cta-inner,
  .momp-single-sector__bottom-cta-inner{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width:768px){
  html,
  body{
    width:100%;
    min-height:100%;
    overflow-x:hidden;
  }

  body,
  body.momp-horizontal-page,
  body.home,
  body.home.momp-horizontal-page,
  body.momp-contact-page-body,
  body.momp-studio-page-body,
  body.momp-projects-archive-body,
  body.momp-single-project-page-body,
  body.momp-single-project-page-body.momp-horizontal-page,
  body.momp-single-sector-body,
  body.single-servicio{
    overflow-x:hidden !important;
    overflow-y:auto !important;
    white-space:normal !important;
  }

  .site-header,
  .site-footer,
  body.home .site-footer,
  body.momp-contact-page-body .site-header,
  body.momp-contact-page-body .site-footer,
  body.momp-studio-page-body .site-header,
  body.momp-studio-page-body .site-footer,
  body.momp-projects-archive-body .site-header,
  body.momp-projects-archive-body .site-footer,
  body.momp-projects-archive-body:has(.momp-projects-page-v2.is-slider) .site-header,
  body.momp-projects-archive-body:has(.momp-projects-page-v2.is-slider) .site-footer,
  body.momp-single-project-page-body .site-header,
  body.momp-single-project-page-body .site-footer,
  .single-servicio .site-header,
  .single-servicio .site-footer,
  .momp-single-sector-body .site-header,
  .momp-single-sector-body .site-footer{
    width:100%;
    height:auto;
    min-height:auto;
  }

  .site-header,
  body.momp-contact-page-body .site-header,
  body.momp-studio-page-body .site-header,
  body.momp-projects-archive-body .site-header,
  body.momp-projects-archive-body:has(.momp-projects-page-v2.is-slider) .site-header,
  body.momp-single-project-page-body .site-header,
  .single-servicio .site-header,
  .momp-single-sector-body .site-header{
    position:fixed !important;
    top:0;
    left:0;
    z-index:var(--z-header);
    background:var(--color-beige);
  }

  .site-footer,
  body.home .site-footer,
  body.momp-contact-page-body .site-footer,
  body.momp-studio-page-body .site-footer,
  body.momp-projects-archive-body .site-footer,
  body.momp-projects-archive-body:has(.momp-projects-page-v2.is-slider) .site-footer,
  body.momp-single-project-page-body .site-footer,
  .single-servicio .site-footer,
  .momp-single-sector-body .site-footer{
    position:static !important;
  }

  .site-header{
    height:auto;
    min-height:54px;
    padding:0px var(--pad-x-mobile);
  }

  body.home .site-header{
    position:absolute !important;
    top:0;
    left:0;
    z-index:var(--z-header);
    background:transparent !important;
  }

  .site-footer{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    padding:18px var(--pad-x-mobile) 24px !important;
    opacity:1 !important;
    visibility:visible !important;
  }

  .site-footer__left,
  .site-footer__center,
  .site-footer__right{
    width:100%;
    justify-content:flex-start;
  }

  .site-footer__policies{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  body:not(.home) main,
  body:not(.home) .site-main{
    padding-top:32px;
  }

  .momp-horizontal-shell,
  .momp-horizontal-inner,
  .momp-home-page,
  .momp-home-slider,
  .momp-studio-horizontal,
  .momp-studio-horizontal__pin,
  .momp-single-project-page,
  .momp-projects-page-v2,
  .momp-projects-page-v2.is-slider,
  .momp-contact-page{
    width:100% !important;
    height:auto !important;
    min-height:auto !important;
    margin:0 !important;
    overflow:visible !important;
    transform:none !important;
    white-space:normal !important;
  }

  .momp-home-slider,
  .momp-studio-horizontal__pin,
  .momp-single-project-page{
    display:block !important;
  }

  .momp-home-slide,
  .momp-home-slide--project,
  .momp-home-slide--end,
  .momp-studio-panel,
  .momp-studio-panel--image,
  .momp-studio-panel--image-wide,
  .momp-studio-panel--text,
  .momp-studio-panel--text.is-about,
  .momp-single-project-hero,
  .momp-single-project-intro,
  .momp-single-project-block,
  .momp-single-project-block--text,
  .momp-single-project-summary,
  .momp-single-project-next{
    display:block !important;
    width:100% !important;
    min-width:0 !important;
    height:auto !important;
    margin:0 !important;
    padding-left:var(--pad-x-mobile) !important;
    padding-right:var(--pad-x-mobile) !important;
    white-space:normal !important;
  }

  .momp-home-slide--intro,
  .momp-home-hero{
    padding-left:0 !important;
    padding-right:0 !important;
  }

  .momp-home-hero{
    height:100svh !important;
    min-height:620px;
  }

  .momp-home-hero__content{
    padding:24px var(--pad-x-mobile) 34px !important;
  }

  .momp-home-hero__bottom{
    grid-template-columns:1fr !important;
    gap:18px;
  }

  .momp-home-hero__title{
    font-size:clamp(46px,14vw,68px);
    line-height:.9;
  }

  .momp-home-hero__secondary{
    max-width:92%;
    text-align:left;
    font-size:20px;
    line-height:1.18;
  }

  .momp-home-slide--featured-label{
    display:none !important;
  }

  .momp-home-slide--project{
    display:none !important;
  }

  .momp-home-project__media,
  .momp-home-project__image{
    width:100%;
    height:58svh;
    min-height:360px;
  }

  .momp-home-project__text{
    height:auto;
    padding-top:12px;
  }

  .momp-home-project__title{
    font-size:clamp(34px,11vw,48px);
    line-height:.95;
  }

  .momp-home-project__meta{
    font-size:18px;
  }

  .momp-home-end{
    display:none;
  }

  .momp-home-mobile-featured{
    display:block;
    width:100%;
    overflow:hidden;
    padding:18px 0 34px;
    background:var(--color-beige);
  }

  .momp-home-mobile-featured__label{
    width:100%;
    overflow:hidden;
    padding:0 0 18px;
  }

  .momp-home-mobile-featured__label span{
    display:block;
    width:max-content;
    color:var(--color-marron);
    font-size:clamp(46px,10vw,68px);
    line-height:.9;
    font-weight:600;
    letter-spacing:-.038em;
    text-transform:uppercase;
    white-space:nowrap;
    animation:momp-studio-team-marquee 18s linear infinite;
  }

  .momp-home-mobile-featured__track{
    display:block;
    width:100%;
    overflow:visible;
    padding:0 var(--pad-x-mobile) 8px;
    scrollbar-width:none;
  }

  .momp-home-mobile-featured__track::-webkit-scrollbar{
    display:none;
  }

  .momp-home-mobile-project{
    width:100%;
    margin-bottom:40px;
  }

  .momp-home-mobile-project:last-child{
    margin-bottom:0;
  }

  .momp-home-mobile-project__link{
    display:block;
    color:var(--color-marron);
  }

  .momp-home-mobile-project__image{
    width:100%;
    height:56svh;
    min-height:340px;
    object-fit:cover;
  }

  .momp-home-mobile-project__text{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
    padding-top:15px;
  }

  .momp-home-mobile-project__title{
    margin:0 0 6px;
    color:var(--color-marron);
    font-size:clamp(30px,9vw,42px);
    line-height:.94;
    font-weight:600;
    letter-spacing:-.026em;
    text-transform:uppercase;
  }

  .momp-home-mobile-project__meta{
    margin:0;
    color:var(--color-marron);
    font-size:18px;
    line-height:1.08;
    font-weight:500;
  }

  .momp-home-mobile-project__arrow{
    flex:0 0 auto;
    width:46px;
    height:35px;
    margin-top:2px;
    background-image:url('/wp-content/uploads/2026/05/flecha-momp-marron.svg');
    background-repeat:no-repeat;
    background-position:right;
    background-size:contain;

  }

  .momp-contact.section-grande{
    display:flex !important;
    flex-direction:column-reverse;
    width:100% !important;
    height:auto !important;
    min-height:0 !important;
    padding:0 var(--pad-x-mobile) 28px !important;
    gap: 20px;
  }

  .momp-contact__text{
    width:100%;
    max-height:none;
    padding:22px 0 0;
    overflow:visible;
  }

  .texto-contacto{
    padding-top:0 !important;
  }

  .image-estudio-contacto{
    width:100%;
    height:52svh;
    min-height:360px;
    margin:0;
    padding-top:0;
  }

  .momp-contact-cta{
    margin-top:46px;
  }

  .momp-contact-cta__link{
    align-items:flex-end;
    gap:10px;
    font-size:26px;
    line-height:.88;
  }

  .momp-contact-cta__arrow{
    width:54px;
    height:26px;
    background-position: left;
  }

  .momp-studio-panel{
    padding-top:20px !important;
    padding-bottom:0 !important;
  }

  .momp-studio-panel--image img,
  .momp-studio-panel--image-wide img{
    width:100%;
    height:auto;
  }

  .momp-studio-panel--text > .abp-h1,
  .momp-studio-panel--text > .abp-h2,
  .momp-studio-panel--text > .abp-slogan,
  .momp-studio-panel--text > .abp-texto,
  .momp-studio-panel--text > div,
  .momp-studio-panel--text.is-about > .abp-h1,
  .momp-studio-panel--text.is-about > .abp-h2,
  .momp-studio-panel--text.is-about > .abp-slogan,
  .momp-studio-panel--text.is-about > .abp-texto,
  .momp-studio-panel--text.is-about > div{
    width:100% !important;
  }

  .momp-studio-page .abp-h1,
  .momp-studio-page .abp-h2,
  .abp-h1,
  .abp-h2{
    font-size:clamp(42px,13vw,56px);
    line-height:.9;
  }

  .momp-studio-page .abp-texto,
  .abp-texto,
  .link-contacto{
    font-size:18px;
    line-height:1.22;
  }

  .momp-studio-text-summary{
    max-height:none !important;
    overflow:visible !important;
  }

  .momp-studio-text-more{
    display:none !important;
  }

  .momp-studio-panel--label {
    min-height: 12svh;
    height: 6svh !important;
    padding: 50px 0 15px 0px !important;
  }

  .momp-single-project-page{
    touch-action:auto !important;
  }

  .momp-single-project-hero,
  .momp-single-project-intro,
  .momp-single-project-block,
  .momp-single-project-summary,
  .momp-single-project-next{
    padding-top:0 !important;
    padding-bottom:24px !important;
  }

  .momp-single-project-hero__main,
  .momp-single-project-block__image,
  .momp-single-project-block__double,
  .momp-single-project-next__media{
    width:100% !important;
    min-width:0 !important;
  }

  .momp-single-project-hero__main img,
  .momp-single-project-block__image img,
  .momp-single-project-block__double img,
  .momp-single-project-next__media img{
    width:100% !important;
    height:auto !important;
    padding-top:0 !important;
  }

  .momp-single-project-hero__main img{
    height:68svh !important;
    min-height:420px;
    object-fit:cover;
  }

  .momp-single-project-intro__text,
  .momp-single-project-block__text,
  .momp-single-project-summary__text{
    width:100% !important;
    min-width:0 !important;
    max-height:none !important;
    overflow:visible !important;
    padding-right:0;
  }

  .momp-project-summary-item__label,
  .momp-project-summary-item__value,
  .abp-texto-info,
  .abp-info-,
  .info-button{
    font-size:18px;
  }

  .momp-projects-toggle-pill{
    display:none !important;
  }

  .momp-projects-page-v2,
  .momp-projects-page-v2.is-slider{
    padding:0 var(--pad-x-mobile) 32px !important;
  }

  .momp-projects-slider-v2{
    display:none !important;
  }

  .momp-projects-grid-v2{
    display:grid !important;
    grid-template-columns:1fr !important;
  }

  .momp-project-card-v2__meta{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
    padding-top:12px;
  }

  .momp-project-card-v2__title{
    font-size:clamp(30px,9vw,42px);
    line-height:.94;
    text-transform:uppercase;
  }

  .momp-project-card-v2__location{
    font-size:18px;
    line-height:1.08;
  }

  .momp-project-card-v2__arrow{
    display:block;
    flex:0 0 auto;
    width:46px;
    height:28px;
    margin-top:2px;
    background-image:url('/wp-content/uploads/2026/05/flecha-momp-marron.svg');
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;
  }

  .momp-services-hero-v3__title,
  .momp-sectors-preview__title,
  .momp-single-service__title,
  .momp-single-sector__title{
    font-size:clamp(42px,13vw,56px);
    line-height:.9;
  }

  .momp-services-hero-v3__intro p,
  .momp-sectors-preview__intro p,
  .momp-single-service__intro p,
  .momp-single-service__item-text,
  .momp-single-sector__intro p,
  .momp-single-service__bottom-cta-text,
  .momp-single-sector__bottom-cta-text{
    font-size:18px;
    line-height:1.22;
  }
}

@media (max-width:768px){
  body:not(.home) main,
  body:not(.home) .site-main{
    padding-top:34px !important;
  }

  body.blog main,
  body.home.blog main,
  body.archive.category main,
  body.archive.tag main,
  body.blog .site-main,
  body.home.blog .site-main,
  body.archive.category .site-main,
  body.archive.tag .site-main{
    padding-top:65px !important;
  }

  .momp-blog-page{
    padding-top:0 !important;
  }
}

.momp-legal-page{
  min-height:100vh;
  padding:var(--header-h) 30px;
  background:var(--color-beige);
}

.momp-legal{
  max-width:980px;
}

.momp-legal__header{
  margin-bottom:30px;
}

.momp-legal__title{
  margin:0;
  color:var(--color-marron);
  font-size:clamp(46px,6vw,86px);
  line-height:.9;
  font-weight:600;
  letter-spacing:-.038em;
}

.momp-legal__content{
  max-width:860px;
}

.momp-legal__content p,
.momp-legal__content li{
  color:var(--color-marron);
  font-size:20px;
  line-height:1.28;
  font-weight:500;
  margin:0 0 16px;
}

.momp-legal__content h2,
.momp-legal__content h3,
.momp-legal__content h4{
  color:var(--color-marron);
  font-size:30px;
  line-height:1.02;
  font-weight:600;
  letter-spacing:-.022em;
  margin:34px 0 14px;
}

.momp-legal__content ul,
.momp-legal__content ol{
  padding-left:1.2em;
  margin:0 0 18px;
}

.momp-legal__content a{
  color:var(--color-marron);
  text-decoration:underline;
  text-underline-offset:3px;
}

@media (max-width:768px){
  .momp-legal-page{
    padding:80px 20px;
  }

  .momp-legal__header{
    margin-bottom:22px;
  }

  .momp-legal__title{
    font-size:clamp(40px,13vw,56px);
  }

  .momp-legal__content p,
  .momp-legal__content li{
    font-size:18px;
    line-height:1.24;
  }

  .momp-legal__content h2,
  .momp-legal__content h3,
  .momp-legal__content h4{
    font-size:26px;
  }
}
