/* =====================================================================
   Brandgger — hoja de estilos
   Replica los estilos del sitio original (Elementor):
   crema #F9F6F1 · beige #F2EAE0 · gris #464646 · negro #1E1E1E
   Playfair Display (títulos) · Montserrat (texto y etiquetas)
   ===================================================================== */

:root {
  --cream: #F9F6F1;
  --beige: #F2EAE0;
  --beige-2: #E1DED6;
  --beige-3: #EDEAE4;
  --gray: #464646;
  --gray-2: #4E4E4E;
  --gray-3: #515151;
  --gray-4: #64625C;
  --gray-5: #7F7B7B;
  --dark: #1E1E1E;
  --black: #000000;
  --white: #FFFFFF;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --header-h: 100px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--gray);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.popup-open { overflow: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s, opacity .3s; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 500; line-height: 1.2; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul { list-style: none; margin: 0; padding: 0; }
figure { margin: 0; }
button { font-family: inherit; cursor: pointer; }
[hidden] { display: none !important; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 10px; top: 10px; z-index: 9999; background: #fff; padding: 8px; }
.hp { position: absolute; left: -9999px; opacity: 0; }
em { font-style: italic; }
.center { text-align: center; }

/* ---------- Tipografía base ---------- */
.label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.4em;
  color: var(--gray);
}
.label--wide { letter-spacing: 6px; line-height: 1.1em; }
.label--light { color: var(--beige); font-weight: 300; }
.label--white { color: var(--white); }
.label--thin { font-weight: 400; line-height: 1em; }
.label--dash { position: relative; padding-top: 14px; color: var(--gray-3); letter-spacing: 2.6px; }
.label--dash::before { content: ""; position: absolute; top: 0; left: 0; width: 40px; height: 1px; background: var(--gray-3); }

.serif { font-family: var(--serif); font-weight: 400; color: var(--gray-3); }
.text-justify { text-align: justify; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--gray);
  background: transparent;
  color: var(--gray);
  font-family: var(--sans);
  font-size: 12px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 2px; line-height: 1;
  border-radius: 0;
  transition: background .3s, color .3s, border-color .3s;
}
.btn:hover { background: var(--gray); color: var(--beige); }
.btn--plain { border: 0; padding: 12px 16px; }
.btn--plain:hover { background: transparent; color: var(--gray); text-decoration: underline; text-underline-offset: 4px; }
.btn--light { border-color: var(--beige); color: var(--beige); font-size: 11px; font-weight: 300; letter-spacing: 3.8px; }
.btn--light:hover { background: transparent; color: var(--beige-2); border-color: var(--beige-2); }
.btn--white { border-color: var(--white); color: var(--white); font-size: 0.8rem; font-weight: 500; letter-spacing: 3px; }
.btn--white:hover { background: var(--white); color: var(--black); }
.btn--dark { border-color: var(--black); color: var(--black); }
.btn--dark:hover { background: var(--black); color: var(--white); }
.btn--fill { background: var(--gray-2); border-color: var(--gray-2); color: var(--white); font-size: 11px; font-weight: 500; letter-spacing: 2px; }
.btn--fill:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.btn--sm { padding: 10px 22px; font-size: 10px; }
.btn:disabled { opacity: .5; cursor: default; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader img { width: 70px; animation: pulse 1.4s ease-in-out infinite; }
.preloader.is-hidden { opacity: 0; visibility: hidden; }
@keyframes pulse { 0%,100% { opacity: .35; transform: scale(.96);} 50% { opacity: 1; transform: scale(1);} }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(249, 246, 241, .37);
  transition: background-color 1.3s ease, height .4s ease;
}
.site-header.is-scrolled { background: rgba(255, 255, 255, 1); height: 80px; }
.site-header__logo img { width: 106px; height: auto; }
.site-header__menu {
  background: none; border: 0; padding: 4px; color: var(--gray); line-height: 0;
  transition: opacity .3s;
}
.site-header__menu svg { width: 33px; height: 26px; }
.site-header__menu:hover { opacity: .6; }

