:root{
  --ink:#111;
  --paper:#f6f4ef;
  --paper2:#fbfaf7;
  --olive:#6b7a55;
  --shadow: 0 25px 60px rgba(0,0,0,.18);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper2);
}
/* HEADER / NAV */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(246,244,239,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.site-header .nav-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header nav{
  display: flex;
  gap: 18px;
}

.site-header nav a{
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(17,17,17,.72);
  text-decoration: none;
}

.site-header nav a:hover{
  color: rgba(17,17,17,.95);
}

/* TOPBAR / NAV — lujo */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;

  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.topbar-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.nav{
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a{
  color: rgba(17,17,17,.80);
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover{
  color: rgba(17,17,17,1);
}

.nav-cta{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;

  background: #111;
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
}

/* para que el hero no quede debajo del menú fijo */
.hero{
  padding-top: 88px;
}

/* HERO */
.hero{
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--paper); /* por si carga lenta */
  padding-top: 88px;
}



.hero-image{
  line-height: 0;
  display: block;
}


.hero-image img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}




/* velo suave para legibilidad */
.editorial-image {
  max-width: 1100px;
  margin: 120px auto 120px auto;
  padding: 0 6vw;
}

.editorial-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
}



/* tarjeta */
.hero-card{
  position: relative;
  z-index:2;
max-width: 520px;
margin-left: 6vw;
transform: translateY(36px);


  background: rgba(246,244,239,.92);
  backdrop-filter: blur(6px);
  border-radius: 28px;
  padding: clamp(26px, 4vw, 56px);
  box-shadow: var(--shadow);
}

.hero-tag{
  display:inline-block;
  letter-spacing:.22em;
  text-transform: uppercase;
  font-size: .75rem;
  color: rgba(17,17,17,.55);
  margin-bottom: 18px;
}

.hero-card h1{
  margin: 0 0 18px 0;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.02;
}

.hero-intro{
  margin: 0 0 14px 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-manifesto{
  margin: 0 0 12px 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(17,17,17,.75);
}

.hero-cta{
  display:inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration:none;
  font-size: .9rem;
  letter-spacing:.02em;
}

.hero-cta:hover{ opacity:.92; }

.world-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-top:26px;
}
.world-item{
  margin:0;
  background: rgba(255,255,255,.55);
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.world-grid a.world-item{
  display:block;
  color:inherit;
  text-decoration:none;
}
.world-grid a.world-item:hover{
  text-decoration:none;
}

.world-item{
  display:block;
  text-decoration:none;
  color:inherit;
}

.world-item img{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
}
.world-item figcaption{
  padding:14px 16px;
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  opacity:.8;
}
@media (max-width: 920px){
  .world-grid{ grid-template-columns:1fr; }
  .world-item img{ height:240px; }
}

/* QUIÉN SOY */
.author{
  background: var(--paper);
  padding: 4.5rem 1.5rem;
}

.author-wrap{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3rem;
  align-items: center;
}

.author-photo{
  margin:0;
  border-radius: 24px;
  overflow:hidden;
  box-shadow: var(--shadow);
}

.author-photo img{
  width:100%;
  height:auto;
  display:block;
}

.author-kicker{
  display:inline-block;
  letter-spacing:.22em;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--olive);
  margin-bottom: 14px;
}

.author-title{
  margin:0 0 14px 0;
  font-size: 2.2rem;
  line-height: 1.15;
}

.author-lead{
  margin: 0 0 16px 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.author-body{
  margin:0;
  color: rgba(17,17,17,.78);
  line-height: 1.7;
}

/* EDITORIAL */
.editorial{
  background: var(--paper2);
  padding: 4.5rem 1.5rem;
}

.editorial-inner{
  max-width: 1100px;
  margin: 0 auto;
}

.editorial-tag{
  display:inline-block;
  letter-spacing:.18em;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--olive);
  margin-bottom: 1.5rem;
}

.editorial h2{
  margin: 0 0 2rem 0;
  font-size: 2.4rem;
  line-height: 1.15;
  color: #111;
}

.editorial-text{
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin: 0 0 1.4rem 0;
  max-width: 640px;
}

/* responsive */
@media (max-width: 900px){
  .hero-card{ top: 6vh; }
  .author-wrap{ grid-template-columns: 1fr; }
}
/* === HERO (ajuste lujo: tarjeta más ligera, deja ver la portada) === */
.hero{
  position: relative;
  min-height: 92vh;
  overflow: hidden;
}

/* Imagen: encuadre más editorial (menos “tapa”) */
.hero-image img{
  width: 100%;
  height: 92vh;
  object-fit: cover;
  object-position: 62% 38%; /* mueve el encuadre: más pareja visible */
  display: block;
}

/* Tarjeta: más pequeña, a la izquierda, aire editorial */
.hero-card{
  position: absolute;
  left: clamp(20px, 5vw, 70px);
  top: 52%;
  transform: translateY(-50%);
  width: min(640px, 92vw);
  padding: clamp(26px, 3vw, 44px);
  border-radius: 28px;

  background: rgba(246, 244, 239, 0.86); /* más transparente */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 28px 80px rgba(0,0,0,.22);
  z-index: 2;
}

/* Tipos: un pelín más compactos para “respirar” */
.hero-card h1{
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  line-height: 1.06;
}

