/* ══════════════════════════════════════════
   Laura Carboneres — main.css
   Diseño: Donostia Editorial
   ══════════════════════════════════════════ */

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ─── Tokens ─── */
:root {
  --cream:        #F4F0E8;
  --cream-dark:   #EDE7DA;
  --navy:         #1B2B58;
  --navy-80:      rgba(27,43,88,.80);
  --navy-10:      rgba(27,43,88,.08);
  --blue:         #2878B0;
  --blue-light:   #4A9DD4;
  --blue-10:      rgba(40,120,176,.10);
  --sand:         #C4A882;
  --sand-pale:    #EAD9C0;
  --mist:         #8895AF;
  --white:        #FFFFFF;
  --text:         #1B2B58;
  --text-muted:   #7A849C;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Raleway', 'Helvetica Neue', sans-serif;
  --max:        1200px;
  --pad:        clamp(24px, 5vw, 64px);
}

/* ─── Base ─── */
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* Paper grain */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

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

/* ─── Scroll reveal ─── */
.r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1),
              transform .9s cubic-bezier(.16,1,.3,1);
}
.r.in  { opacity: 1; transform: none; }
.r.d1  { transition-delay: .10s; }
.r.d2  { transition-delay: .22s; }
.r.d3  { transition-delay: .34s; }
.r.d4  { transition-delay: .46s; }
.r.d5  { transition-delay: .58s; }
@media (prefers-reduced-motion: reduce) {
  .r { opacity: 1; transform: none; transition: none; }
}

/* ─── Helpers ─── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

.lc-label {
  font-family: var(--ff-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.lc-label::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--blue);
  flex-shrink: 0;
}

.lc-text-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--navy);
  text-decoration: none; padding-bottom: 2px;
  border-bottom: 1px solid rgba(27,43,88,.15);
  transition: color .2s, border-color .2s;
}
.lc-text-link:hover { color: var(--blue); border-color: var(--blue); }
.lc-text-link svg { transition: transform .25s ease; }
.lc-text-link:hover svg { transform: translateX(5px); }

/* Wave SVG */
.lc-wave-path {
  stroke-dasharray: 600; stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.2s cubic-bezier(.16,1,.3,1);
}
.lc-wave-path.drawn { stroke-dashoffset: 0; }

/* ════════════════════════════
   NAVIGATION
   ════════════════════════════ */
#lc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 20px 0;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}

/* Home: fondo semi-transparente siempre para que logo y menú se lean
   sobre el hero dividido (crema izq. + foto dcha.) */
body.home #lc-nav:not(.scrolled) {
  background: rgba(244,240,232,.70);
  backdrop-filter: blur(8px) saturate(130%);
  -webkit-backdrop-filter: blur(8px) saturate(130%);
}

/* Páginas con hero oscuro (navy): texto blanco + logo invertido
   La clase lc-dark-hero se añade via functions.php body_class filter */
body.lc-dark-hero #lc-nav:not(.scrolled) {
  background: transparent;
}
body.lc-dark-hero #lc-nav:not(.scrolled) .lc-nav-menu a {
  color: rgba(255,255,255,.80);
}
body.lc-dark-hero #lc-nav:not(.scrolled) .lc-nav-menu a:hover {
  color: var(--white);
}
body.lc-dark-hero #lc-nav:not(.scrolled) .lc-nav-menu a::after {
  background: rgba(255,255,255,.60);
}
/* Último ítem (Contacto = botón) en nav oscuro — solo menú raíz */
body.lc-dark-hero #lc-nav:not(.scrolled) .lc-nav-menu > li:last-child > a {
  background: rgba(255,255,255,.15) !important;
  color: var(--white) !important;
}
body.lc-dark-hero #lc-nav:not(.scrolled) .lc-nav-menu > li:last-child > a:hover {
  background: rgba(255,255,255,.28) !important;
}
/* Logo invertido en hero oscuro */
body.lc-dark-hero #lc-nav:not(.scrolled) .custom-logo {
  filter: brightness(0) invert(1);
  opacity: .90;
}
body.lc-dark-hero #lc-nav:not(.scrolled) .site-title {
  color: rgba(255,255,255,.90);
}
/* Hamburger en hero oscuro */
body.lc-dark-hero #lc-nav:not(.scrolled) .lc-hamburger span {
  background: rgba(255,255,255,.85);
}
/* Flecha dropdown en hero oscuro */
body.lc-dark-hero #lc-nav:not(.scrolled) .menu-item-has-children > a svg path {
  stroke: rgba(255,255,255,.70);
}
/* Sub-menu en hero oscuro: fondo semi-oscuro */
body.lc-dark-hero #lc-nav:not(.scrolled) .sub-menu {
  background: rgba(27,43,88,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}
body.lc-dark-hero #lc-nav:not(.scrolled) .sub-menu a {
  color: rgba(255,255,255,.70);
}
body.lc-dark-hero #lc-nav:not(.scrolled) .sub-menu a:hover {
  color: var(--white);
}

/* Estado scrolled: igual para todas las páginas (fondo crema) */
#lc-nav.scrolled {
  background: rgba(244,240,232,.94);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 1px 0 rgba(27,43,88,.08);
  padding: 13px 0;
}
.lc-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
}

/* Logo */
.lc-nav-logo { line-height: 0; text-decoration: none; }
.lc-nav-logo img,
.lc-nav-logo .custom-logo { height: 44px; width: auto; display: block; }
/* Site title fallback if no logo set */
.lc-nav-logo .site-title {
  font-family: var(--ff-display); font-style: italic;
  font-size: 1.5rem; font-weight: 400; color: var(--navy);
  text-decoration: none; white-space: nowrap;
}

/* Nav right group */
.lc-nav-right { display: flex; align-items: center; gap: 24px; }

/* ─── Hamburger ─── */
.lc-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; padding: 8px;
  background: none; border: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.lc-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--navy); border-radius: 2px;
  transform-origin: center;
  transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .3s ease, width .3s ease;
}
.lc-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.lc-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.lc-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Mobile menu overlay ─── */
.lc-mobile-menu {
  position: fixed; inset: 0; z-index: 490;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s cubic-bezier(.16,1,.3,1);
}
.lc-mobile-menu.open {
  opacity: 1; pointer-events: all;
}
.lc-mobile-menu-inner { text-align: center; }
.lc-mobile-nav-list { list-style: none; }
.lc-mobile-nav-list li { overflow: hidden; }
.lc-mobile-nav-list a {
  display: block; padding: 16px 24px;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 300; color: var(--navy);
  text-decoration: none; letter-spacing: .01em; line-height: 1.2;
  transition: color .2s ease;
}
.lc-mobile-nav-list a:hover { color: var(--blue); font-style: italic; }

/* Nav menu */
.lc-nav-menu { list-style: none; display: flex; align-items: center; gap: 30px; }
.lc-nav-menu a {
  font-size: 12px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--navy);
  text-decoration: none; position: relative; padding-bottom: 2px;
}
.lc-nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--blue);
  transition: width .3s ease;
}
.lc-nav-menu a:hover::after,
.lc-nav-menu .current-menu-item > a::after { width: 100%; }

/* Dropdown */
.lc-nav-menu .menu-item-has-children { position: relative; }
.lc-nav-menu .menu-item-has-children > a {
  display: inline-flex; align-items: center; gap: 6px;
}
.lc-nav-menu .menu-item-has-children > a svg {
  opacity: .55; flex-shrink: 0;
  transition: transform .25s ease, opacity .25s ease;
}
.lc-nav-menu .menu-item-has-children:hover > a svg,
.lc-nav-menu .menu-item-has-children:focus-within > a svg {
  transform: rotate(180deg); opacity: 1;
}
.lc-nav-menu .sub-menu {
  position: absolute; top: 100%; left: -22px;
  min-width: 270px; list-style: none;
  padding: 26px 0 8px; /* padding-top cubre el gap visual sin dead zone */
  background: var(--cream);
  box-shadow: 0 16px 48px rgba(27,43,88,.12), 0 0 0 1px rgba(27,43,88,.06);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(6px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.lc-nav-menu .menu-item-has-children:hover .sub-menu,
.lc-nav-menu .menu-item-has-children:focus-within .sub-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateY(0);
}
.lc-nav-menu .sub-menu li { display: block; }
.lc-nav-menu .sub-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  font-size: 12px; font-weight: 400; letter-spacing: .06em;
  text-transform: none; color: var(--navy); text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}