/* ---------- Menú overlay ---------- */
.site-menu {
  position: fixed; inset: 0; z-index: 950;
  background: rgba(0, 0, 0, .8);
  display: flex; justify-content: center; align-items: flex-start;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
  overflow-y: auto;
}
.site-menu.is-open { opacity: 1; visibility: visible; }
.site-menu__panel {
  position: relative;
  width: 100%; max-width: 1140px;
  background: var(--white);
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  padding: 60px 70px 70px;
  transform: translateY(-30px);
  transition: transform .45s var(--ease);
}
.site-menu.is-open .site-menu__panel { transform: translateY(0); }
.site-menu__close { position: absolute; top: 22px; right: 24px; background: none; border: 0; color: var(--dark); padding: 6px; line-height: 0; }
.site-menu__logo img { width: 150px; margin-bottom: 26px; }
.site-menu__col--info p { padding-right: 25%; font-size: 12px; line-height: 1.7em; letter-spacing: .7px; color: var(--gray); margin-bottom: 26px; }
.site-menu__col--nav { display: flex; flex-direction: column; align-items: flex-start; padding-top: 10px; }
.site-menu__group { font-family: var(--serif); font-size: 14px; color: var(--gray); margin-top: 26px; margin-bottom: 8px; }
.site-menu__link { font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 2.1px; color: var(--gray); padding: 6px 0; position: relative; }
.site-menu__link::after { content: ""; position: absolute; left: 0; bottom: 3px; height: 1px; width: 0; background: var(--gray); transition: width .3s var(--ease); }
.site-menu__link:hover::after { width: 100%; }
.site-menu__link--contact { margin-top: 30px; }