/* En móvil: tarjeta centrada abajo y más estrecha */
@media (max-width: 860px){
  .hero-image img{ height: 88vh; }
  .hero-card{
    left: 50%;
    top: auto;
    bottom: 18px;
    transform: translateX(-50%);
    width: min(680px, 92vw);
  }
}
/* ===== MOBILE PREMIUM TUNING ===== */
@media (max-width: 820px){
  .hero{
    min-height: 78vh;
  }

  .hero-card{
    width: min(92vw, 560px);
    padding: 26px 24px;
    top: 10vh;              /* baja un poco para que respire la foto */
    border-radius: 22px;
  }

  .hero-card h1{
    font-size: clamp(2.0rem, 7vw, 3.0rem);
    line-height: 1.05;
  }

  .hero-intro{
    font-size: 1rem;
  }

  .hero-manifesto{
    font-size: .98rem;
  }

  .hero-cta{
    padding: 12px 20px;
    font-size: .92rem;
  }
}

@media (max-width: 480px){
  .hero-card{
    top: 12vh;
    padding: 22px 20px;
  }
}
/* ===== TRANSICIÓN EDITORIAL ENTRE SECCIONES ===== */
.hero{
  position: relative;
}








/* --- AJUSTE EDITORIAL DE LUJO --- */




/* Eliminar cualquier separador visual fantasma */
section + section {
  border: none;
}
/* AJUSTE IMAGEN EDITORIAL – LUJO */
/* AJUSTE IMAGEN EDITORIAL - LUJO */
.editorial-image{
  background: var(--paper);
  max-width: 1100px;
  margin: 32px auto 56px auto;  /* separa elegante, sin huecos enormes */
  padding: 0;                  /* sin padding lateral fantasma */
}

.editorial-image img{
  display: block;
  width: 100%;
  max-height: 520px;     /* control editorial */
  height: auto;
  object-fit: cover;    /* recorte elegante */
  border-radius: 28px;
  box-shadow: var(--shadow);
}
/* =========================
   PREMIUM SECTIONS (SERVICES / CONTACT / MUNDO)
   ========================= */

/* Espaciado editorial */
.services, .contact, .world {
  padding: 84px 0;
}

.services-inner, .contact-inner, .world-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Tag editorial */
.services-tag, .contact-tag, .world-tag {
  display: inline-block;
  letter-spacing: .18em;
  font-size: 12px;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 12px;
}

/* Titulares: coherentes con tu look */
.services h2, .contact h2, .world h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
  margin: 0 0 18px;
}
/* ===============================
   SERVICIOS · Grid editorial (único)
   =============================== */

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  align-items: stretch;
}

/* Tarjetas base: mismas proporciones */
.services-grid > .service-card{
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 270px;
}

/* La lista empuja hacia abajo */
.services-grid > .service-card ul{
  margin-top: auto;
}

/* Tarjeta 4 (wide) — PC */
@media (min-width: 981px){
  .services-grid > .service-card-wide{
    grid-column: 1 / -1;      /* ocupa las 3 columnas */
    width: 100%;
    max-width: 1100px;        /* mismo ancho editorial */
    margin: 24px auto 0;      /* centrada */
  }
}

/* Tablet */
@media (max-width: 980px){
  .services-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid > .service-card-wide{
    grid-column: 1 / -1;
    margin-top: 18px;
  }
}

/* Móvil */
@media (max-width: 560px){
  .services-grid{
    grid-template-columns: 1fr;
  }
}

/* Mundo: introducción editorial */
.world-intro {
  max-width: 720px;
  margin-bottom: 64px;
}

.world-intro .world-tag {
  display: inline-block;
  margin-bottom: 14px;
}

.world-intro h2 {
  margin-bottom: 22px;
}

.world-intro .contact-lead {
  font-size: 1.05rem;
}

/* Ritmo editorial en títulos de servicios */
.services-grid .service-card h3 {
  font-weight: 500;
}
/* Cierre editorial del bloque servicios */
#servicios {
  padding-bottom: 72px;
}

@media (max-width: 1024px) {
  .services-grid {
    gap: 16px;
  }
}
/* =========================
   ORGANIZACIÓN — Collage editorial lujo
   ========================= */

/* =========================
   ORGANIZACIÓN — GRID THE LANE (7 IMÁGENES)
   Sustituye el bloque anterior completo
========================= */

.organizacion-grid{
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 40px 40px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

/* HERO superior (título + claim + viñeta) */
.organizacion-hero{
  padding-top: 140px;
  background: transparent;
}

.organizacion-hero-inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Viñeta premium (chips) */
.org-vineta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.org-vineta span{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(17,17,17,.10);
  font-size: .88rem;
  letter-spacing: .02em;
}

.org-vineta span::before{
  content:"";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(17,17,17,.35);
}

/* Tarjetas imagen */
.organizacion-grid .world-item{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(17,17,17,.08);
  border: 1px solid rgba(17,17,17,.08);
  min-height: 260px; /* base */
}

.organizacion-grid .world-item img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
}

/* =========================
   Piezas del collage (7)
   Debe coincidir con tus clases: org-hero, org-a, org-b, org-c, org-d, org-e, org-f
========================= */

/* 1) HERO — banquete grande (izquierda, 2 filas) */
.organizacion-grid .org-hero{
  grid-column: 1 / span 6;
  grid-row: 1 / span 2;
  min-height: 560px;
}

/* 2) Mesa lino (arriba derecha 1) */
.organizacion-grid .org-a{
  grid-column: 7 / span 3;
  grid-row: 1 / span 1;
  min-height: 260px;
}

/* 3) Manos/novia en calma (arriba derecha 2) */
.organizacion-grid .org-b{
  grid-column: 10 / span 3;
  grid-row: 1 / span 1;
  min-height: 260px;
}

/* 4) Papelería (segunda fila derecha, ancho completo) */
.organizacion-grid .org-c{
  grid-column: 7 / span 6;
  grid-row: 2 / span 1;
  min-height: 320px;
}

/* 5) Complementos novio (fila inferior, 3 columnas) */
.organizacion-grid .org-d{
  grid-column: 1 / span 4;
  grid-row: 3 / span 1;
  min-height: 260px;
}