.lc-nav-menu .sub-menu a::before {
  content: ''; display: block; width: 3px; height: 3px;
  border-radius: 50%; background: var(--blue); flex-shrink: 0;
  opacity: 0; transition: opacity .2s ease;
}
.lc-nav-menu .sub-menu a:hover { color: var(--blue); padding-left: 28px; }
.lc-nav-menu .sub-menu a:hover::before { opacity: 1; }
.lc-nav-menu .sub-menu a::after { display: none !important; }

/* CTA nav item — solo el último item del menú RAÍZ (no afecta al submenú) */
.lc-nav-menu .menu-item-cta > a,
.lc-nav-menu > li:last-child > a {
  color: var(--white) !important; background: var(--navy);
  padding: 9px 20px !important; border-radius: 1px;
  transition: background .25s ease;
}
.lc-nav-menu .menu-item-cta > a::after,
.lc-nav-menu > li:last-child > a::after { display: none !important; }
.lc-nav-menu .menu-item-cta > a:hover,
.lc-nav-menu > li:last-child > a:hover { background: var(--blue) !important; }

/* ════════════════════════════
   HERO
   ════════════════════════════ */
#lc-hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 52% 48%;
}
.lc-hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px clamp(24px,4vw,60px) 80px clamp(24px,6vw,80px);
}
.lc-hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--blue);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  opacity: 0; animation: lcFadeUp .9s cubic-bezier(.16,1,.3,1) .2s forwards;
}
.lc-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--blue); }

.lc-hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 300; line-height: 1.08; color: var(--navy);
  opacity: 0; animation: lcFadeUp .9s cubic-bezier(.16,1,.3,1) .35s forwards;
}
.lc-hero-h1 em  { font-style: italic; color: var(--blue); }
.lc-hero-h1 strong { font-weight: 600; display: block; font-size: 105%; }

.lc-hero-wave {
  margin: 26px 0;
  opacity: 0; animation: lcFadeIn .6s ease .7s forwards;
}

.lc-hero-sub {
  font-size: clamp(15px, 1.6vw, 17px); font-weight: 300;
  color: var(--mist); max-width: 460px; line-height: 1.85;
  margin-bottom: 48px;
  opacity: 0; animation: lcFadeUp .9s cubic-bezier(.16,1,.3,1) .65s forwards;
}
.lc-hero-sub strong { color: var(--navy); font-weight: 400; }

.lc-hero-btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ff-body); font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-decoration: none;
  color: var(--white); background: var(--navy);
  padding: 17px 32px; position: relative; overflow: hidden;
  isolation: isolate; /* crea contexto de apilamiento propio */
  opacity: 0; animation: lcFadeUp .9s cubic-bezier(.16,1,.3,1) .8s forwards;
  transition: transform .2s ease;
}
.lc-hero-btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--blue); transform: translateX(-101%);
  transition: transform .38s cubic-bezier(.16,1,.3,1);
}
.lc-hero-btn:hover::before { transform: translateX(0); }
.lc-hero-btn:hover { transform: translateY(-2px); color: var(--white); }
.lc-hero-btn > * { position: relative; z-index: 1; }

.lc-hero-right { position: relative; overflow: hidden; }
.lc-hero-photo {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 20%;
}
.lc-hero-right::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to right, var(--cream) 0%, rgba(244,240,232,.15) 30%, transparent 60%);
  pointer-events: none;
}
.lc-hero-right::after {
  content: ''; position: absolute;
  bottom: 48px; right: 48px; top: 48px; width: 2px;
  background: rgba(27,43,88,.10); pointer-events: none; z-index: 3;
}

/* ════════════════════════════
   TICKER
   ════════════════════════════ */
.lc-ticker {
  background: var(--navy); padding: 14px 0; overflow: hidden;
}
.lc-ticker-track {
  display: flex; white-space: nowrap;
  animation: lcTicker 22s linear infinite; will-change: transform;
}
@media (prefers-reduced-motion: reduce) { .lc-ticker-track { animation: none; } }
.lc-ticker-item {
  font-family: var(--ff-display); font-style: italic;
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,.60); padding: 0 48px; flex-shrink: 0;
}
.lc-ticker-item span { color: var(--blue-light); font-style: normal; margin: 0 8px; }

/* ════════════════════════════
   INTRO
   ════════════════════════════ */
#lc-intro { padding: clamp(80px,10vw,140px) 0; }
.lc-intro-grid {
  display: grid; grid-template-columns: 260px 1fr;
  gap: clamp(40px,6vw,100px); align-items: start;
}
.lc-intro-sticky {
  position: sticky; top: 120px;
}
.lc-intro-sticky h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 300; line-height: 1.2; color: var(--navy); margin-bottom: 28px;
}
.lc-intro-sticky h2 strong { font-weight: 600; display: block; }
.lc-intro-sticky h2 em { font-style: italic; color: var(--blue); }
.lc-intro-sticky svg { display: block; overflow: visible; }

.lc-intro-body p {
  font-size: clamp(15px,1.7vw,17px); font-weight: 300;
  color: var(--text); line-height: 1.9; margin-bottom: 24px;
}
.lc-intro-body p:first-of-type::first-letter,
.lc-intro-body p.has-drop-cap::first-letter {
  font-family: var(--ff-display); font-weight: 400;
  font-size: 5.4rem; line-height: .82;
  float: left; margin-right: 6px; margin-top: 6px; color: var(--navy);
}

/* ════════════════════════════
   SERVICIOS
   ════════════════════════════ */
#lc-servicios {
  padding: clamp(80px,10vw,140px) 0;
  background: var(--navy); position: relative; overflow: hidden;
}
#lc-servicios::before {
  content: ''; position: absolute;
  bottom: -200px; right: -150px; width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(40,120,176,.12) 0%, transparent 70%);
  pointer-events: none;
}
.lc-sec-hdr { margin-bottom: clamp(48px,7vw,96px); }
.lc-sec-hdr .lc-label { color: var(--sand); margin-bottom: 16px; }
.lc-sec-hdr .lc-label::before { background: var(--sand); }
.lc-sec-hdr h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 300; color: var(--white); line-height: 1.15;
}
.lc-sec-hdr h2 em { font-style: italic; color: var(--blue-light); }

.lc-srv-list { list-style: none; }
.lc-srv-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  align-items: start; gap: 32px;
  padding: clamp(28px,3.5vw,48px) 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative; overflow: hidden;
  transition: background .35s ease;
}
.lc-srv-item:last-child { border-bottom: none; }
.lc-srv-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--blue-light); transform: scaleX(0);
  transform-origin: left; transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.lc-srv-item:hover::before { transform: scaleX(1); }
.lc-srv-item:hover { background: rgba(255,255,255,.02); }

.lc-srv-num {
  font-family: var(--ff-display); font-size: clamp(2.8rem,4vw,4rem);
  font-weight: 300; line-height: 1; color: rgba(255,255,255,.10);
  user-select: none; transition: color .35s ease;
}
.lc-srv-item:hover .lc-srv-num { color: rgba(74,157,212,.25); }

.lc-srv-body h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem,2.2vw,1.9rem);
  font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 12px;
}
.lc-srv-body p {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,.50); line-height: 1.8; max-width: 560px;
}

.lc-srv-link {
  align-self: center; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .10em;
  text-transform: uppercase; color: var(--blue-light);
  text-decoration: none; white-space: nowrap; transition: color .2s;
}
.lc-srv-link:hover { color: var(--white); }
.lc-srv-link svg { transition: transform .25s ease; }
.lc-srv-link:hover svg { transform: translateX(5px); }

/* ════════════════════════════
   PROCESO
   ════════════════════════════ */
#lc-proceso {
  padding: clamp(80px,10vw,140px) 0;
  background: linear-gradient(160deg, var(--cream) 55%, var(--cream-dark) 100%);
}
.lc-proceso-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,6vw,100px); align-items: center;
}
.lc-proceso-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 300; color: var(--navy); line-height: 1.15; margin-bottom: 20px;
}
.lc-proceso-left > p {
  font-size: 15px; color: var(--mist);
  line-height: 1.85; max-width: 400px; margin-bottom: 44px;
}