/* ---------- Social ---------- */
.social { display: flex; gap: 14px; flex-wrap: wrap; }
.social a { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; color: var(--dark); transition: color .3s; }
.social a:hover { color: #A8A8A8; }
.social span { position: absolute; left: -9999px; }
.social--footer { gap: 5px; }
.social--footer a { color: var(--beige); width: 30px; height: 30px; }
.social--footer a svg { width: 17px; height: 17px; }
.social--footer a:hover { color: #A8A8A8; }

/* ---------- Animación reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .15s; }
.reveal.delay-2 { transition-delay: .3s; }

/* =====================================================================
   COMPONENTES
   ===================================================================== */

/* Carrusel de logos (3 visibles, avance automático) */
.logo-carousel { padding: 0 25% 5%; }
.logo-carousel__viewport { overflow: hidden; }
.logo-carousel--tight { padding: 0 25% 0; }
.logo-carousel--wide { padding: 0 20% 0; }
.logo-carousel__track { display: flex; transition: transform .8s var(--ease); will-change: transform; }
.logo-carousel__slide { flex: 0 0 33.3333%; display: flex; align-items: center; justify-content: center; padding: 0 10px; }
.logo-carousel__slide img { width: 100%; max-width: 200px; height: auto; }
.logos { text-align: center; }
.logos .label { margin-bottom: 0; }
.logos--gray .logo-carousel__slide img { filter: grayscale(1); opacity: .8; }

/* Tarjetas de casos (2 columnas) */
.cases-head { margin-top: 4%; padding-top: 2%; min-height: 12vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 20px; padding: 0 4%; }
.cases--pad-bottom { padding-bottom: 5%; }
.case-card { display: block; color: var(--gray); }
.case-card__img { display: block; overflow: hidden; background: var(--beige-2); }
.case-card__img img { width: 100%; height: auto; transition: transform .9s var(--ease); }
.case-card:hover .case-card__img img { transform: scale(1.03); }
.case-card__title { display: block; padding: 5% 0; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 6px; line-height: 1.1em; }
.cases--ls2 .case-card__title { font-size: 0.8rem; letter-spacing: 2px; }

/* Acordeón (toggle) */
.accordion { border-top: 0; }
.accordion__item { border-bottom: 1px solid var(--gray-2); }
.accordion__title {
  width: 100%; background: none; border: 0; padding: 16px 30px 16px 0; text-align: left;
  font-family: var(--sans); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; line-height: 1.3;
  color: var(--gray-2); position: relative; cursor: pointer;
}
.accordion--serif .accordion__title { font-family: var(--serif); font-size: 15px; font-weight: 400; text-transform: none; letter-spacing: 0; }
.accordion__title::after {
  content: ""; position: absolute; right: 4px; top: 50%; margin-top: -6px;
  border-style: solid; border-width: 6px 0 6px 8px; border-color: transparent transparent transparent var(--gray-2);
  transition: transform .3s;
}
.accordion__item.is-open .accordion__title::after { transform: rotate(90deg); }
.accordion__body { display: none; padding: 0 30px 20px 0; font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--gray-2); }
.accordion__item.is-open .accordion__body { display: block; }
.accordion__body p { margin-bottom: 8px; }
.accordion__meta { display: block; font-size: 12px; font-weight: 500; margin-bottom: 6px; color: var(--gray-2); }

/* Contadores (social media) */
.stats { display: flex; justify-content: space-around; align-items: center; gap: 20px; border-top: 1px solid #1C1C1C; border-bottom: 1px solid #1C1C1C; padding: 5% 3%; margin: 4% 0; text-align: center; }
.stat { flex: 1 1 25%; }
.stat__num { font-family: var(--serif); font-size: 2vw; font-weight: 400; line-height: 1em; letter-spacing: 1px; color: #1C1C1C; }
.stat__title { font-family: var(--serif); font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: #1C1C1C; margin-top: 10px; }
@media (max-width: 767px) {
  .stats { flex-wrap: wrap; padding: 8% 5%; }
  .stat { flex-basis: 45%; }
  .stat__num { font-size: 26px; }
}

/* Video embebido / grilla de videos */
.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.video-embed--9x16 { aspect-ratio: 9 / 16; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 20px; padding: 0 100px; }
.video-grid--edge { padding: 0 4%; gap: 0 16px; }
.video-grid__caption { padding: 22px 10px 10px; font-family: var(--serif); font-size: 13px; line-height: 1.5; color: var(--gray-4); }
.video-grid__caption b { font-weight: 700; }

/* Carrusel de fotos (1 slide, flechas) */
.photo-carousel { position: relative; overflow: hidden; }
.photo-carousel__track { display: flex; transition: transform .7s var(--ease); }
.photo-carousel__slide { flex: 0 0 100%; }
.photo-carousel__slide img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.photo-carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  background: none; border: 0; color: rgba(255,255,255,.85); font-size: 40px; line-height: 1; padding: 10px; cursor: pointer;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.photo-carousel__btn--prev { left: 6px; }
.photo-carousel__btn--next { right: 6px; }

/* Media apilada (casos) */
.media-img img, .media-video video { width: 100%; height: auto; display: block; }
.media-img, .media-video { margin-bottom: 20px; }

/* Bloque contacto dentro de páginas (formulario) */
.form-msg { font-family: var(--serif); font-size: 1rem; margin: 18px 0 0; }
.form-msg--ok { color: var(--beige); }
.form-msg--err { color: #A57B7B; }

/* =====================================================================
   HOME
   ===================================================================== */
.hero {
  background: var(--cream);
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2%) 4% 0;
  margin-bottom: 60px;
}
.hero__title {
  font-family: var(--serif);
  font-size: 6.8rem; font-weight: 500; line-height: 6.7rem; letter-spacing: -2.9px;
  color: var(--black);
  padding: 2% 20% 3%;
}
.hero__sub { padding: 0 30% 6%; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; line-height: 1.2rem; color: var(--gray); }
.hero__trusted .label { margin-bottom: 30px; }

/* Sección de video */
.video-band {
  position: relative; z-index: 4;
  min-height: 64vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 5%;
  background: #1B1B1B url("../uploads/2026/03/Mgallery-Tulum-ph-Brandgger-operacion-accor-2.jpg") center/cover no-repeat;
}
.video-band video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-band__content { position: relative; z-index: 2; }
.video-band__content h2 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; line-height: 1em; color: var(--white); }

/* About */
.about { min-height: 314px; margin-top: 10%; text-align: center; padding: 0 4%; }
.about .label { margin-bottom: 30px; }
.about p { padding: 0 25% 12%; font-size: 1rem; line-height: 2rem; color: var(--gray); }

/* What we do */
.what { margin-top: 4%; text-align: center; }
.what__cols { display: flex; gap: 30px; padding: 5%; }
.what__col {
  flex: 1 1 0; min-height: 50vh;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--gray);
  text-align: left;
}
.what__body { min-height: 19vh; display: flex; flex-direction: column; justify-content: space-between; gap: 10px; padding: 10% 5% 5%; }
.what__body h3 { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; line-height: 1.2em; color: var(--gray); }
.what__body p { font-size: 0.8rem; line-height: 1.5rem; letter-spacing: 1px; color: var(--gray); }
.what__foot { min-height: 7vh; display: flex; align-items: center; border-top: 1px solid var(--gray); padding-left: 2%; }

/* Banner premio */
.award {
  position: relative;
  min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2%;
  padding: 5% 4%;
  border-top: 1px solid var(--black); border-bottom: 1px solid var(--black);
  background: #000 url("../uploads/2026/03/Faena-Tulum-X-Brandgger-49-2.jpg") center left / cover no-repeat;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
}
.award::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .41); }
.award__inner { position: relative; z-index: 1; width: 100%; display: flex; flex-direction: column; align-items: center; }
.award__badge { width: 75px; height: auto; filter: brightness(200%) contrast(0%) saturate(0%); margin-bottom: 20px; }
.award__inner h4 { padding: 0 25% 2%; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; line-height: 1.4em; color: var(--white); }
.award__inner .btn { margin-top: 3%; }

/* =====================================================================
   CONTACTO + FOOTER
   ===================================================================== */