/* 6) Detalles novia (fila inferior, centro) */
.organizacion-grid .org-e{
  grid-column: 5 / span 4;
  grid-row: 3 / span 1;
  min-height: 260px;
}

/* 7) Mesa final en silencio (fila inferior, derecha) */
.organizacion-grid .org-f{
  grid-column: 9 / span 4;
  grid-row: 3 / span 1;
  min-height: 260px;
}

/* Responsive */
@media (max-width: 900px){
  .organizacion-grid{
    grid-template-columns: 1fr;
    padding: 10px 22px 34px;
    gap: 16px;
  }

  .organizacion-grid .org-hero,
  .organizacion-grid .org-a,
  .organizacion-grid .org-b,
  .organizacion-grid .org-c,
  .organizacion-grid .org-d,
  .organizacion-grid .org-e,
  .organizacion-grid .org-f{
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }
}





@media (max-width: 640px) {
  .services-grid {
    gap: 14px;
    margin-top: 18px;
  }
}
/* Refinamiento: microtipografía premium */
.services-grid .service-card h3 {
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.services-grid .service-card p {
  line-height: 1.65;
  color: rgba(0,0,0,.72);
  margin: 0 0 14px;
}

.services-grid .service-card li {
  line-height: 1.55;
  color: rgba(0,0,0,.75);
}
/* Refinamiento: bullets discretos (editorial) */
.services-grid .service-card ul {
  list-style-position: outside;
}

.services-grid .service-card li::marker {
  color: rgba(0,0,0,.35);
}
/* Refinamiento: tarjeta tipo papel (borde + sombra) */
.services-grid .service-card {
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}



/* Tarjetas */
.service-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 28px 28px 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
}


.service-card h3{
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}


.service-card p{
  line-height: 1.65;
  color: rgba(0,0,0,.72);
  margin: 10px 0 16px;
}


.service-card ul{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li{
  position: relative;
  padding-left: 16px;
  margin: 10px 0;
  color: rgba(0,0,0,.75);
  line-height: 1.55;
}

.service-card li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(0,0,0,.35);
}
.service-card h3 {
  letter-spacing: 0.2px;
}

.service-card p {
  margin-bottom: 18px;
  color: #6f6f6f;
}

.service-card ul li {
  line-height: 1.6;
}

/* CONTACTO premium */
.contact-lead {
  max-width: 720px;
  line-height: 1.7;
  opacity: .9;
  margin: 0 0 22px;
}

.contact-form {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
  max-width: 820px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  outline: none;
  font-size: 14px;
}

.contact-form textarea {
  margin-top: 14px;
  line-height: 1.7;
}

.contact-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  border: 1px solid rgba(0,0,0,.18);
  cursor: pointer;
}

.contact-micro {
  margin-top: 12px;
  font-size: 13px;
  opacity: .8;
}


/* =====================================================
   MUNDO EDITORIAL – GRID INTERACTIVO (The Lane style)
   ===================================================== */

/* Grid de las tres piezas */
.world-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Tarjeta */
.world-item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #f6f4ef;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.world-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.08);
}

/* Imagen */
.world-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Capa editorial (hover) */
.world-card::after {
  content: "Ver esencia editorial";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.35s ease;
    z-index: 2;
  pointer-events: none;
  color: #6B7A63;

}
.world-item{
  position: relative;
}

.world-card:hover::after {
  opacity: 1;
}
.world-card{
  position: relative;
  display: block;
}

.world-card img{
  position: relative;
  z-index: 0;
}

/* Título inferior editorial – versión lujo */
.world-item figcaption {
  padding: 20px 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.94rem;          /* más legible, editorial */
  letter-spacing: 0.18em;     /* menos espaciado = más lujo */
  text-transform: uppercase;
  background: #fff;
  color: #2F3A2F;              /* verde oliva profundo */
  opacity: 0.95;
}

/* Enlace editorial (sin subrayado nativo, cero azul) */
.world-item figcaption a,
.world-item figcaption a:visited {
  color: #2F3A2F !important;
  text-decoration: none !important;

  display: inline-block;
  padding-bottom: 6px;
 border-bottom: 0.8px solid rgba(47, 58, 47, 0.35);
}

/* Hover silencioso, lujo */
.world-item figcaption a:hover {
  border-bottom-color: rgba(47, 58, 47, 0.75);
}
/* Forzar color editorial en enlaces de tarjetas (anula azul global) */
.world-item figcaption a,
.world-item figcaption a:visited,
.world-item figcaption a:active,
.world-item figcaption a:focus {
  color: #2F3A2F !important;
  text-decoration: none !important;
  border-bottom-color: rgba(47, 58, 47, 0.35) !important;
}



/* Responsive */
@media (max-width: 900px) {
  .world-grid {
    grid-template-columns: 1fr;
  }

  .world-item img {
    height: 320px;
  }
}
/* ===== Experiencia ===== */
.experience-hero{
  padding: 110px 0 34px;
  background: #fbfaf7;
}
.experience-hero__inner{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}
.experience-kicker{
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(0,0,0,.55);
  margin: 0 0 10px;
}
.experience-hero h1{
  font-size: clamp(34px, 4vw, 58px);
  margin: 0 0 14px;
}
.experience-lead{
  max-width: 62ch;
  line-height: 1.75;
  color: rgba(0,0,0,.65);
  margin: 0;
}