.lc-steps { list-style: none; }
.lc-step {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid var(--navy-10);
  transition: padding-left .3s ease;
}
.lc-step:last-child { border-bottom: none; }
.lc-step:hover { padding-left: 6px; }
.lc-step-n {
  font-family: var(--ff-display); font-size: 2rem;
  font-weight: 300; color: var(--blue); opacity: .35;
  line-height: 1; min-width: 38px; padding-top: 2px;
}
.lc-step-txt { font-size: 15px; font-weight: 400; color: var(--navy); line-height: 1.5; }

.lc-proceso-coda {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--navy-10);
  font-family: var(--ff-display); font-style: italic;
  font-size: 1.25rem; color: var(--navy); line-height: 1.5;
}

.lc-proceso-photo { position: relative; }
.lc-proceso-photo img {
  width: 100%; height: 560px; object-fit: cover;
  object-position: center 20%;
}
.lc-proceso-photo::before {
  content: ''; position: absolute;
  top: -18px; right: -18px; bottom: 18px; left: 18px;
  border: 1.5px solid rgba(27,43,88,.10);
  pointer-events: none; z-index: -1;
}
.lc-proceso-photo::after {
  content: ''; position: absolute;
  bottom: -14px; left: -14px;
  width: 70px; height: 70px;
  background: var(--sand); opacity: .20; pointer-events: none;
}

/* ════════════════════════════
   AUDIENCIA
   ════════════════════════════ */
#lc-audiencia {
  padding: clamp(80px,10vw,140px) 0;
  background: var(--sand-pale);
}
.lc-aud-grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(48px,6vw,80px); align-items: center;
}
.lc-aud-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem,3.2vw,2.8rem);
  font-weight: 300; color: var(--navy); margin-bottom: 24px; line-height: 1.15;
}
.lc-aud-left > p {
  font-size: clamp(15px,1.6vw,17px); color: var(--text);
  line-height: 1.88; margin-bottom: 36px;
}
.lc-aud-tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px;
}
.lc-aud-tag {
  font-size: 13px; font-weight: 400; letter-spacing: .02em;
  color: var(--navy); background: var(--white);
  border: 1px solid rgba(27,43,88,.12);
  padding: 8px 18px;
  transition: background .2s, color .2s, border-color .2s;
  cursor: default;
}
.lc-aud-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.lc-aud-quote {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(1.5rem,2.6vw,2.1rem); font-weight: 300;
  color: var(--navy); line-height: 1.45;
  padding: 44px 44px 44px 52px;
  background: var(--white); position: relative;
}
.lc-aud-quote::before {
  content: '\201C'; position: absolute; top: 0; left: 28px;
  font-size: 7rem; line-height: 1; color: var(--blue); opacity: .12;
  font-family: var(--ff-display);
}
.lc-aud-quote cite {
  display: block; margin-top: 20px;
  font-style: normal; font-family: var(--ff-body);
  font-size: 12px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mist);
}

/* ════════════════════════════
   CTA FINAL
   ════════════════════════════ */
#lc-cta {
  padding: clamp(100px,14vw,180px) 0;
  background: var(--navy); position: relative; overflow: hidden;
  text-align: center;
}
#lc-cta::before {
  content: 'LC'; font-family: var(--ff-display); font-style: italic;
  font-size: 42vw; font-weight: 300; line-height: .8;
  color: rgba(255,255,255,.025);
  position: absolute; bottom: -10vw; right: -4vw;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.lc-cta-inner { position: relative; z-index: 1; }
.lc-cta-inner .lc-label { color: var(--sand); justify-content: center; }
.lc-cta-inner .lc-label::before { background: var(--sand); }
.lc-cta-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem,6vw,5.4rem);
  font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 16px;
}
.lc-cta-inner h2 em { font-style: italic; color: var(--blue-light); }
.lc-cta-inner h2 strong { font-weight: 600; display: block; }
.lc-cta-inner > p {
  font-size: 15px; color: rgba(255,255,255,.45);
  max-width: 460px; margin: 0 auto 56px; line-height: 1.8;
}
.lc-cta-btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ff-body); font-size: 13px; font-weight: 600;
  letter-spacing: .10em; text-transform: uppercase;
  color: var(--navy); background: var(--cream);
  padding: 20px 44px; text-decoration: none;
  position: relative; overflow: hidden;
  transition: transform .2s ease, color .35s ease;
}
.lc-cta-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--blue-light); transform: translateX(-101%);
  transition: transform .38s cubic-bezier(.16,1,.3,1);
}
.lc-cta-btn:hover::before { transform: translateX(0); }
.lc-cta-btn:hover { transform: translateY(-2px); color: var(--white); }
.lc-cta-btn > * { position: relative; z-index: 1; }

/* ════════════════════════════
   FOOTER
   ════════════════════════════ */
#lc-footer { background: var(--navy); }

/* Top: grid 4 columnas */
.lc-footer-top {
  padding: clamp(60px,8vw,100px) 0 clamp(48px,6vw,72px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.lc-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.8fr 1fr;
  gap: clamp(36px,4vw,64px);
  align-items: start;
}

/* Columna 1: Marca */
.lc-footer-logo-link { display: inline-block; line-height: 0; }
.lc-footer-logo-img {
  height: 32px; width: auto;
  filter: brightness(0) invert(1); opacity: .55;
  transition: opacity .2s;
}
.lc-footer-logo-link:hover .lc-footer-logo-img { opacity: .85; }
.lc-footer-logo-text {
  font-family: var(--ff-display); font-style: italic;
  font-size: 1.25rem; font-weight: 300;
  color: rgba(255,255,255,.55); text-decoration: none;
  transition: color .2s;
}
.lc-footer-logo-text:hover { color: rgba(255,255,255,.85); }

.lc-footer-tagline {
  margin-top: 20px;
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.35); line-height: 1.75;
  max-width: 240px;
}

/* Social */
.lc-footer-social {
  display: flex; gap: 20px; margin-top: 28px;
}
.lc-footer-social-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(255,255,255,.35);
  transition: color .2s ease;
}
.lc-footer-social-link:hover { color: var(--blue-light); }
.lc-footer-social-link svg { flex-shrink: 0; }

/* Columnas 2-4 */
.lc-footer-col-title {
  font-family: var(--ff-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.30);
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.lc-footer-links { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.lc-footer-links li a {
  display: block; padding: 7px 0;
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.48); text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}
.lc-footer-links li a:hover { color: rgba(255,255,255,.90); padding-left: 6px; }

/* Lista de contacto */
.lc-footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.lc-footer-contact-label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-bottom: 4px;
}
.lc-footer-contact-value {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.55); text-decoration: none;
  transition: color .2s;
}
a.lc-footer-contact-value:hover { color: var(--blue-light); }

.lc-footer-cta-wrap { margin-top: 8px; }
.lc-footer-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; text-decoration: none;
  color: var(--white);
  padding: 11px 20px;
  border: 1px solid rgba(255,255,255,.18);
  transition: background .25s ease, border-color .25s ease;
}
.lc-footer-cta:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
}

/* Bottom bar */
.lc-footer-bottom {
  padding: 22px 0;
}
.lc-footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.lc-footer-copy {
  font-size: 11px; color: rgba(255,255,255,.22);
  letter-spacing: .04em;
}
.lc-footer-legal {
  display: flex; align-items: center; gap: 12px;
}
.lc-footer-legal a {
  font-size: 11px; color: rgba(255,255,255,.22);
  text-decoration: none; letter-spacing: .04em;
  transition: color .2s;
}
.lc-footer-legal a:hover { color: rgba(255,255,255,.55); }
.lc-footer-legal span { color: rgba(255,255,255,.15); font-size: 10px; }

/* Responsive footer */
@media (max-width: 960px) {
  .lc-footer-grid { grid-template-columns: 1fr 1fr; }
  .lc-footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .lc-footer-grid { grid-template-columns: 1fr; }
  .lc-footer-brand { grid-column: span 1; }
  .lc-footer-tagline { max-width: none; }
  .lc-footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════
   BLOG / ARCHIVE
   ════════════════════════════ */

/* ── Hero editorial (home.php) ── */
.lc-blog-hero {
  padding: 160px clamp(24px,7vw,100px) clamp(60px,8vw,100px);
  background: var(--navy);
}
.lc-blog-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,100px);
  align-items: end;
  max-width: 1400px;
}
.lc-blog-hero-text .lc-label { color: var(--sand); margin-bottom: 20px; }
.lc-blog-hero-text .lc-label::before { background: var(--sand); }
.lc-blog-hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem,5.5vw,5rem);
  font-weight: 300; color: var(--white); line-height: 1.05;
  margin: 0;
}
.lc-blog-hero-h1 em { font-style: italic; color: var(--sand); }