.contact { background: var(--dark); color: var(--beige); padding: 5%; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; align-items: center; }
.contact__form { padding: 40px 100px 40px 0; }
.contact__title { font-family: var(--serif); font-size: 3.3rem; font-weight: 300; line-height: 3rem; color: var(--beige); padding-bottom: 30px; }
.contact__label { padding-bottom: 18px; }
.contact-form { display: flex; flex-wrap: wrap; margin: 0 -5px; }
.contact-form__field { width: 100%; padding: 0 5px; margin-bottom: 17px; }
.contact-form input, .contact-form textarea {
  display: block; width: 100%;
  background: transparent; border: 1px solid var(--beige); border-radius: 0;
  color: var(--beige); font-family: var(--sans); font-size: 12px; font-weight: 300; padding: 7px 10px;
  outline: none; transition: border-color .3s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(242,234,224,.7); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--white); }
.contact-form textarea { resize: vertical; min-height: 70px; }
.contact-form__submit { padding: 0 5px; margin-top: 8px; }
.contact__aside { border: 1px solid var(--beige); padding: 50px 75px; }
.contact__office img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.address { display: flex; align-items: flex-start; gap: 4px; padding-top: 34px; color: var(--beige); }
.address__icon { flex: 0 0 auto; color: var(--beige); line-height: 0; }
.address__icon svg { width: 29px; height: 29px; }
.address h3 { font-family: var(--sans); font-size: 0.8rem; font-weight: 500; line-height: 1.9em; color: var(--beige); }
.address p { font-size: 9px; text-transform: capitalize; letter-spacing: 2px; line-height: 1.6; margin: 0; }

.site-footer { background: var(--dark); color: var(--beige); border-top: 1px solid var(--beige); padding: 5%; min-height: 400px; }
.site-footer__inner { display: grid; grid-template-columns: 33% 33% 33%; gap: 0 20px; align-items: start; }
.site-footer__brand { padding-right: 20%; }
.site-footer__brand img { width: 39%; margin-bottom: 20px; }
.site-footer__brand p { font-size: 0.7rem; line-height: 1.7em; letter-spacing: .7px; margin: 0; }
.site-footer__nav h4 { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--beige); margin-bottom: 30px; }
.site-footer__nav li { display: flex; align-items: center; gap: 9px; padding: 2px 0; }
.site-footer__nav li::before { content: ""; border-style: solid; border-width: 4px 0 4px 6px; border-color: transparent transparent transparent var(--beige); }
.site-footer__nav a { font-size: 0.7rem; letter-spacing: .1px; color: var(--beige); }
.site-footer__nav a:hover { color: var(--white); }
.site-footer__social { display: flex; justify-content: center; }
.site-footer__copy { background: var(--dark); border-top: 1px solid var(--gray); min-height: 50px; display: flex; align-items: center; justify-content: center; text-align: center; font-family: var(--serif); font-size: 16px; font-weight: 300; color: var(--beige); }