.experience-grid{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.experience-item{
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #eee;
}
.experience-item img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.experience-item--hero{
  grid-column: 1 / -1;
  height: 420px;
}
.experience-item:nth-child(2){
  grid-column: 1 / 7;
  height: 320px;
}
.experience-item:nth-child(3){
  grid-column: 7 / -1;
  height: 320px;
}
.experience-item:nth-child(4){
  grid-column: 1 / 5;
  height: 260px;
}
.experience-item:nth-child(5){
  grid-column: 5 / 9;
  height: 260px;
}
.experience-item:nth-child(6){
  grid-column: 9 / -1;
  height: 260px;
}

.experience-cta{
  padding: 70px 0 90px;
  background: #fbfaf7;
}
.experience-cta__inner{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  border-radius: 22px;
  padding: 34px;
  background: rgba(0,0,0,.03);
}
.experience-cta__inner h2{
  margin: 0 0 10px;
}
.experience-cta__inner p{
  margin: 0 0 18px;
  color: rgba(0,0,0,.65);
  line-height: 1.7;
}

@media (max-width: 900px){
  .experience-item--hero{ height: 320px; }
  .experience-item:nth-child(2),
  .experience-item:nth-child(3){
    grid-column: 1 / -1;
    height: 260px;
  }
  .experience-item:nth-child(4),
  .experience-item:nth-child(5),
  .experience-item:nth-child(6){
    grid-column: 1 / -1;
    height: 240px;
  }
}
/* FIX: permitir click en tarjetas del bloque Mundo */
.world-item { position: relative; }

.world-card {
  position: relative;
  display: block;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

/* Si hay overlays/pseudoelementos que cubren la tarjeta, que no bloqueen el click */
.world-card::before,
.world-card::after,
.world-item::before,
.world-item::after {
  pointer-events: none;
}

/* Si el texto/figcaption está encima, que tampoco bloquee */
.world-card figcaption {
  pointer-events: none;
}
/* Desktop fix: overlays bloqueando click en Mundo */
.world-item { position: relative; }

.world-card{
  position: relative;
  display: block;
  height: 100%;
  z-index: 5;
  cursor: pointer;
}

.world-card::before,
.world-card::after,
.world-item::before,
.world-item::after {
  pointer-events: none;
}

.world-card figcaption,
.world-card img {
  pointer-events: none;
}
/* EXPERIENCE – MICROTIPOGRAFÍA EDITORIAL */

.experience-text {
  margin-top: 4rem;
}

.experience-text-inner {
  max-width: 880px;              /* anchura editorial */
  margin: 0 auto;
}

.experience-text-inner h2 {
  font-size: 2.2rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.experience-text-inner p {
  font-size: 1.05rem;
  line-height: 1.75;             /* clave para lujo */
  letter-spacing: 0.01em;
  margin-bottom: 1.6rem;
  color: #2a2a2a;
}
/* ===============================
   HEADER GLOBAL (TOPBAR)
   =============================== */

.topbar{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:transparent;
}

.topbar-inner{
  max-width:1200px;
  margin:0 auto;
  padding:24px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.topbar .brand{
  text-decoration:none;
  letter-spacing:.12em;
  font-size:14px;
  color:#111;
}

.topbar .nav a{
  margin-left:28px;
  text-decoration:none;
  font-size:14px;
  color:#111;
}

.topbar .nav-cta{
  background:#111;
  color:#fff;
  padding:10px 18px;
  border-radius:20px;
}

/* Evita que el hero “se coma” el header */
.hero{
  padding-top:140px;
}
/* Hero de páginas interiores (Experiencia, etc.) */
.hero-experience,
.hero-experiencia,
.experience-hero,
.experiencia-hero{
  padding-top:140px;
}
/* Estado activo del menú */
.topbar .nav a.is-active{
  opacity: 0.7;
  text-decoration: underline;
  text-underline-offset: 6px;
}
/* Header: estado al hacer scroll */
.topbar{
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;z-index: 100000;

}

.topbar.is-scrolled{
  background: rgba(248,246,242,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(17,17,17,0.08);
}

/* En modo scrolled, asegura contraste del CTA */
.topbar.is-scrolled .nav-cta{
  background:#111;
  color:#fff;
}


.topbar:hover .topbar-hint,
.topbar-inner:hover .topbar-hint,
.topbar:focus-within .topbar-hint{
  opacity: 1 !important;
}
/* FIX stacking: bloque Experiencia (texto por delante de la imagen) */
.experience-hero,
.experience-grid,
.experience-item{
  position: relative;
  z-index: 1;
}

/* Texto/CTA dentro de la tarjeta de experiencia por delante */
.experience-hero__inner,
.experience-hero-inner,
.experience-card,
.experience-text,
.experience-cta,
.experience-kicker,
.experience-title,
.experience-lead{
  position: relative;
  z-index: 5;
}

/* Imágenes/overlays por detrás */
.experience-item img,
.experience-hero img{
  position: relative;
  z-index: 0;
}
/* FIX: eliminar pastilla negra "Más inspiración" en el header */
.topbar-hint{ 
  display: none !important; 
}
/* === CIERRE EDITORIAL ORGANIZACIÓN === */



.org-closing-signature {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 4.5rem;
  text-align: center;
  color: rgba(0,0,0,.55);
}


.org-closing-cta {
  display: block;
  text-align: center;
  margin-top: 3.5rem;
  margin: 0 auto 5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #2f2f2f;
}

.org-closing-cta::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #2f2f2f;
  margin: 12px auto 0;
}
.org-vineta{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 36px;
}


.org-vineta span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  font-size: .88rem;
  letter-spacing: .02em;
}

.org-vineta span::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:#2f2f2f;
  opacity:.65;
}
 .org-metodo{
  max-width: 980px;
  margin: 48px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.org-metodo-item h3{
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: .04em;
}

.org-metodo-item p{
  font-size: .92rem;
  line-height: 1.5;
  opacity: .85;
}

@media (max-width: 900px){
  .org-metodo{
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
 html{
  scroll-behavior: smooth;
}
/* Método editorial – aparición silenciosa */
.org-metodo-item{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s ease;
}

.org-metodo-item:target{
  opacity: 1;
  transform: translateY(0);
}
.org-vineta a{
  color: #1a1a1a;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .65;
  transition: opacity .4s ease;
}

.org-vineta a:hover{
  opacity: 1;
}
.org-metodo-item h3{
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.org-metodo-item p{
  font-size: 15px;
  line-height: 1.8;
  opacity: .85;
}
.org-metodo-item{
  scroll-margin-top: 120px;
}
/* =========================
   ORGANIZACIÓN · ACCORDION
   ========================= */

.org-accordion{
  max-width: 880px;
  margin: 72px auto 96px;
  padding: 0 24px;
}

.org-drop{
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 24px 0;
}

.org-drop summary{
  font-family: serif;
  font-size: 1.35rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.org-drop summary::-webkit-details-marker{
  display: none;
}

.org-drop__content{
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0,0,0,.75);
  max-width: 620px;
}
/* ============================
   ORGANIZACIÓN · FRASE FINAL
   ============================ */

.organization-epilogue{
  max-width: 880px;
  margin: 72px auto 40px;
  padding: 0 24px;
  text-align: center;
}

.organization-epilogue-text{
  font-size: 1.55rem;
  line-height: 1.55;
  font-style: italic;
  color: #1f1f1f;
  letter-spacing: 0.03em;
  margin-bottom: 56px;
}
.organization-epilogue-text::after{
  content: "—";
  display: block;
  margin: 24px auto 0;
  opacity: .35;
}

/* =========================
   PRINCIPIOS · tarjetas premium (coherente con Experiencia)
   ========================= */

.principios{
  padding: clamp(56px, 7vw, 96px) 0;
}

.principios__inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.principios__header{
  max-width: 760px;
  margin: 0 auto clamp(32px, 4vw, 48px);
  text-align: center;
}

.principios__title{
  margin: 0 0 10px;
  letter-spacing: .01em;
}

.principios__lead{
  margin: 0 auto;
  line-height: 1.65;
  opacity: .88;
  max-width: 52ch;
}

/* GRID igual de “tarjeta premium” que Experiencia */
.principios__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
  align-items: stretch;
}

/* Tarjeta (button) con apariencia de card */
.principio{
  all: unset;
  display: flex;
  flex-direction: column;
  justify-content: center;

  cursor: pointer;

  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 22px;

  padding: 26px 26px 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);

  min-height: 180px;
  box-sizing: border-box;

  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

/* Hover muy sutil, tipo editorial */
.principio:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  background: rgba(255,255,255,.78);
}

/* Focus accesible y limpio */
.principio:focus-visible{
  outline: 2px solid rgba(0,0,0,.14);
  outline-offset: 6px;
}

/* Título dentro de tarjeta */
.principio__title{
  margin: 0;
  letter-spacing: .01em;
  text-wrap: balance;
}

/* Subtítulo */
.principio__sub{
  display: block;
  margin-top: 8px;
  opacity: .75;
}

/* Texto: cerrado por defecto, se despliega al clicar */
.principio__text{
  margin: 14px 0 0;
  line-height: 1.7;
  opacity: .86;
  max-width: 32ch;

  display: none; /* cerrado */
}

/* Abierto */
.principio[aria-expanded="true"] .principio__text{
  display: block;
  animation: fadeIn .35s ease;
}

@keyframes fadeIn{
  from{ opacity: 0; }
  to{ opacity: .86; }
}

/* Tablet: 2x2 */
@media (max-width: 980px){
  .principios__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Móvil: 1 columna */
@media (max-width: 640px){
  .principios__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .principio{
    padding: 22px 20px;
    border-radius: 18px;
  }
}

/* OVERRIDE FINAL · PRINCIPIOS centrado + ritmo premium */
.principios__grid > .principio{
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}

/* OJO: aquí tenías un typo: "principio_text" -> "principio__text" */
.principios__grid .principio__text{
  margin-top: 16px;
}

/* =========================
   ORGANIZACIÓN · CIERRE EDITORIAL (micro-ajuste premium)
   ========================= */

.organizacion_manifesto,
.organizacion_epilogue{
  width: min(920px, 92vw);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Espaciado general del bloque */
.organizacion_manifesto{
  padding: clamp(28px, 3.8vw, 56px) 0;
}

/* Titular editorial */
.manifesto_main{
  margin: 0 0 18px;
  font-size: clamp(18px, 1.25vw, 20px);
  line-height: 1.7;
  letter-spacing: .005em;
}

/* Desarrollo (más silencioso) */
.manifesto_secondary{
  margin: 0 0 26px;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(15px, 1.05vw, 16px);
  line-height: 1.75;
  opacity: .78;
}

/* Firma (más delicada aún) */
.manifesto_signature{
  margin: 0;
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.8;
  opacity: .62;
}

/* Epílogo final (marca, tipo libro) */
.organizacion_epilogue{
  padding: clamp(34px, 4.5vw, 70px) 0 clamp(24px, 3vw, 48px);
}

.epilogue_text{
  margin: 0;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.45;
  font-style: italic;
  letter-spacing: .01em;
}

/* Móvil: respiración mejor */
@media (max-width: 640px){
  .manifesto_main{ line-height: 1.75; }
  .epilogue_text{ line-height: 1.35; }
}
/* =========================
   ORGANIZACIÓN · CIERRE EDITORIAL PREMIUM
   ========================= */

/* Contenedor general */
.organizacion-text,
.organizacion-epilogue{
  width: min(880px, 92vw);
  margin: 0 auto;
  text-align: center;
}

/* Primer golpe editorial */
.org-closing-lead{
  font-size: clamp(18px, 1.3vw, 20px);
  line-height: 1.7;
  margin: 0 0 12px;
}

/* Desarrollo silencioso */
.org-closing-text{
  font-size: clamp(15px, 1.05vw, 16px);
  line-height: 1.75;
  opacity: .82;
  margin: 0 0 28px;
}

/* Firma editorial */
.org-closing-signature{
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.8;
  opacity: .6;
  margin: 0 0 56px;
}

/* Epílogo final (frase de autor) */
.organization-epilogue-text{
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.4;
  font-style: italic;
  letter-spacing: .01em;
  max-width: 48ch;
  margin: 0 auto 42px;
}

/* CTA respirado */
.cta,
.conversemos,
.contact-cta{
  margin-top: 48px;
}
/* ===============================
   Pausa editorial SOLO móvil
   No afecta a PC ni Experiencia
================================ */

.services-editorial-mobile{
  display: none;
}

@media (max-width: 920px){
  .services-editorial-mobile{
    display: block;
    max-width: 520px;
    margin: 32px auto 0;
  }

  .services-editorial-mobile img{
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
  }
}
/* =========================================
   FIX PORTADA MÓVIL – CENTRADO HERO CARD
   No afecta a Servicios, Mundo ni Experiencia
========================================= */

@media (max-width: 920px){

  /* Seguridad: evitar desplazamientos laterales */
  html, body{
    width: 100%;
    overflow-x: hidden;
  }

  /* El hero ocupa todo el ancho */
  .hero{
    width: 100%;
    display: block;
  }

  /* Imagen de fondo correctamente contenida */
  .hero-image{
    width: 100%;
  }

  .hero-image img{
    width: 100%;
    height: auto;
    display: block;
  }

  /* TARJETA DE TEXTO: centrada y editorial */
  .hero-card{
    position: relative;          /* anulamos cualquier offset raro */
    left: auto;
    right: auto;

    width: 100%;
    max-width: 560px;             /* ancho editorial perfecto */
    margin: 24px auto 0 auto;     /* centrado real */

    padding: 28px 22px;
    box-sizing: border-box;
  }

}
/* FIX PORTADA MÓVIL – centrado hero */
@media (max-width: 920px) {

  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-card {
    margin: 0 auto;
    left: auto;
    right: auto;
    transform: none;
    max-width: 520px;
    width: calc(100% - 32px);
  }

}
/* =========================================
   FIX MÓVIL · Layout centrado (sin tocar PC)
   ========================================= */
@media (max-width: 920px){

  /* 1) Evitar “ancho de escritorio” y scroll lateral */
  html, body{
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* 2) Cualquier contenedor típico: que sea 100% y centrado */
  .container, .wrap, .inner, .section, .section-inner, .topbar-inner, main{
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }
  /* =====================================================
   COLUMNA EDITORIAL CENTRADA EN MÓVIL (EXPERIENCIA / MUNDO)
   No afecta a PC
===================================================== */

  section,
  .section-inner,
  .experience,
  .experience-section,
  .experience-inner,
  #mundo,
  #experiencia{
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }

  .experience,
  .experience-section,
  .experience-inner,
  #mundo,
  #experiencia{
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .experience h1,
  .experience h2,
  .experience h3{
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }


/* Columna editorial centrada en móvil (texto largo) */
@media (max-width: 920px){

  /* Mantén el aire lateral */
  section,
  .section-inner,
  .experience,
  .experience-section,
  .experience-inner{
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }

  /* NUEVO: columna más “editorial” y centrada */
  .experience,
  .experience-section,
  .experience-inner,
  #mundo,
  #experiencia{
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Si el título también lo notas “muy a borde”, lo alineamos con la columna */
  .experience h2,
  .experience h3,
  .experience h1{
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

}

  /* 3) Portada: centrar el bloque principal (la “tarjeta” del hero) */
  .hero, .hero-inner, .hero-grid, .hero-wrap, .hero-container{
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  /* Si tu portada usa grid/2 columnas, lo forzamos a 1 columna */
  .hero-grid, .hero-inner{
    display: block !important;
  }

  /* La tarjeta (donde está “Bodas que se sienten…”) */
  .hero-card, .hero-panel, .hero-content{
    width: 100% !important;
    max-width: 560px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  /* Si hay una “columna” de imagen a la izquierda/derecha, que no empuje el layout */
  .hero-media, .hero-image, .hero-photo{
    width: 100% !important;
    max-width: 560px !important;
    margin: 0 auto !important;
    display: block !important;
  }
  /* === HERO centrado en móvil (solo móvil) === */

  .hero{
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
  }

  .hero-image{
    width: 100% !important;
    justify-self: center !important;
  }

  .hero-image img{
    display: block !important;
    width: 100% !important;
    max-width: 720px !important;
    margin: 0 auto !important;
  }

  .hero-card{
    width: 100% !important;
    max-width: 520px !important;
    margin: 18px auto 0 !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

/* 4) Servicios: 1 columna editorial SOLO en móvil */
@media (max-width: 560px){

  .services-grid{
    grid-template-columns: 1fr !important;
    justify-items: center !important;
  }

  .services-grid > .service-card{
    width: 100% !important;
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* La “wide” en móvil se comporta como normal */
  .services-grid > .service-card.service-card-wide{
    grid-column: auto !important;
  }
}

  /* --- FIX HERO móvil: centrado real (sin tocar PC) --- */
.hero{
   }
  /* === MARGEN EDITORIAL TEXTO EN MÓVIL (Experiencia / Mundo) === */
@media (max-width: 920px){

  section,
  .section-inner,
  .experience,
  .experience-section,
  .experience-inner{
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }

}

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.hero-image,
.hero-card{
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  justify-self: center !important;
}

.hero-card{
  max-width: 560px !important;
}
/* =========================================================
   FIX DEFINITIVO MÓVIL VERTICAL – HERO + TEXTO
   No afecta a PC ni a móvil horizontal
   ========================================================= */

@media (max-width: 920px) and (orientation: portrait) {
  /* Seguridad total: nada se sale de pantalla */
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  /* Reset real de centrado: evita “columna desplazada” */
  * , *::before, *::after{
    box-sizing: border-box !important;
  }

  body{
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Header y contenedores principales SIEMPRE al 100% en móvil */
  header, .topbar, .topbar-inner, main, .wrap, .container, .inner, .section, .section-inner{
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Evita desplazamientos por transforms heredados */
  .topbar-inner, main, .wrap, .container, .inner{
    transform: none !important;
    left: auto !important;
    right: auto !important;
  }

  /* HERO: flujo natural en vertical (NO grid, NO offsets) */
  .hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }

  /* Imagen del hero */
  .hero-image,
  .hero-image img {
    width: 100% !important;
    max-width: 720px !important;
    margin: 0 auto !important;
    display: block !important;
  }

  /* Tarjeta de texto del hero */
  .hero-card {
    width: calc(100% - 40px) !important;
    max-width: 520px !important;
    margin: 24px auto 0 auto !important;
    padding: 28px 22px !important;
    box-sizing: border-box !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  /* =====================================
     EXPERIENCIA / MUNDO – columna editorial
     ===================================== */

  section,
  .section-inner,
  .experience,
  .experience-section,
  .experience-inner,
  #experiencia,
  #mundo {
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }

  .experience-inner,
  #experiencia,
  #mundo {
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .experience h1,
  .experience h2,
  .experience h3 {
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

}

/* =========================================
   EXPERIENCIA – margen lateral en móvil
   ========================================= */
#experiencia,
.experiencia,
.experience,
.experience-section,
.experience-inner,
.experience-content{
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
}

.hero-image img{
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* --- FIX Servicios móvil: evitar 3+1 --- */
.services-grid{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

.services-grid > .service-card{
  width: 100% !important;
  max-width: none !important;
}

.services-grid > .service-card.service-card-wide{
  grid-column: 1 / -1 !important;
  max-width: 560px !important;
  margin: 0 auto !important;
}

/* Móviles pequeños: 1 columna */
@media (max-width: 560px){
  .services-grid{
    grid-template-columns: 1fr !important;
  }
  .services-grid > .service-card.service-card-wide{
    grid-column: auto !important;
    max-width: none !important;
    margin: 0 !important;
  }
}

}
/* =========================================================
   FIX DESPLAZAMIENTO LATERAL (culpable típico: 100vw)
   SOLO MÓVIL VERTICAL
========================================================= */
@media (max-width: 920px) and (orientation: portrait){

  html, body{
    overflow-x: hidden !important;
  }

  /* Mata cualquier 100vw que esté empujando el layout */
  .hero,
  .hero-image,
  .hero-image img,
  .topbar,
  .topbar-inner,
  main,
  section,
  .section-inner{
    width: 100% !important;
    max-width: 100% !important;
  .hero-card {
    width: calc(100% - 32px) !important;
    max-width: 520px !important;
    margin: 18px auto 0 auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  /* Si algún bloque usa 100vw, lo neutralizamos */
  [style*="100vw"],
  [style*="100VW"]{
  /* Servicios: 1 columna centrada (evita “3 arriba + 1 raro”) */
  .services-inner {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Aire editorial + centrado real */
  .topbar-inner,
  main,
  section,
  .section-inner{
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    transform: none !important;
  }

  /* Hero: columna centrada */
  .hero{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  .services-grid {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
  }

  .hero-image{
    margin: 0 auto !important;
  .services-grid > .service-card {
    width: 100% !important;
    max-width: 520px !important;
  }

  .hero-card{
    width: calc(100% - 32px) !important;
  .services-grid > .service-card.service-card-wide {
    grid-column: auto !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 18px auto 0 !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin: 0 !important;
  }

  /* Mundo / Experiencia: columna editorial centrada */
  .world-inner,
  .experience-inner,
  .section-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }
}
/* =========================================================
   FIX DEFINITIVO MÓVIL VERTICAL – eliminar desbordes reales
   No afecta a PC ni a móvil horizontal
========================================================= */
@media (max-width: 920px) and (orientation: portrait){
   FIX MÓVIL (unificado) — centra layout y elimina cortes
   - No toca escritorio
   - Corrige: desplazamiento lateral + hero cortado + nav + servicios 3+1
   ========================================================= */

  html, body{
    width: 100% !important;
    overflow-x: hidden !important;
  }
@media (max-width: 920px) {

  /* El layout debe usar el ancho real del móvil */
  body > *{
    max-width: 100% !important;
    overflow-x: hidden !important;
  /* Base anti-desborde */
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* HERO */
  .hero{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  /* Todo dentro del ancho real del móvil */
  *, *::before, *::after {
    box-sizing: border-box;
    max-width: 100%;
  }

  /* IMAGEN DEL HERO — CLAVE */
  .hero-image,
  .hero-image img{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    height: auto !important;
  /* Contenedores principales centrados */
  .topbar-inner,
  main,
  section,
  .section-inner,
  .wrap,
  .inner,
  .container {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* TARJETA DE TEXTO */
  .hero-card{
    width: calc(100% - 32px) !important;
    max-width: 520px !important;
    margin: 20px auto 0 !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  /* NAV: que no desaparezcan Blog/Contacto */
  .topbar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
  }

}
/* =========================================
   FIX 1 — HERO móvil: evitar tarjeta cortada
   (solo móvil vertical)
========================================= */
@media (max-width: 920px) and (orientation: portrait){

  /* Asegura que el hero puede crecer y no recorta */
  .hero,
  .hero-inner,
  .hero-wrap,
  .hero-container{
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    width: 100%;
  }

  /* La tarjeta nunca debe quedar recortada */
  .hero-card{
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: 28px !important;
  .nav a {
    white-space: nowrap;
    font-size: 14px;
  }
}
/* =========================================
   FIX 2 — NAV móvil: que se vean Blog + Contacto
========================================= */
@media (max-width: 920px){

  .topbar-inner{
    flex-wrap: wrap !important;
    gap: 10px 14px !important;
    align-items: center !important;
  .nav-cta {
    margin-left: 0; /* evita empujes raros */
  }

  .nav{
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px 14px !important;
    justify-content: flex-start !important;
    width: 100% !important;
  /* HERO: apilar y centrar sin recortes */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .nav a{
    font-size: 14px !important;
    white-space: nowrap !important;
  .hero-image,
  .hero-image img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* El CTA no debe “empujar” fuera a los demás */
  .nav-cta{
    margin-left: 0 !important;
  }
}
/* =========================================================
   FIX MÓVIL HORIZONTAL – HERO sin recortes
   No afecta a PC
========================================================= */
@media (max-width: 920px) and (orientation: landscape){

  .hero,
  .hero-inner,
  .hero-wrap,
  .hero-container,
  .hero-image{
  .hero-card {
    width: calc(100% - 32px);
    max-width: 520px;
    margin: 18px auto 0 auto;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  /* La imagen nunca debe forzar alto fijo */
  .hero-image img{
    height: auto !important;
    max-height: none !important;
    object-fit: cover;
  /* SERVICIOS: evitar “3 arriba + 1 raro” */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: stretch;
  }

  /* La tarjeta no puede recortarse */
  .hero-card{
    overflow: visible !important;
  /* La 4ª (wide) ocupa 2 columnas y queda centrada */
  .services-grid > .service-card {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}
/* =========================================================
   FIX ORGANIZACIÓN – centrado editorial en móvil
   No afecta a PC ni a horizontal
========================================================= */
@media (max-width: 920px){

  /* Contenedor general de Organización */
  #organizacion,
  .organizacion,
  .organizacion-section,
  .services,
  .services-grid{
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  .services-grid > .service-card.service-card-wide {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
  }
}

  /* Cada tarjeta */
  .service-card,
  .method-card,
  .organizacion-card{
    width: 100% !important;
    max-width: 560px !important;
    margin: 24px auto !important;
    box-sizing: border-box !important;
/* Móviles pequeños: 1 columna */
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Aire lateral editorial */
  .service-card,
  .method-card,
  .organizacion-card{
    padding-left: 20px !important;
    padding-right: 20px !important;
  .services-grid > .service-card.service-card-wide {
    grid-column: auto;
    max-width: none;
  }
}

/* =========================================================
   OVERRIDE ÚNICO · SERVICIOS (lujo)
   PC: 3 arriba + 1 abajo a todo ancho
   ========================================================= */

/* Base */
.services-grid{
  display: grid !important;
  gap: 18px !important;
  align-items: stretch !important;
}

.services-grid > .service-card{
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
}

/* PC */
@media (min-width: 981px){
  .services-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  /* Si existe clase wide */
  .services-grid > .service-card-wide{
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin-top: 24px !important;
  }

  /* Plan B si NO tocas HTML: la 4ª tarjeta ocupa todo */
.services-grid > .service-card:last-child{
  grid-column: 1 / -1 !important;
  width: 100% !important;
  justify-self: stretch !important;
  margin-top: 24px !important;
}

}

/* Tablet */
@media (max-width: 980px){
  .services-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .services-grid > .service-card-wide,
 .services-grid > .service-card:last-child{
  grid-column: 1 / -1 !important;
  margin-top: 18px !important;
}

}

/* Móvil */
@media (max-width: 560px){
  .services-grid{
    grid-template-columns: 1fr !important;
  }

  .services-grid > .service-card-wide,
  .services-grid > .service-card:nth-child(4){
    grid-column: auto !important;
    margin-top: 0 !important;
  }
}
/* =========================================================
   SERVICIOS · DESKTOP FINAL (3 arriba + 1 abajo ancho)
   ========================================================= */

@media (min-width: 981px){

  .services-grid{
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch !important;
  }

  .services-grid > .service-card{
    width: 100% !important;
    max-width: none !important;
    justify-self: stretch !important;
  }

  /* TARJETA COMPLEMENTARIA A TODO ANCHO */
  .services-grid > .service-card.service-card-wide{
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: none !important;
    margin-top: 24px !important;
    justify-self: stretch !important;
  }
}
/* =========================================================
   SERVICIOS · DESKTOP OVERRIDE (anti-centrado definitivo)
   Pegar AL FINAL del styles.css
   ========================================================= */
@media (min-width: 981px){

  /* El grid debe estirar, no centrar */
  .services-grid{
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch !important;
    justify-items: stretch !important;
  }

  /* Ninguna tarjeta en PC debe tener max-width ni márgenes auto */
  .services-grid > .service-card{
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    justify-self: stretch !important;
  }

  /* La “wide” ocupa toda la fila */
  .services-grid > .service-card.service-card-wide{
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 24px 0 0 !important;
    justify-self: stretch !important;
  }
/* =========================================
   LINO EDITORIAL PREMIUM · FONDO GLOBAL
   (solo imagen, sin tocar layout)
   ========================================= */

body{
  background-color: #fbfaf7; /* fallback elegante */
background-image: url("/assets/images/_assets_linen_premium.jpg");
  background-repeat: repeat;
  background-size: 600px 600px; /* grano fino, lujo */
  background-attachment: fixed; /* calma editorial */
}