.lc-blog-hero-intro p {
  font-size: clamp(15px,1.6vw,17px); color: rgba(255,255,255,.55);
  line-height: 1.85; margin: 0 0 16px;
}
.lc-blog-hero-intro p:last-child { margin-bottom: 0; }
.lc-blog-hero-lead {
  font-size: clamp(16px,1.8vw,19px) !important;
  color: rgba(255,255,255,.80) !important;
  font-family: var(--ff-display); font-style: italic;
}

/* ── Posts section ── */
.lc-blog-posts { background: var(--cream); }
.lc-blog-empty {
  padding: clamp(60px,8vw,100px) 0;
  color: var(--mist); font-size: 15px; text-align: center;
}

/* ── Archive header (category / tag pages) ── */
.lc-blog-header {
  padding: 140px 0 60px;
  background: var(--cream);
  border-bottom: 1px solid var(--navy-10);
}
.lc-blog-header h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem,5vw,4rem);
  font-weight: 300; color: var(--navy);
}
.lc-blog-header p {
  font-size: 15px; color: var(--mist);
  max-width: 520px; margin-top: 12px; line-height: 1.8;
}

/* Responsive blog hero */
@media (max-width: 1024px) {
  .lc-blog-hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

.lc-posts-grid {
  padding: clamp(60px,8vw,100px) 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
  gap: 40px;
}
.lc-post-card { display: flex; flex-direction: column; }
.lc-post-card-thumb {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
  margin-bottom: 24px;
}
.lc-post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.lc-post-card:hover .lc-post-card-thumb img { transform: scale(1.03); }
.lc-post-card-thumb .lc-no-thumb {
  background: linear-gradient(135deg, rgba(27,43,88,.06) 0%, rgba(40,120,176,.08) 100%);
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--mist); font-family: var(--ff-display); font-style: italic; font-size: 1.2rem;
}
.lc-post-card-meta {
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.lc-post-card h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem,2vw,1.7rem);
  font-weight: 400; color: var(--navy); line-height: 1.2; margin-bottom: 12px;
}
.lc-post-card h2 a { text-decoration: none; transition: color .2s; }
.lc-post-card h2 a:hover { color: var(--blue); }
.lc-post-card .excerpt {
  font-size: 14px; color: var(--mist); line-height: 1.75;
  margin-bottom: 20px; flex: 1;
}
.lc-read-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .10em;
  text-transform: uppercase; color: var(--navy); text-decoration: none;
  border-bottom: 1px solid rgba(27,43,88,.15); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
  align-self: flex-start;
}
.lc-read-more:hover { color: var(--blue); border-color: var(--blue); }
.lc-read-more svg { transition: transform .25s ease; }
.lc-read-more:hover svg { transform: translateX(4px); }

/* ════════════════════════════
   SINGLE POST
   ════════════════════════════ */
.lc-single-header {
  padding: 140px 0 60px; border-bottom: 1px solid var(--navy-10);
}
.lc-single-header .lc-label { margin-bottom: 24px; }
.lc-single-header h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem,5vw,4rem);
  font-weight: 300; color: var(--navy); line-height: 1.1; max-width: 840px;
}
.lc-single-header .lc-post-meta {
  margin-top: 20px; font-size: 12px;
  color: var(--mist); letter-spacing: .08em;
}
.lc-single-feat { width: 100%; max-height: 520px; object-fit: cover; margin: 60px 0 0; }
.lc-single-content {
  padding: clamp(48px,6vw,80px) 0 clamp(80px,10vw,120px);
  max-width: 720px;
}
.lc-single-content p {
  font-size: clamp(15px,1.6vw,17px); line-height: 1.9;
  margin-bottom: 24px; color: var(--text);
}
.lc-single-content h2,
.lc-single-content h3 {
  font-family: var(--ff-display); font-weight: 400; color: var(--navy);
  margin: 44px 0 16px; line-height: 1.2;
}
.lc-single-content h2 { font-size: clamp(1.6rem,2.4vw,2.2rem); }
.lc-single-content h3 { font-size: clamp(1.3rem,2vw,1.7rem); }
.lc-single-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.lc-single-content ul, .lc-single-content ol {
  padding-left: 24px; margin-bottom: 24px;
}
.lc-single-content li { margin-bottom: 8px; font-size: 16px; line-height: 1.75; }
.lc-single-content blockquote {
  border-left: 3px solid var(--blue);
  padding-left: 24px; margin: 32px 0;
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(1.2rem,2vw,1.5rem); color: var(--navy); line-height: 1.5;
}

/* ════════════════════════════
   PAGE (genérica)
   ════════════════════════════ */
.lc-page-header {
  padding: 140px 0 clamp(40px,5vw,72px);
  border-bottom: 1px solid var(--navy-10);
}
.lc-page-header .lc-label { margin-bottom: 20px; }
.lc-page-header h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem,5vw,3.6rem);
  font-weight: 300; color: var(--navy); line-height: 1.1;
  max-width: 760px;
}
.lc-page-header-intro {
  margin-top: 18px; font-size: 16px; color: var(--mist);
  line-height: 1.8; max-width: 600px;
}

.lc-page-content {
  padding: clamp(48px,6vw,80px) 0 clamp(80px,10vw,120px);
  max-width: 760px;
}

/* Párrafos */
.lc-page-content p {
  font-size: 16px; line-height: 1.88; margin-bottom: 20px; color: var(--text);
}

/* Encabezados de sección (ideal para páginas legales) */
.lc-page-content h2 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.4rem,2.2vw,1.9rem); color: var(--navy);
  line-height: 1.2; margin: 48px 0 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--navy-10);
}
.lc-page-content h3 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.15rem,1.8vw,1.5rem); color: var(--navy);
  line-height: 1.3; margin: 32px 0 12px;
}

/* Listas */
.lc-page-content ul,
.lc-page-content ol {
  padding-left: 22px; margin-bottom: 24px;
}
.lc-page-content li {
  font-size: 16px; line-height: 1.8; margin-bottom: 8px; color: var(--text);
}
.lc-page-content ul li { list-style: disc; }
.lc-page-content ol li { list-style: decimal; }

/* Énfasis y enlaces */
.lc-page-content strong { font-weight: 600; color: var(--navy); }
.lc-page-content em { font-style: italic; }
.lc-page-content a {
  color: var(--blue); text-decoration: underline;
  text-underline-offset: 3px; transition: opacity .2s;
}
.lc-page-content a:hover { opacity: .75; }

/* Separador / HR */
.lc-page-content hr {
  border: none; border-top: 1px solid var(--navy-10);
  margin: 44px 0;
}

/* Cita / blockquote */
.lc-page-content blockquote {
  border-left: 3px solid var(--blue);
  padding: 4px 0 4px 24px; margin: 32px 0;
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(1.1rem,1.8vw,1.35rem);
  color: var(--navy); line-height: 1.55;
  border-top: none; box-shadow: none;
}

/* Bloque de datos (dirección, responsable…) */
.lc-page-content address {
  font-style: normal; background: rgba(27,43,88,.04);
  padding: 20px 24px; margin: 24px 0;
  border-left: 3px solid var(--navy-10);
  font-size: 15px; line-height: 1.8; color: var(--text);
}

/* ════════════════════════════
   PAGINATION
   ════════════════════════════ */
.lc-pagination {
  padding: clamp(40px,6vw,80px) 0;
  border-top: 1px solid var(--navy-10);
  display: flex; justify-content: center; gap: 8px;
}
.lc-pagination a, .lc-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  font-size: 13px; font-weight: 500;
  color: var(--navy); text-decoration: none;
  border: 1px solid var(--navy-10);
  transition: background .2s, color .2s, border-color .2s;
}
.lc-pagination a:hover  { background: var(--navy); color: var(--white); border-color: var(--navy); }
.lc-pagination .current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ════════════════════════════
   PÁGINA DE SERVICIO
   ════════════════════════════ */