/* ---------- Cookie bar ---------- */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 980;
  background: #000; color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  padding: 10px 16px;
  font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 1.4;
}
.cookie-bar p { margin: 0; }
.cookie-bar a { color: #fff; font-weight: 700; text-decoration: underline; }
.cookie-bar button { background: #fff; color: #333; border: 0; padding: 5px 10px; font-size: 11px; }

/* ---------- Popup Instagram ---------- */
.ig-popup { position: fixed; inset: 0; z-index: 960; background: rgba(0,0,0,.8); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity .3s; }
.ig-popup.is-open { opacity: 1; }
.ig-popup__box { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; width: 100%; max-width: 900px; background: var(--white); overflow: hidden; }
.ig-popup__close { position: absolute; top: 12px; right: 12px; z-index: 2; background: none; border: 0; color: var(--dark); padding: 6px; line-height: 0; }
.ig-popup__img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.ig-popup__text { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 36px; }
.ig-popup__text h2 { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; line-height: 1.25; color: var(--gray); margin-bottom: 28px; }

/* =====================================================================
   PÁGINAS INTERNAS
   ===================================================================== */
.page-hero { background: var(--cream); padding: calc(var(--header-h) + 3%) 4% 0; text-align: center; }
.page-hero__title { font-family: var(--serif); font-size: 70px; font-weight: 500; line-height: 69px; letter-spacing: -2.9px; color: var(--black); padding: 3% 20%; }
.page-hero__title--xl { font-size: 100px; line-height: 100px; }
.page-hero__title--lg { font-size: 81px; line-height: 80px; }
.page-hero__title--social { font-size: 4vw; line-height: 1.6em; letter-spacing: 0; color: #1C1C1C; }
.page-hero__sub { padding: 0 30% 6%; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; line-height: 1.4em; color: var(--gray); }
.page-hero__text { padding: 0 25% 5%; font-size: 15px; line-height: 1.8em; color: var(--gray); text-align: center; }
.page-hero__text--deep { padding-bottom: 12%; }

/* Texto centrado con etiqueta (about) */
.centered-block { min-height: 314px; text-align: center; padding: 8% 4% 0; }
.centered-block .label { margin-bottom: 30px; }
.centered-block__text { padding: 0 25% 12%; font-size: 15px; line-height: 1.8em; color: var(--gray); }
.centered-block__text strong { font-weight: 600; }

/* Dos columnas texto + acordeón */
.split-acc { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; padding: 4% 4% 5%; align-items: start; }
.split-acc__text { padding: 0 5% 0 3%; }
.split-acc__text .label { letter-spacing: 4.6px; color: var(--gray-2); margin-bottom: 20px; }
.split-acc__text p { font-size: 16px; font-weight: 300; line-height: 2.2em; color: var(--black); text-align: justify; margin-bottom: 1em; }
.split-acc__acc { padding: 0 15% 0 5%; }
.split-acc__phase { font-family: var(--serif); font-style: italic; font-size: 1.5vw; font-weight: 600; color: var(--gray-5); padding: 0 0 0 2%; margin: 26px 0 8px; }
.split-acc__phase--first { margin-top: 0; }
.split-acc__phase--gap { padding-top: 10%; }

/* Filas de servicios (real estate) */
.service-rows { padding: 3% 8% 2%; }
.service-row { display: grid; grid-template-columns: 40% 60%; gap: 0 20px; align-items: center; padding: 26px 0; }
.service-row h2 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; line-height: 1.6em; color: var(--gray); text-align: center; }
.service-row p { font-size: 15px; line-height: 1.8em; color: var(--gray); margin: 0; }

/* Dos columnas 50/50 con imagen (about) */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.split__img--pad { padding: 1%; }
.split__text { padding: 10%; }
.split__text h2, .split__text h3 { font-family: var(--serif); font-size: 35px; font-weight: 400; line-height: 1.2; color: var(--gray-3); padding-top: 15px; }
.split__text p, .split__text li { font-size: 15px; line-height: 2.2em; color: var(--gray-3); }
.split__text p { padding-top: 25px; margin: 0; }
.split__text ul { list-style: disc; padding-left: 20px; margin-top: 20px; }
.split__text .team { padding-top: 6%; }
.split__text .team p { padding: 0; }

/* Cabecera con imagen de fondo (fotografía / lead gen) */
.img-header { position: relative; padding: calc(var(--header-h) + 3%) 4% 3%; color: var(--beige); background: #000 center/cover no-repeat; }
.img-header::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.65); }
.img-header--light::before { background: rgba(0,0,0,.16); }
.img-header__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.img-header__col { padding-right: 70px; }
.img-header .label { color: var(--beige); font-weight: 400; letter-spacing: 3.5px; margin-bottom: 8px; }
.img-header--light .label { color: var(--white); letter-spacing: 4.6px; }
.img-header h1 { font-family: var(--serif); font-size: 50px; font-weight: 400; line-height: 1.2em; color: var(--beige); }
.img-header--light h1 { color: var(--white); line-height: 1.1em; }

/* Fotografía: texto + lista */
.photo-intro { display: grid; grid-template-columns: 60% 40%; gap: 0 20px; padding: 4% 4% 3%; }
.photo-intro__text { padding-right: 60px; font-size: 15px; line-height: 1.5em; color: var(--gray-4); text-align: justify; }
.photo-intro__text b { font-weight: 700; }
.photo-intro h2 { font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1em; letter-spacing: -.8px; color: var(--gray-4); margin-bottom: 20px; }
.photo-intro li { font-family: var(--serif); font-size: 15px; color: var(--gray-4); padding: 3.5px 0; }
.photo-carousels { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 3%; }
.divider-title { display: flex; align-items: center; gap: 20px; padding: 3% 4% 3% 100px; }
.divider-title h4 { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--gray-4); white-space: nowrap; }
.divider-title::after { content: ""; flex: 1; height: 1px; background: #C9C6BF; }
.full-video { background: #000; padding: 0; margin-top: 4%; }
.full-video .video-embed { max-width: 1140px; margin: 0 auto; }

/* Lead gen */
.lead-intro { display: grid; grid-template-columns: 27% 73%; background: var(--beige-3); }
.lead-intro__img { padding: 0 15% 20% 10%; }
.lead-intro__text { padding: 10% 15% 20% 10%; }
.lead-intro h2, .lead-services h2, .lead-cta h2 { font-family: var(--serif); font-size: 45px; font-weight: 400; line-height: 1em; letter-spacing: -.8px; color: var(--gray-2); }
.lead-intro p, .lead-cta p { font-size: 15px; font-weight: 300; line-height: 2.2em; color: var(--black); }
.lead-intro p { padding-top: 20px; margin: 0; }
.lead-intro .label, .lead-services .label { font-size: 13px; font-weight: 500; letter-spacing: 2px; color: var(--gray-2); margin-top: 30px; margin-bottom: 8px; }
.lead-intro .lead-intro__services { font-size: 15px; font-weight: 300; line-height: 1.4em; padding-top: 0; }
.lead-services { display: grid; grid-template-columns: 60% 40%; gap: 0 20px; background: var(--beige-2); padding: 3% 4%; align-items: center; }
.lead-services__head { padding: 5%; }
.lead-services .label { margin-top: 0; }
.lead-cta { background: var(--beige-2); text-align: center; padding: 6% 4% 0; }
.lead-cta p { padding: 20px 20% 0; }
.lead-videos { background: var(--beige-2); padding: 4% 0 3%; }
.lead-logos { background: var(--beige-3); text-align: center; padding: 5% 4%; }
.lead-logos .label { font-weight: 500; letter-spacing: 4.6px; color: var(--gray-2); margin-bottom: 30px; }

/* Casos (galería en una columna) */
.case-gallery { padding: 6% 6% 3%; }
.case-quote { text-align: center; padding: 4% 4% 8%; }
.case-quote h2 { font-family: var(--serif); font-size: 62px; font-weight: 500; line-height: 61px; letter-spacing: -1.3px; color: var(--black); }
.case-more { text-align: center; padding: 2% 4% 8%; }

/* Artículo (ranking) */
body.page-top-hotel-branding-agencies-2023 { background: var(--beige-2); }
.article { padding: calc(var(--header-h) + 3%) 0 0; text-align: center; }
.article__img { padding: 5% 19%; }
.article__img img { width: 100%; }
.article h2 { font-family: var(--serif); font-size: 55px; font-weight: 900; line-height: 1.1em; letter-spacing: -.8px; color: var(--gray); padding: 0 16%; }
.article .label { font-weight: 500; letter-spacing: 6px; color: var(--gray-4); padding: 3% 3% 1%; }
.article .label--sec { padding: 3% 3% 2%; }
.article p { padding: 2% 19% 0; font-size: 15px; font-weight: 300; line-height: 2.2em; color: var(--gray); text-align: justify; margin: 0; }
.article p + p { padding-top: 1.5%; }
.article p a { text-decoration: underline; }
.article .btn { margin: 4% 0 10%; }

/* Política de privacidad */
.legal { padding: calc(var(--header-h) + 3%) 15% 8%; }
.legal h1 { font-family: var(--serif); font-size: 2.6rem; font-weight: 500; color: var(--black); margin-bottom: 30px; }
.legal h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--black); margin: 36px 0 14px; }
.legal p, .legal li { font-size: 14px; line-height: 1.9; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.legal a { text-decoration: underline; }

/* 404 */
.notfound { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: calc(var(--header-h) + 8%) 4% 8%; }
.notfound h1 { font-family: var(--serif); font-size: 6rem; color: var(--black); }
.notfound h3 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin: 20px 0 30px; }