.lc-srv-hero {
  background: var(--navy); position: relative; overflow: hidden;
  padding: 160px 0 clamp(80px,10vw,120px);
}
.lc-srv-hero::before {
  content: ''; position: absolute;
  top: -200px; right: -200px; width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(40,120,176,.12) 0%, transparent 70%);
  pointer-events: none;
}
/* Foto de fondo del hero */
.lc-srv-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  opacity: .18;
  mix-blend-mode: luminosity;
}
/* Subtítulo del hero (campo lc_hero_subtitle) */
.lc-srv-hero-subtitle {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 300;
  color: var(--sand); line-height: 1.5;
  max-width: 620px; margin-bottom: 20px; margin-top: -14px;
}
.lc-srv-hero-meta {
  display: flex; align-items: center; gap: 24px; margin-bottom: 24px;
}
.lc-srv-hero-meta .lc-label { color: var(--sand); margin-bottom: 0; }
.lc-srv-hero-meta .lc-label::before { background: var(--sand); }
.lc-srv-hero-num {
  font-family: var(--ff-display); font-size: clamp(3rem,5vw,5rem);
  font-weight: 300; color: rgba(255,255,255,.08); line-height: 1;
  user-select: none;
}
.lc-srv-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem,5.5vw,5rem);
  font-weight: 300; color: var(--white); line-height: 1.05;
  max-width: 800px; margin-bottom: 28px;
}
.lc-srv-hero-intro {
  font-size: clamp(15px,1.8vw,18px); font-weight: 300;
  color: rgba(255,255,255,.55); line-height: 1.85;
  max-width: 600px; margin-bottom: 52px;
}

/* Contenido servicio */
.lc-srv-content {
  padding: clamp(80px,10vw,140px) 0;
  background: var(--cream);
}
.lc-srv-content-grid {
  display: grid; grid-template-columns: 260px 1fr;
  gap: clamp(48px,7vw,100px); align-items: start;
}
.lc-srv-sidebar { position: sticky; top: 120px; }
.lc-srv-sidebar-inner {
  padding: 32px; background: var(--cream-dark);
  border-top: 2px solid var(--blue);
}
.lc-srv-sidebar-inner .lc-label { margin-bottom: 20px; }
.lc-srv-sidebar-note {
  font-size: 14px; color: var(--mist); line-height: 1.75;
  margin-bottom: 24px;
}
/* Foto de Laura en el sidebar */
.lc-srv-sidebar-photo {
  margin-top: 20px;
}
.lc-srv-sidebar-photo img {
  width: 100%; display: block;
  aspect-ratio: 3/4; object-fit: cover; object-position: center top;
}

/* ── Sidebar: lista de proceso numerada (Auditoría) ── */
.lc-srv-proceso-list {
  list-style: none; margin-top: 2px;
  border-top: 1px solid var(--navy-10);
  counter-reset: proceso;
}
.lc-srv-proceso-list li {
  counter-increment: proceso;
  padding: 16px 0 16px 44px;
  position: relative;
  border-bottom: 1px solid var(--navy-10);
  font-size: 13px; color: var(--text); line-height: 1.65;
}
.lc-srv-proceso-list li::before {
  content: counter(proceso, decimal-leading-zero);
  position: absolute; left: 0; top: 16px;
  font-family: var(--ff-display); font-size: 1rem;
  font-weight: 300; color: var(--blue); opacity: .5;
}
.lc-srv-proceso-list li strong {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: .04em; color: var(--navy); margin-bottom: 3px;
}

/* ── Sidebar: formatos disponibles (Formación) ── */
.lc-srv-format-list {
  margin-top: 2px;
  border-top: 1px solid var(--navy-10);
}
.lc-srv-format-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--navy-10);
}
.lc-srv-format-tag {
  display: inline-block;
  font-size: 10px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
  border: 1px solid rgba(40,120,176,.3);
  padding: 2px 8px; margin-bottom: 8px;
}
.lc-srv-format-item strong {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--navy); margin-bottom: 5px;
}
.lc-srv-format-item p {
  font-size: 12px; color: var(--mist); line-height: 1.7; margin: 0;
}

/* ── Grid 3 columnas navy (bloque HTML en Gutenberg) ── */
.lc-navy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin: 32px 0 44px;
}
.lc-navy-cell {
  background: var(--navy); padding: 32px 24px;
  /* Resetea tipografía heredada del body-content */
  color: rgba(255,255,255,.5);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
}
.lc-navy-cell .lc-nc-label {
  font-size: 10px !important; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--sand) !important;
  margin-bottom: 18px; display: block;
  font-family: var(--ff-body);
}
/* Necesita mayor especificidad para ganar sobre .lc-srv-body-content p */
.lc-srv-body-content .lc-navy-cell p,
.lc-navy-cell p {
  font-size: 14px !important;
  color: rgba(255,255,255,.5) !important;
  line-height: 1.8; margin: 0;
  font-family: var(--ff-body);
  font-weight: 300;
}
/* Responsive: apila en móvil */
@media (max-width: 700px) {
  .lc-navy-grid { grid-template-columns: 1fr; }
}

/* Contenido editable (Gutenberg) */
.lc-srv-body-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem,2.8vw,2.4rem);
  font-weight: 300; color: var(--navy); line-height: 1.2;
  margin: 0 0 20px;
}
.lc-srv-body-content h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem,2vw,1.7rem);
  font-weight: 400; color: var(--navy); line-height: 1.25;
  margin: 40px 0 14px;
}
.lc-srv-body-content p {
  font-size: clamp(15px,1.6vw,17px); line-height: 1.9;
  color: var(--text); margin-bottom: 24px;
}
.lc-srv-body-content ul, .lc-srv-body-content ol {
  padding-left: 0; list-style: none; margin-bottom: 28px;
}
.lc-srv-body-content li {
  font-size: 15px; line-height: 1.8; color: var(--text);
  padding: 10px 0 10px 22px; position: relative;
  border-bottom: 1px solid var(--navy-10);
}
.lc-srv-body-content li::before {
  content: ''; position: absolute; left: 0; top: 19px;
  width: 8px; height: 1px; background: var(--blue);
}
.lc-srv-body-content blockquote {
  border-left: 3px solid var(--blue); padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(1.2rem,2vw,1.5rem); color: var(--navy); line-height: 1.5;
}

/* Drop cap — solo párrafos hijos directos (excluye <p> dentro de blockquote) */
.lc-srv-body-content > p:first-of-type::first-letter,
.lc-srv-body-content p.has-drop-cap::first-letter {
  font-family: var(--ff-display); font-weight: 400;
  font-size: 5.4rem; line-height: .82;
  float: left; margin-right: 6px; margin-top: 6px; color: var(--navy);
}

/* H2 con más espacio cuando va justo después de una imagen */
.lc-srv-body-content .wp-block-image + h2,
.lc-srv-body-content figure + h2 {
  margin-top: 48px;
}

/* ── Cuadrícula de incluidos / entregables (bloque HTML en Gutenberg) ── */
.lc-include-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 32px 0 44px;
}
.lc-include-item {
  background: var(--cream-dark);
  padding: 28px 24px;
  border-top: 2px solid transparent;
  transition: border-color .25s;
}
.lc-include-item:hover { border-color: var(--blue); }
.lc-include-item .lc-inc-num {
  font-family: var(--ff-display); font-size: 2.2rem; font-weight: 300;
  color: var(--blue); opacity: .25; line-height: 1; margin-bottom: 10px;
}
.lc-include-item h4 {
  font-family: var(--ff-display); font-size: 1.2rem; font-weight: 400;
  color: var(--navy); margin-bottom: 8px; line-height: 1.3;
}
.lc-include-item p {
  font-size: 13px; color: var(--mist); line-height: 1.75; margin: 0;
}

/* Responsive: una columna en móvil */
@media (max-width: 600px) {
  .lc-include-grid { grid-template-columns: 1fr; }
}

/* ── Acordeón FAQ (bloque HTML en Gutenberg) ── */
.lc-faq { margin: 32px 0 44px; }
.lc-faq details {
  border-bottom: 1px solid rgba(27,43,88,.1);
}
.lc-faq details:first-child {
  border-top: 1px solid rgba(27,43,88,.1);
}
.lc-faq summary {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  color: var(--navy);
  padding: 20px 40px 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.3;
  transition: color .2s;
}
.lc-faq summary::-webkit-details-marker { display: none; }
.lc-faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  line-height: 1;
}
.lc-faq details[open] > summary { color: var(--blue); }
.lc-faq details[open] > summary::after { content: '\00D7'; }
.lc-faq .lc-faq-body {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.85;
  padding: 0 40px 20px 0;
  max-width: 680px;
}