/* =====================================================================
   RESPONSIVE (tablet ≤1024, mobile ≤767) — valores del original
   ===================================================================== */
@media (max-width: 1024px) {
  .hero { padding: 5% 10% 10%; min-height: 0; }
  .hero__title { font-size: 90px; line-height: 1em; padding: 12% 0 0; }
  .hero__sub { font-size: 11px; padding: 0 5% 0; margin-top: 2%; }
  .hero__trusted .label { font-size: 11px; padding-top: 13%; margin-bottom: 20px; }
  .logo-carousel { padding: 0 20% 4%; }
  .logo-carousel__slide { flex-basis: 50%; }
  .video-band { min-height: 100vh; }
  .video-band__content h2 { font-size: 11px; }
  .about p { padding: 0 10%; font-size: 13px; line-height: 1.6em; margin-top: 10%; }
  .about .label { font-size: 11px; padding-top: 13%; }
  .what > .label { font-size: 11px; padding-top: 13%; }
  .what__cols { padding: 10% 5%; }
  .what__body { min-height: 40vh; }
  .what__body h3 { font-size: 11px; }
  .what__body p { font-size: 13px; }
  .award { min-height: 544px; margin-top: 16%; margin-bottom: 14%; padding: 0 8%; }
  .award__badge { width: 21%; padding-top: 15%; }
  .award__inner h4 { font-size: 11px; margin-top: 2%; padding: 0; }
  .award__inner .btn { font-size: 11px; margin: 0; padding: 12px 24px; }
  .cases-head { min-height: 82px; padding: 0 25px; }
  .case-card__title { font-size: 10px; letter-spacing: 2.7px; padding: 5% 5% 3%; text-align: center; }
  .contact { padding: 15% 3% 10%; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__form { padding: 5%; }
  .contact__label { padding: 0; }
  .contact__label.label { font-size: 11px; letter-spacing: 3.4px; }
  .contact__aside { padding: 30px; }
  .site-footer { padding: 90px 20px 50px; }
  .site-footer__inner { grid-template-columns: 36% 30% 1fr; }
  .site-footer__brand { padding-right: 10%; }
  .site-footer__brand p { font-size: 10px; }
  .site-footer__copy { padding: 5px 20px; font-size: 13px; }
  .site-menu__panel { padding: 50px 40px 60px; }
  .page-hero__title { font-size: 3.4rem; line-height: 1.1em; letter-spacing: -1.5px; padding: 4% 6% 3%; }
  .page-hero__title--xl, .page-hero__title--lg { font-size: 3.8rem; }
  .page-hero__title--social { font-size: 5vw; }
  .page-hero__sub { padding: 0 10% 6%; font-size: 11px; }
  .page-hero__text { padding: 0 10% 5%; font-size: 13px; line-height: 1.6em; }
  .centered-block__text { padding: 0 10% 10%; font-size: 13px; line-height: 1.6em; }
  .split-acc__text { padding: 0 30px 0 0; }
  .split-acc__acc { padding: 0 30px 0 0; }
  .split-acc__text p { font-size: 14px; }
  .split-acc__phase { font-size: 18px; }
  .service-row { grid-template-columns: 1fr; padding: 20px 0; }
  .service-row p { text-align: center; font-size: 13px; line-height: 1.6em; padding: 0 10%; }
  .split__text { padding: 5% 10% 5% 5%; }
  .img-header__col { padding-right: 25px; }
  .img-header h1 { font-size: 36px; }
  .photo-intro { grid-template-columns: 1fr; }
  .photo-intro__text { padding-right: 0; font-size: 14px; }
  .divider-title { padding-left: 50px; }
  .video-grid { padding: 0 20px 20px; }
  .lead-intro { grid-template-columns: 1fr; }
  .lead-intro__img { padding: 8% 30% 0; }
  .lead-intro__text { padding: 6% 10% 10%; }
  .lead-intro h2, .lead-services h2, .lead-cta h2 { font-size: 34px; }
  .lead-services { grid-template-columns: 1fr; }
  .case-quote h2 { font-size: 46px; line-height: 1em; }
  .article__img, .article p { padding-left: 5%; padding-right: 5%; }
  .article h2 { font-size: 40px; padding: 0 5%; }
  .article p { font-size: 12px; line-height: 1.6em; }
  .legal { padding-left: 8%; padding-right: 8%; }
}

@media (max-width: 767px) {
  :root { --header-h: 100px; }
  .site-header { padding: 0 23px; }
  .site-header__logo img { width: 95px; }
  .site-header__menu svg { width: 28px; height: 22px; }
  .hero { margin-top: 0; padding: 20% 8% 14%; margin-bottom: 0; }
  .hero__title { font-size: 3.1rem; line-height: 1em; letter-spacing: -1px; word-spacing: .1em; padding: 14% 0 0; }
  .hero__sub { font-size: 0.6rem; line-height: 1rem; letter-spacing: 1px; padding: 0 10px; margin-top: 10%; }
  .hero__trusted .label { font-size: 0.7rem; letter-spacing: 0; padding-top: 0; margin-top: 15%; }
  .logo-carousel { padding: 0 15% 0; }
  .logo-carousel__slide { flex-basis: 50%; }
  .video-band { min-height: 86vh; padding: 0 20px; }
  .video-band__content h2 { font-size: 0.7rem; line-height: 1.3em; letter-spacing: 1.3px; }
  .about p { padding: 0 3%; font-size: 0.8rem; margin-top: 0; }
  .about .label, .what > .label { font-size: 0.7rem; padding-top: 0; margin-top: 15%; }
  .what__cols { flex-direction: column; padding: 10% 5%; }
  .what__body { min-height: 35vh; }
  .what__body h3 { font-size: 0.7rem; }
  .what__body p { font-size: 0.8rem; line-height: 1.6em; }
  .award { margin: 0; padding: 0 20px; min-height: 60vh; background-attachment: scroll; }
  .award__inner h4 { font-size: 12px; line-height: 1.5em; letter-spacing: 1px; padding: 0 10px; margin-bottom: 20%; }
  .award__inner .btn { font-size: 10px; margin-bottom: 9%; }
  .cases-head { min-height: 71px; margin-top: 4%; padding: 0; }
  .cases-head .label { font-size: 12px; letter-spacing: 6px; }
  .cases { grid-template-columns: 1fr; gap: 0; }
  .case-card__title { font-size: 11px; line-height: 47px; letter-spacing: 2.3px; padding: 0; text-align: center; }
  .contact { padding: 100px 20px 100px 30px; }
  .contact__form { padding: 0 0 35px; }
  .contact__title { font-size: 30px; line-height: 1.1; text-align: center; padding-bottom: 25px; }
  .contact__label { text-align: center; }
  .contact__label.label { font-size: 12px; line-height: 20px; letter-spacing: 4px; }
  .contact__aside { margin-top: 50px; padding: 0; }
  .address { padding: 50px; }
  .site-footer { padding: 30px 20px; min-height: 0; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 0; }
  .site-footer__brand { padding-right: 0; }
  .site-footer__brand img { width: 49%; }
  .site-footer__nav { margin-top: 30px; }
  .site-footer__social { justify-content: flex-start; margin-top: 30px; }
  .site-footer__copy { font-size: 13px; line-height: 1.6em; }
  .site-menu { align-items: flex-start; }
  .site-menu__panel { grid-template-columns: 1fr; gap: 20px; padding: 60px 26px 50px; min-height: 100%; }
  .site-menu__col--info p { padding-right: 0; font-size: 10px; margin: 5% 0; }
  .site-menu__link { font-size: 12px; letter-spacing: 1px; }
  .site-menu__group { margin-top: 16px; }
  .ig-popup__box { grid-template-columns: 1fr; max-width: 420px; }
  .ig-popup__img img { aspect-ratio: 16 / 10; }
  .ig-popup__text { padding: 28px 22px; }
  .ig-popup__text h2 { font-size: 1.3rem; }
  .page-hero { padding-top: calc(var(--header-h) + 6%); }
  .page-hero__title { font-size: 2.4rem; letter-spacing: -1px; padding: 6% 0 4%; }
  .page-hero__title--xl, .page-hero__title--lg { font-size: 2.6rem; }
  .page-hero__title--social { font-size: 2.2rem; line-height: 1.3em; }
  .page-hero__sub { font-size: 0.7rem; letter-spacing: 1.3px; padding: 0 0 8%; }
  .page-hero__text { padding: 0 3% 8%; font-size: 0.8rem; }
  .centered-block__text { padding: 0 3% 12%; font-size: 0.8rem; }
  .split-acc { grid-template-columns: 1fr; padding: 6% 5%; }
  .split-acc__text, .split-acc__acc { padding: 0; }
  .split-acc__acc { margin-top: 30px; }
  .split-acc__phase { font-size: 16px; padding: 0; }
  .split-acc__phase--gap { padding-top: 0; }
  .service-rows { padding: 5% 5%; }
  .split { grid-template-columns: 1fr; }
  .split--img-first .split__img { order: -1; }
  .split__text { padding: 8% 6%; }
  .split__text h2, .split__text h3 { font-size: 26px; }
  .split__text p, .split__text li { font-size: 13px; line-height: 2em; }
  .img-header { padding-top: calc(var(--header-h) + 8%); }
  .img-header__inner { grid-template-columns: 1fr; }
  .img-header h1 { font-size: 28px; }
  .photo-carousels { grid-template-columns: 1fr; }
  .divider-title { padding: 6% 5% 4%; }
  .divider-title h4 { font-size: 22px; }
  .video-grid { grid-template-columns: 1fr; padding: 0 20px 20px; gap: 20px; }
  .lead-intro__img { padding: 10% 25% 0; }
  .lead-intro__text { padding: 8% 6% 10%; }
  .lead-intro h2, .lead-services h2, .lead-cta h2 { font-size: 28px; }
  .lead-intro p, .lead-cta p { font-size: 14px; }
  .lead-cta p { padding: 20px 0 0; }
  .lead-services { padding: 8% 5%; }
  .lead-services__head { padding: 0 0 20px; }
  .case-gallery { padding: 6% 0 3%; }
  .case-quote h2 { font-size: 34px; line-height: 1em; letter-spacing: -1px; }
  .article__img { padding: 0 2%; }
  .article h2 { font-size: 30px; }
  .article p { padding: 5% 5% 0; text-align: justify; }
  .legal { padding-left: 5%; padding-right: 5%; }
  .legal h1 { font-size: 1.9rem; }
  .notfound h1 { font-size: 4rem; }
  .cookie-bar { font-size: 11px; text-align: center; }
}