/* CTA band */
.lc-srv-cta-band {
  background: var(--navy-10); border-top: 1px solid var(--navy-10);
  padding: clamp(60px,8vw,100px) 0;
}
.lc-srv-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.lc-srv-cta-inner .lc-label { margin-bottom: 10px; }
.lc-srv-cta-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 300; color: var(--navy); line-height: 1.2;
}

/* Otros servicios */
.lc-other-services {
  padding: clamp(60px,8vw,100px) 0;
  background: var(--cream);
  border-top: 1px solid var(--navy-10);
}
.lc-other-services .lc-label { margin-bottom: 40px; }
.lc-other-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.lc-other-card {
  display: flex; flex-direction: column; gap: 12px;
  padding: 36px 32px; background: var(--cream-dark);
  text-decoration: none; color: var(--navy);
  border-top: 2px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.lc-other-card:hover { border-color: var(--blue); background: var(--white); }
.lc-other-num {
  font-family: var(--ff-display); font-size: 2.5rem;
  font-weight: 300; color: var(--blue); opacity: .25; line-height: 1;
}
.lc-other-card h3 {
  font-family: var(--ff-display); font-size: clamp(1.3rem,2vw,1.6rem);
  font-weight: 300; line-height: 1.2; flex: 1;
}
.lc-other-arrow {
  font-size: 1.2rem; color: var(--blue); opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
  align-self: flex-end;
}
.lc-other-card:hover .lc-other-arrow { opacity: 1; transform: translateX(4px); }

/* Responsive servicios */
@media (max-width: 900px) {
  .lc-srv-content-grid { grid-template-columns: 1fr; }
  .lc-srv-sidebar { position: relative; top: auto; }
  .lc-srv-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════
   PÁGINA SOBRE MÍ
   ════════════════════════════ */
.lc-about-hero {
  min-height: 70vh; background: var(--cream);
  padding-top: 100px; position: relative; overflow: hidden;
}
.lc-about-hero-inner {
  display: grid; grid-template-columns: 1fr 420px;
  gap: clamp(48px,6vw,80px); align-items: end;
  padding-bottom: 0;
}
.lc-about-hero-text { padding: clamp(48px,6vw,80px) 0 clamp(48px,6vw,80px); }
.lc-about-hero-text .lc-label { margin-bottom: 20px; }
.lc-about-hero-text h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem,6vw,5.2rem);
  font-weight: 300; color: var(--navy); line-height: 1.05;
  margin-bottom: 24px;
}
/* "Donostia" en cursiva azul dentro del H1 */
.lc-about-hero-text h1 em {
  font-style: italic; color: var(--blue);
}
.lc-about-hero-sub {
  font-size: clamp(15px,1.7vw,18px); color: var(--mist);
  line-height: 1.85; max-width: 500px; margin-bottom: 36px;
}
/* Enlace "Ver servicios" en el hero */
.lc-about-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--navy);
  border-bottom: 1.5px solid var(--navy); padding-bottom: 3px;
  text-decoration: none;
  transition: color .2s, border-color .2s;
}
.lc-about-hero-cta:hover { color: var(--blue); border-color: var(--blue); }
.lc-about-hero-photo {
  align-self: end;
}
.lc-about-hero-photo img {
  width: 100%; height: 560px; object-fit: cover;
  object-position: center 15%; display: block;
}

/* Contenido bio */
.lc-about-content {
  padding: clamp(48px,5vw,80px) 0;
  background: var(--cream);
}
.lc-about-content-inner {
  display: grid; grid-template-columns: 1fr 280px;
  gap: clamp(48px,6vw,80px); align-items: start;
}
.lc-about-body h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem,2.8vw,2.4rem);
  font-weight: 300; color: var(--navy); line-height: 1.2;
  margin: 0 0 20px;
}
.lc-about-body p {
  font-size: clamp(15px,1.6vw,17px); line-height: 1.9;
  color: var(--text); margin-bottom: 24px;
}
/* Drop cap: solo párrafos hijos directos, nunca dentro de blockquote */
.lc-about-body > p:first-of-type::first-letter,
.lc-about-body p.has-drop-cap::first-letter {
  font-family: var(--ff-display); font-weight: 400;
  font-size: 5.4rem; line-height: .82;
  float: left; margin-right: 6px; margin-top: 6px; color: var(--navy);
}
/* Cita: línea azul a la izquierda — igual que en páginas de servicio */
.lc-about-body blockquote,
.lc-about-body .wp-block-quote {
  border: none !important;          /* reset total primero (anula Gutenberg) */
  border-left: 3px solid var(--blue) !important;
  box-shadow: none !important;       /* por si Gutenberg usa inset shadow */
  padding: 8px 0 8px 24px !important;
  margin: 32px 0 !important;
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(1.2rem,2vw,1.5rem); color: var(--navy); line-height: 1.5;
  background: none !important;
  quotes: none !important;
}
.lc-about-body blockquote::before,
.lc-about-body blockquote::after,
.lc-about-body .wp-block-quote::before,
.lc-about-body .wp-block-quote::after { content: none !important; }
.lc-about-body blockquote p,
.lc-about-body .wp-block-quote p {
  font-size: inherit; color: inherit;
  margin: 0; line-height: inherit;
}
.lc-about-sidebar { position: sticky; top: 120px; }
.lc-about-sidebar-block {
  margin-bottom: 36px; padding-bottom: 36px;
  border-bottom: 1px solid var(--navy-10);
}
.lc-about-sidebar-block:last-child { border-bottom: none; }
.lc-about-sidebar-block .lc-label { margin-bottom: 16px; }
/* Valores con título + descripción */
.lc-about-values { list-style: none; }
.lc-about-values li {
  padding: 14px 0; border-bottom: 1px solid var(--navy-10);
}
.lc-about-values li strong {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}
.lc-about-values li span {
  font-size: 12px; color: var(--mist); line-height: 1.65;
}

/* Sidebar: datos de contacto */
.lc-about-sidebar-contact { border-top: 2px solid var(--blue); padding-top: 28px; }
.lc-label--blue { color: var(--blue) !important; }
.lc-label--blue::before { background: var(--blue) !important; }
.lc-about-contact-list { list-style: none; }
.lc-about-contact-item {
  padding: 12px 0; border-bottom: 1px solid var(--navy-10);
}
.lc-about-contact-item:last-child { border-bottom: none; }
.lc-about-contact-item dt {
  font-size: 10px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--mist); margin-bottom: 3px;
}
.lc-about-contact-item dd {
  font-size: 14px; color: var(--navy); line-height: 1.5;
}
.lc-about-contact-item dd a {
  color: var(--navy); text-decoration: none;
  border-bottom: 1px solid rgba(27,43,88,.15);
  transition: color .2s, border-color .2s;
}
.lc-about-contact-item dd a:hover { color: var(--blue); border-color: var(--blue); }

/* ══ Para quién trabajo ══ */
.lc-about-audience {
  padding: clamp(80px,10vw,140px) 0;
  background: var(--navy);
}
.lc-about-audience .lc-label { color: var(--sand); margin-bottom: 28px; }
.lc-about-audience .lc-label::before { background: var(--sand); }
.lc-about-audience-h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem,3.5vw,3rem);
  font-weight: 300; color: white; line-height: 1.1;
  max-width: 700px; margin-bottom: 20px;
}
.lc-about-audience-p {
  font-size: clamp(14px,1.5vw,16px); color: rgba(255,255,255,.5);
  line-height: 1.85; max-width: 660px; margin-bottom: 48px;
}
/* Grid de 3 tarjetas */
.lc-about-audience-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; margin-bottom: 40px;
}
.lc-about-audience-card {
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 32px 28px;
  /* Fuerza colores propios independientemente de herencia */
  color: rgba(255,255,255,.45);
  font-size: 14px;
  font-family: var(--ff-body);
}
.lc-about-audience-card-label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--sand) !important; margin-bottom: 16px;
}
/* Mayor especificidad para ganar sobre reglas de .lc-about-body p */
.lc-about-audience .lc-about-audience-card p {
  font-size: 14px !important;
  color: rgba(255,255,255,.45) !important;
  line-height: 1.8; margin: 0;
}
/* Etiquetas sobre fondo navy */
.lc-about-audience .lc-aud-tags { margin-bottom: 36px; }
.lc-about-audience .lc-aud-tag {
  background: transparent !important;
  border-color: rgba(255,255,255,.2) !important;
  color: rgba(255,255,255,.55) !important;
}
/* Enlace "¿Crees que tu negocio encaja?" */
.lc-about-audience .lc-text-link {
  color: rgba(255,255,255,.7);
  border-bottom-color: rgba(255,255,255,.25);
}
.lc-about-audience .lc-text-link:hover { color: white; border-bottom-color: white; }

/* ══ CTA Sobre mí ══ */
.lc-about-cta {
  background: var(--cream-dark);
  padding: clamp(80px,10vw,120px) 0;
  text-align: center;
}
.lc-about-cta-inner { max-width: 680px; margin: 0 auto; }
.lc-about-cta .lc-label {
  justify-content: center; margin-bottom: 24px;
}
.lc-about-cta .lc-label::before,
.lc-about-cta .lc-label::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--blue);
}
.lc-about-cta h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem,4vw,3.4rem);
  font-weight: 300; color: var(--navy); line-height: 1.1; margin-bottom: 20px;
}
.lc-about-cta p {
  font-size: clamp(14px,1.5vw,16px); color: var(--mist);
  line-height: 1.85; margin-bottom: 44px;
}
.lc-about-cta-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.lc-about-cta-btn-outline {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--navy);
  border: 1.5px solid rgba(27,43,88,.3);
  padding: 16px 32px; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.lc-about-cta-btn-outline:hover { border-color: var(--navy); }

/* Responsive Sobre mí */
@media (max-width: 900px) {
  .lc-about-hero-inner { grid-template-columns: 1fr; }
  .lc-about-hero-photo { display: none; }
  .lc-about-content-inner { grid-template-columns: 1fr; }
  .lc-about-sidebar { position: relative; top: auto; }
  .lc-about-audience-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════
   PÁGINA CONTACTO
   ════════════════════════════ */

/* ── Hero ── */
.lc-contact-hero {
  padding: 160px clamp(24px,7vw,100px) clamp(60px,8vw,100px);
  background: var(--navy);
}
.lc-contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,100px);
  align-items: end;
  max-width: 1400px;
}
.lc-contact-hero-text .lc-label { color: var(--sand); margin-bottom: 20px; }
.lc-contact-hero-text .lc-label::before { background: var(--sand); }
.lc-contact-hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem,5.5vw,5rem);
  font-weight: 300; color: var(--white); line-height: 1.05;
  margin: 0;
}
.lc-contact-hero-h1 em { font-style: italic; color: var(--sand); }

.lc-contact-hero-intro p {
  font-size: clamp(15px,1.6vw,17px); color: rgba(255,255,255,.55);
  line-height: 1.85; margin: 0 0 16px;
}
.lc-contact-hero-intro p:last-child { margin-bottom: 0; }

/* ── Body ── */
.lc-contact-body {
  padding: clamp(72px,9vw,130px) clamp(24px,7vw,100px);
  background: var(--cream);
}
.lc-contact-body-inner {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(60px,8vw,120px);
  align-items: start;
  max-width: 1400px;
}

/* ── Aside ── */
.lc-contact-aside { position: sticky; top: 120px; }
.lc-contact-aside-block { margin-bottom: 36px; }
.lc-contact-aside-block:last-child { margin-bottom: 0; }
.lc-contact-aside-block .lc-label { margin-bottom: 12px; }

.lc-contact-link {
  font-family: var(--ff-display); font-size: 1.15rem;
  font-weight: 300; color: var(--navy); text-decoration: none;
  border-bottom: 1px solid rgba(27,43,88,.15); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.lc-contact-link:hover { color: var(--blue); border-color: var(--blue); }

.lc-contact-location {
  font-size: 15px; color: var(--text); line-height: 1.7; margin: 0;
}
.lc-contact-location span { color: var(--mist); font-size: 14px; }

.lc-contact-social { display: flex; flex-direction: column; gap: 10px; }
.lc-contact-social-link {
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--navy);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.lc-contact-social-link svg { transition: transform .2s; }
.lc-contact-social-link:hover { color: var(--blue); }
.lc-contact-social-link:hover svg { transform: translate(2px,-2px); }

.lc-contact-aside-quote {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(1rem,1.6vw,1.2rem); font-weight: 300;
  color: var(--navy); line-height: 1.65;
  padding: 28px 0 0; border-top: 1px solid rgba(27,43,88,.12);
  margin: 32px 0 0;
  border-left: none; box-shadow: none;
}
.lc-contact-aside-quote cite {
  display: block; margin-top: 14px;
  font-size: 13px; font-style: normal; font-weight: 400;
  color: var(--mist); letter-spacing: .01em;
}

/* ── Form column ── */
.lc-contact-form-col {}

.lc-contact-form-header { margin-bottom: 40px; }
.lc-contact-form-header .lc-label { margin-bottom: 14px; }
.lc-contact-form-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 300; color: var(--navy); line-height: 1.1;
  margin: 0 0 28px;
}
.lc-contact-form-title em { font-style: italic; }

/* Step header (01 Nombre y negocio) */
.lc-cf7-step-header {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-top: 1px solid rgba(27,43,88,.12);
}
.lc-cf7-step-top { border-top: none; padding-top: 0; }
.lc-cf7-step-num {
  font-family: var(--ff-display); font-size: .75rem; font-weight: 400;
  letter-spacing: .12em; color: var(--blue); opacity: .7;
  min-width: 24px;
}
.lc-cf7-step-title {
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--navy); opacity: .5;
}

/* ── CF7 form wrapper ── */
.lc-contact-form-wrap .wpcf7-form {
  display: flex; flex-direction: column; gap: 20px;
}
.lc-contact-form-wrap .wpcf7-form-control-wrap { display: block; width: 100%; }

/* Inputs & textarea */
.lc-contact-form-wrap input[type="text"],
.lc-contact-form-wrap input[type="email"],
.lc-contact-form-wrap textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid rgba(27,43,88,.15); background: #fff;
  font-family: var(--ff-body); font-size: 15px; font-weight: 300;
  color: var(--navy); line-height: 1.5;
  outline: none; -webkit-appearance: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  border-radius: 0;
}
.lc-contact-form-wrap input[type="text"]:focus,
.lc-contact-form-wrap input[type="email"]:focus,
.lc-contact-form-wrap textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(40,120,176,.07);
}
.lc-contact-form-wrap input::placeholder,
.lc-contact-form-wrap textarea::placeholder { color: var(--mist); font-weight: 300; }
.lc-contact-form-wrap textarea { resize: vertical; min-height: 140px; }

/* Radio & checkbox groups */
.lc-contact-form-wrap .wpcf7-radio,
.lc-contact-form-wrap .wpcf7-checkbox {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.lc-contact-form-wrap .wpcf7-list-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; margin: 0 !important;
  border: 1px solid rgba(27,43,88,.18); background: #fff;
  cursor: pointer; transition: border-color .2s, background .2s;
}
.lc-contact-form-wrap .wpcf7-list-item:hover {
  border-color: var(--blue); background: rgba(40,120,176,.04);
}
.lc-contact-form-wrap .wpcf7-list-item-label {
  font-size: 14px; font-weight: 400; color: var(--navy);
  line-height: 1.4; cursor: pointer; user-select: none;
}
.lc-contact-form-wrap .wpcf7-list-item input[type="radio"],
.lc-contact-form-wrap .wpcf7-list-item input[type="checkbox"] {
  width: 14px; height: 14px; min-width: 14px; flex-shrink: 0;
  padding: 0; margin: 0; border: 1px solid rgba(27,43,88,.3);
  background: #fff; accent-color: var(--blue);
  cursor: pointer;
}

/* Step labels inside CF7 form (if used in form template) */
.lc-cf7-step {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-top: 1px solid rgba(27,43,88,.1);
  margin-bottom: 4px;
}
.lc-cf7-num {
  font-family: var(--ff-display); font-size: .75rem;
  letter-spacing: .12em; color: var(--blue); opacity: .6;
}
.lc-cf7-step-label {
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--navy); opacity: .45;
}

/* Submit button */
.lc-contact-form-wrap input[type="submit"] {
  display: inline-flex; align-items: center;
  font-family: var(--ff-body); font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--white); background: var(--navy);
  padding: 17px 36px; border: none; cursor: pointer;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .2s ease;
  -webkit-appearance: none;
}
.lc-contact-form-wrap input[type="submit"]::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--blue); transform: translateX(-101%);
  transition: transform .38s cubic-bezier(.16,1,.3,1);
}
.lc-contact-form-wrap input[type="submit"]:hover::before { transform: translateX(0); }
.lc-contact-form-wrap input[type="submit"]:hover { transform: translateY(-2px); }

/* CF7 validation messages */
.lc-contact-form-wrap .wpcf7-not-valid-tip {
  font-size: 12px; color: #c0392b; margin-top: 4px; display: block;
}
.lc-contact-form-wrap .wpcf7-response-output {
  margin: 16px 0 0; padding: 14px 18px;
  font-size: 14px; border: 1px solid currentColor;
}

/* Responsive contacto */
@media (max-width: 1024px) {
  .lc-contact-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .lc-contact-body-inner { grid-template-columns: 1fr; gap: 60px; }
  .lc-contact-aside { position: relative; top: auto; }
}
@media (max-width: 600px) {
  .lc-contact-hero { padding-top: 130px; }
  .lc-contact-form-wrap .wpcf7-radio,
  .lc-contact-form-wrap .wpcf7-checkbox { flex-direction: column; }
}

/* ════════════════════════════
   KEYFRAMES
   ════════════════════════════ */
@keyframes lcFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes lcFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes lcTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════
   RESPONSIVE
   ════════════════════════════ */
@media (max-width: 960px) {
  #lc-hero { grid-template-columns: 1fr; }
  .lc-hero-left { padding-top: 100px; padding-bottom: 60px; }
  .lc-hero-right { height: 60vw; min-height: 300px; }
  .lc-hero-right::before {
    background: linear-gradient(to top, var(--cream) 0%, transparent 50%);
  }
  .lc-intro-grid  { grid-template-columns: 1fr; }
  .lc-intro-sticky { position: relative; top: auto; }
  .lc-srv-item    { grid-template-columns: 60px 1fr; }
  .lc-srv-link    { display: none; }
  .lc-proceso-grid { grid-template-columns: 1fr; }
  .lc-aud-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .lc-nav-menu { display: none !important; }
  .lc-hamburger { display: flex; }
}
@media (max-width: 640px) {
  .lc-proceso-photo { display: none; }
  #lc-cta::before { font-size: 55vw; }
  .lc-posts-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   HUB DE SERVICIOS  (page-services.php)
   ════════════════════════════════════════════ */

/* ── Hero hub de Servicios (reutiliza .lc-srv-hero) ── */
.lc-hub-hero-srv.lc-srv-hero {
  min-height: clamp(280px, 38vh, 420px);
}
/* El inner NO usa max-width — mismo padding lateral que el resto del hub */
.lc-hub-hero-srv .lc-srv-hero-inner.container {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: clamp(24px, 7vw, 100px);
  padding-right: clamp(24px, 7vw, 100px);
}

/* ── Lista ── */
.lc-hub-list {
  padding: 0 clamp(24px,7vw,100px);
}
.lc-hub-item {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  gap: 0 clamp(32px,4vw,64px);
  padding: clamp(56px,7vw,88px) 0;
  border-bottom: 1px solid var(--navy-10);
  position: relative;
}
/* Línea azul izquierda al hover */
.lc-hub-item::before {
  content: '';
  position: absolute;
  left: -clamp(24px,7vw,100px); top: 0; bottom: 0;
  width: 3px; background: var(--blue);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.lc-hub-item:hover::before { transform: scaleY(1); }

/* Número decorativo */
.lc-hub-num {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300; line-height: 1;
  color: rgba(27,43,88,.07);
  letter-spacing: -.02em;
  padding-top: 6px;
}

/* Columna principal */
.lc-hub-main .lc-label { margin-bottom: 14px; display: block; }
.lc-hub-item h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400; line-height: 1.22;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.lc-hub-item h2 em { font-style: italic; color: var(--blue); }
.lc-hub-desc {
  font-size: 15px; font-weight: 300;
  line-height: 1.85; color: rgba(27,43,88,.7);
  margin-bottom: 30px;
}
.lc-hub-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; text-decoration: none;
  color: var(--navy);
  border-bottom: 1px solid rgba(27,43,88,.22);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.lc-hub-link svg { transition: transform .2s; }
.lc-hub-link:hover { color: var(--blue); border-color: var(--blue); }
.lc-hub-link:hover svg { transform: translateX(4px); }

/* Columna lateral */
.lc-hub-aside { padding-top: 6px; }
.lc-hub-for-label {
  font-size: 11px; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(27,43,88,.38);
  margin-bottom: 16px;
}
.lc-hub-for-list {
  list-style: none; margin-bottom: 32px;
}
.lc-hub-for-list li {
  font-size: 14px; font-weight: 300; line-height: 1.65;
  color: rgba(27,43,88,.7);
  padding: 11px 0;
  border-bottom: 1px solid rgba(27,43,88,.06);
  display: flex; align-items: flex-start; gap: 12px;
}
.lc-hub-for-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  background: var(--sand); border-radius: 50%;
  margin-top: 8px;
}
.lc-hub-format {
  background: var(--white);
  padding: 16px 20px;
  border-left: 2px solid var(--blue);
}
.lc-hub-format-label {
  font-size: 10px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(27,43,88,.38);
  margin-bottom: 5px;
}
.lc-hub-format-val {
  font-size: 13px; font-weight: 400;
  color: var(--navy); line-height: 1.6;
}

/* ── ¿No sabes cuál? ── */
.lc-hub-help {
  margin: 0 clamp(24px,7vw,100px) 80px;
  padding: clamp(44px,6vw,72px) clamp(36px,5vw,80px);
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.lc-hub-help h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 300; color: var(--white); line-height: 1.3;
  margin-bottom: 12px;
}
.lc-hub-help h3 em { font-style: italic; color: var(--sand); }
.lc-hub-help p {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,.55); line-height: 1.78;
}
.lc-hub-help-btn {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-body); font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-decoration: none;
  color: var(--navy); background: var(--white);
  padding: 17px 32px; white-space: nowrap;
  transition: background .2s, color .2s;
}
.lc-hub-help-btn:hover { background: var(--sand); color: var(--white); }
.lc-hub-help-btn svg { transition: transform .2s; }
.lc-hub-help-btn:hover svg { transform: translateX(4px); }

/* ── CTA final ── */
.lc-hub-cta {
  padding: clamp(80px,10vw,120px) clamp(24px,7vw,100px);
  text-align: center;
  border-top: 1px solid var(--navy-10);
}
.lc-hub-cta .lc-label { margin-bottom: 20px; display: block; }
.lc-hub-cta h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.2;
  margin-bottom: 18px;
}
.lc-hub-cta h2 em { font-style: italic; color: var(--blue); }
.lc-hub-cta > p {
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: rgba(27,43,88,.62); max-width: 480px; margin: 0 auto 40px;
}
.lc-hub-cta-btns {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
/* Botón outline (solo en este contexto — complementa .lc-hero-btn existente) */
.lc-btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body); font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-decoration: none;
  color: var(--navy); background: transparent;
  border: 1.5px solid rgba(27,43,88,.3);
  padding: 15px 32px;
  transition: border-color .2s, color .2s, transform .2s;
}
.lc-btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .lc-hub-item { grid-template-columns: 60px 1fr 1fr; }
}
@media (max-width: 900px) {
  .lc-hub-hero { grid-template-columns: 1fr; gap: 32px; }
  .lc-hub-item { grid-template-columns: 1fr; }
  .lc-hub-num { font-size: 3rem; padding: 0; margin-bottom: 12px; }
  .lc-hub-aside { padding-top: 32px; border-top: 1px solid var(--navy-10); }
  .lc-hub-help { grid-template-columns: 1fr; }
  .lc-hub-help-btn { width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
  .lc-hub-cta-btns { flex-direction: column; align-items: stretch; }
  .lc-hub-cta-btns .lc-hero-btn,
  .lc-hub-cta-btns .lc-btn-outline { justify-content: center; }
}
