/* ============================================
   LPL — THE BRANDING CULTURE CLUB — GLOBAL STYLESHEET
   Versión: 1.0 | somoslpl.cl
   Importar en todas las páginas del sitio
   ============================================ */

/* Inter es la tipografía funcional mientras se incorpora LPL Display. */

/* ── VARIABLES ── */
:root {
  --lpl-orange:       #D9873C;
  --lpl-orange-dark:  #BF6F2A;
  --lpl-magenta:      #E91D73;
  --lpl-magenta-text: #A80E4B;
  --lpl-cream:        #FFFFFF;
  --lpl-black:        #0F0F10;
  --lpl-graphite:     #2B2B2E;
  --lpl-stone:        #B6B2AE;
  --lpl-gray:         #6F6C69;
  --lpl-white:        #FFFFFF;

  --font-display:     'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-body:        'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius:           4px;
  --radius-sm:        4px;
  --radius-pill:      999px;

  --space-1:          8px;
  --space-2:          16px;
  --space-3:          24px;
  --space-4:          32px;
  --space-5:          48px;
  --space-6:          64px;
  --content-max:      1440px;

  --shadow-sm:        0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:        0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:        0 12px 32px rgba(0,0,0,0.12);

  --transition:       all 0.25s ease;
  --ease-standard:    cubic-bezier(.2,.8,.2,1);
  --duration-fast:    180ms;
  --duration-base:    280ms;
  --duration-slow:    420ms;
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--lpl-cream);
  color: var(--lpl-black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

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

:focus-visible {
  outline: 2px solid var(--lpl-magenta);
  outline-offset: 3px;
}

::selection {
  color: var(--lpl-white);
  background: var(--lpl-magenta);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--lpl-white);
  background: var(--lpl-black);
  transform: translateY(-160%);
  transition: transform var(--duration-fast) var(--ease-standard);
}

.skip-link:focus { transform: translateY(0); }

.lpl-container { width: min(100% - 10vw, var(--content-max)); margin-inline: auto; }
.lpl-icon { width: 24px; height: 24px; color: currentColor; }
.lpl-caption { font-size: 12px; line-height: 1.35; color: var(--lpl-gray); }

.lpl-frame {
  position: relative;
  border: 1px solid rgba(15,15,16,.18);
}

.lpl-frame::before,
.lpl-frame::after {
  content: '+';
  position: absolute;
  z-index: 2;
  font-size: 13px;
  line-height: 1;
  color: var(--lpl-black);
}

.lpl-frame::before { top: -7px; right: 14px; }
.lpl-frame::after { right: -5px; bottom: 14px; }

.lpl-grain {
  background-image: radial-gradient(rgba(15,15,16,.15) .55px, transparent .7px);
  background-size: 4px 4px;
}

.lpl-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  color: var(--lpl-magenta-text);
  background: rgba(233,29,115,.08);
  font-size: 11px;
  font-weight: 600;
}

.btn-secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 11px 22px;
  border: 1px solid var(--lpl-magenta);
  border-radius: var(--radius);
  color: var(--lpl-magenta-text);
  background: transparent;
  font: 500 14px/20px var(--font-body);
  cursor: pointer;
}

.btn-secondary:hover { color: var(--lpl-black); background: var(--lpl-magenta); }
.btn-primary:active, .btn-secondary:active, .btn-outline:active, .btn-dark:active { transform: translateY(1px); }
.btn-primary:disabled, .btn-secondary:disabled, .btn-outline:disabled, .btn-dark:disabled,
.is-disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }
.is-loading { color: transparent !important; position: relative; pointer-events: none; }
.is-loading::after { content: ''; position: absolute; inset: 50% auto auto 50%; width: 16px; height: 16px; margin: -8px; border: 2px solid var(--lpl-white); border-right-color: transparent; border-radius: 50%; animation: lpl-spin .7s linear infinite; }

.field-help, .field-error, .field-success { margin-top: 6px; font-size: 12px; }
.field-help { color: var(--lpl-gray); }
.field-error { color: #b42318; }
.field-success { color: #16794b; }
.simple-form [aria-invalid="true"] { border-color: #b42318; }
.simple-form input[type="checkbox"], .simple-form input[type="radio"] { width: 18px; height: 18px; accent-color: var(--lpl-magenta); }

details.lpl-accordion { border-top: 1px solid rgba(15,15,16,.18); }
details.lpl-accordion:last-child { border-bottom: 1px solid rgba(15,15,16,.18); }
details.lpl-accordion summary { padding: 18px 36px 18px 0; cursor: pointer; font-weight: 500; list-style: none; position: relative; }
details.lpl-accordion summary::after { content: '+'; position: absolute; right: 4px; }
details.lpl-accordion[open] summary::after { content: '−'; }
details.lpl-accordion > div { padding: 0 0 20px; color: var(--lpl-gray); }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity var(--duration-slow) var(--ease-standard), transform var(--duration-slow) var(--ease-standard); }
[data-reveal].revealed { opacity: 1; transform: none; }

@keyframes lpl-spin { to { transform: rotate(360deg); } }

/* ── PLANTILLAS DE PÁGINAS INTERIORES ── */
.page-main { padding-top: 72px; }

.page-hero {
  min-height: 520px;
  padding: clamp(90px, 12vw, 160px) 7% clamp(64px, 8vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 8%;
  align-items: end;
  background: var(--lpl-white);
  border-bottom: 1px solid rgba(17,16,16,.1);
  position: relative;
  overflow: hidden;
}

.page-hero > * { position: relative; z-index: 2; }

.page-hero.has-page-art::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: min(32vw, 430px);
  height: 76%;
  right: 2%;
  bottom: -10%;
  background-image: var(--page-art);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: .11;
  filter: grayscale(1);
  pointer-events: none;
}

.page-hero__eyebrow {
  margin-bottom: 18px;
  color: var(--lpl-orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 920px;
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}

.page-hero h1 span { color: var(--lpl-magenta); }

.page-hero__intro {
  max-width: 520px;
  padding-bottom: 6px;
  color: #45423f;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
}

.page-section { padding: clamp(70px, 8vw, 120px) 7%; }
.page-section--dark { background: var(--lpl-black); color: #fff; }
.page-section--white { background: #fff; }

.page-section__head {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 8%;
  margin-bottom: 48px;
}

.page-section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.page-section__head p { max-width: 650px; color: #5b5752; line-height: 1.75; }
.page-section--dark .page-section__head p { color: rgba(255,255,255,.58); }

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.content-card {
  min-height: 230px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(17,16,16,.12);
  background: var(--lpl-white);
  transition: transform .25s ease, border-color .25s ease;
}

a.content-card:hover { transform: translateY(-5px); border-color: var(--lpl-magenta); }
.content-card__num { color: var(--lpl-orange); font-size: 11px; font-weight: 600; letter-spacing: 2px; }
.content-card h2, .content-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 500; letter-spacing: -.03em; line-height: 1.08; }
.content-card p { margin-top: 14px; color: #68635e; font-size: 14px; line-height: 1.65; }
.content-card__link { margin-top: 22px; color: var(--lpl-magenta-text); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }

.placeholder-panel {
  min-height: 340px;
  padding: 40px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(17,16,16,.25);
  color: var(--lpl-gray);
  text-align: center;
  background: rgba(255,255,255,.3);
}

.prose {
  max-width: 780px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--lpl-graphite);
}

.prose p + p { margin-top: 1.25em; }
.prose strong { color: var(--lpl-black); font-weight: 600; }
.page-section--dark .prose { color: rgba(255,255,255,.72); }
.page-section--dark .prose strong { color: var(--lpl-white); }

.text-link {
  color: var(--lpl-magenta-accessible);
  font-size: var(--lpl-text-sm);
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: .25em;
}

.text-link:hover { text-decoration: underline; }
.text-link:focus-visible { outline: 3px solid var(--lpl-orange); outline-offset: 4px; }

.detail-breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px clamp(24px, 6vw, 96px) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #6b6660;
  font-size: 12px;
}

.detail-breadcrumb a { color: var(--lpl-black); text-decoration: none; }
.detail-breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }

.detail-navigation {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(17,16,16,.14);
  background: var(--lpl-warm-white);
}

.detail-navigation div { display: flex; flex-direction: column; gap: 6px; }
.detail-navigation__next { text-align: right; align-items: flex-end; }
.detail-navigation span { color: #6b6660; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; }
.detail-navigation a { color: var(--lpl-black); font-weight: 600; text-decoration: none; }
.detail-navigation a:hover { color: var(--lpl-magenta-accessible); }
.detail-navigation__all { padding: 10px 16px; border: 1px solid currentColor; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }

.service-summary {
  display: grid;
  grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr);
  gap: 9%;
  align-items: start;
}

.service-summary__label {
  position: sticky;
  top: 110px;
  color: var(--lpl-orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.deliverables li {
  padding: 9px 12px;
  border: 1px solid rgba(15,15,16,.16);
  border-radius: var(--radius-pill);
  font-size: 12px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.case-preview {
  min-height: 390px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(15,15,16,.14);
  background: var(--lpl-white);
  transition: border-color var(--duration-fast), transform var(--duration-fast);
}

.case-preview:hover { border-color: var(--lpl-magenta); transform: translateY(-4px); }
.case-preview__category { color: var(--lpl-magenta-text); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.case-preview h3 { margin-top: auto; font-size: clamp(34px,4vw,54px); font-weight: 500; letter-spacing: -.05em; }
.case-preview p { margin-top: 16px; color: var(--lpl-gray); font-size: 14px; line-height: 1.65; }
.case-preview__link { margin-top: 22px; color: var(--lpl-magenta-text); font-size: 12px; font-weight: 600; }

.project-facts {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1px;
  background: rgba(15,15,16,.15);
  border: 1px solid rgba(15,15,16,.15);
}

.project-facts > div { padding: 28px; background: var(--lpl-white); }
.project-facts dt { margin-bottom: 10px; color: var(--lpl-orange); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }

.video-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 36px);
  max-width: 980px;
  margin: 0 auto;
}

.video-card {
  margin: 0;
}

.video-card__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(15, 15, 16, .14);
  border-radius: var(--radius);
  background: var(--lpl-black);
}

.video-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card figcaption {
  margin-top: 14px;
  color: var(--lpl-graphite);
  font-size: var(--lpl-text-sm);
  font-weight: 600;
}

.legal-layout { display: grid; grid-template-columns: minmax(210px, .55fr) minmax(0, 1.45fr); gap: clamp(48px, 8vw, 120px); align-items: start; }
.legal-toc { position: sticky; top: 110px; padding: 24px; border: 1px solid rgba(15,15,16,.14); background: var(--lpl-white); }
.legal-toc__title { margin-bottom: 16px; color: var(--lpl-orange); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.legal-toc ol { display: grid; gap: 10px; margin: 0; padding-left: 18px; }
.legal-toc a { color: var(--lpl-graphite); font-size: 13px; line-height: 1.45; text-decoration: none; }
.legal-toc a:hover { color: var(--lpl-magenta-text); text-decoration: underline; text-underline-offset: .2em; }
.legal-content { max-width: 820px; }
.legal-content section { scroll-margin-top: 110px; }
.legal-content section + section { margin-top: clamp(56px, 8vw, 96px); padding-top: clamp(48px, 6vw, 72px); border-top: 1px solid rgba(15,15,16,.14); }
.legal-content h2 { margin-bottom: 24px; font-size: clamp(30px, 4vw, 52px); line-height: 1.05; letter-spacing: -.035em; }
.legal-content h3 { margin: 36px 0 12px; font-size: clamp(19px, 2vw, 24px); line-height: 1.2; }
.legal-content p, .legal-content li { color: var(--lpl-graphite); font-size: 16px; line-height: 1.75; }
.legal-content p + p { margin-top: 1.1em; }
.legal-content ul { display: grid; gap: 10px; margin: 18px 0 0; padding-left: 22px; }
.legal-content strong { color: var(--lpl-black); }
.ethics-values { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; margin-top: 28px; background: rgba(15,15,16,.14); border: 1px solid rgba(15,15,16,.14); }
.ethics-value { padding: 24px; background: var(--lpl-white); }
.ethics-value h3 { margin: 0 0 8px; font-size: 16px; }
.ethics-value p { font-size: 14px; line-height: 1.6; }
.compliance-panel { padding: clamp(28px,5vw,56px); background: var(--lpl-black); color: var(--lpl-white); }
.compliance-panel h2 { color: var(--lpl-white); }
.compliance-panel p { color: rgba(255,255,255,.74); }
.compliance-panel a { color: var(--lpl-orange); font-weight: 600; overflow-wrap: anywhere; }

/* ── PRIVACIDAD Y CONSENTIMIENTO ── */
.consent-banner {
  position: fixed;
  z-index: 10000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
  background: var(--lpl-black);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  color: var(--lpl-white);
}

.consent-banner[hidden], .consent-modal[hidden] { display: none; }
.consent-banner h2 { margin-bottom: 8px; color: var(--lpl-white); font-size: 20px; }
.consent-banner p { max-width: 720px; color: rgba(255,255,255,.74); font-size: 14px; line-height: 1.6; }
.consent-banner a { color: var(--lpl-orange); }
.consent-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.consent-button { min-height: 44px; padding: 10px 16px; border: 1px solid var(--lpl-white); background: transparent; color: var(--lpl-white); font: inherit; font-size: 13px; font-weight: 600; cursor: pointer; }
.consent-button--primary { border-color: var(--lpl-orange); background: var(--lpl-orange); color: var(--lpl-black); }
.consent-button:hover { border-color: var(--lpl-orange); }
.consent-button:focus-visible { outline: 3px solid var(--lpl-magenta); outline-offset: 3px; }

.consent-modal { position: fixed; z-index: 10001; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(15,15,16,.76); }
.consent-dialog { width: min(620px,100%); max-height: min(760px,90vh); overflow-y: auto; padding: clamp(24px,5vw,44px); background: var(--lpl-white); box-shadow: 0 24px 80px rgba(0,0,0,.36); }
.consent-dialog__head { display: flex; justify-content: space-between; gap: 20px; align-items: start; margin-bottom: 24px; }
.consent-dialog h2 { font-size: clamp(28px,5vw,42px); line-height: 1; }
.consent-close { width: 44px; height: 44px; border: 1px solid rgba(15,15,16,.18); background: transparent; font-size: 24px; cursor: pointer; }
.consent-category { padding: 20px 0; border-top: 1px solid rgba(15,15,16,.14); }
.consent-category__head { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.consent-category h3 { font-size: 17px; }
.consent-category p { margin-top: 8px; color: var(--lpl-gray); font-size: 14px; line-height: 1.55; }
.consent-category input { width: 22px; height: 22px; accent-color: var(--lpl-magenta); }
.consent-always { color: var(--lpl-magenta-text); font-size: 12px; font-weight: 600; }
.consent-dialog__links { margin: 16px 0; font-size: 13px; }
.consent-dialog__links a { color: var(--lpl-magenta-text); }

.privacy-settings-link { padding: 0; border: 0; background: none; color: inherit; font: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: .2em; }

.external-media-placeholder { position: absolute; inset: 0; display: grid; place-content: center; gap: 12px; padding: 24px; text-align: center; background: var(--lpl-black); color: var(--lpl-white); }
.external-media-placeholder p { color: rgba(255,255,255,.74); font-size: 13px; line-height: 1.5; }
.external-media-placeholder button { justify-self: center; }

.form-consent { grid-column: 1 / -1; display: grid !important; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: 13px !important; line-height: 1.5; }
.form-consent input { width: 18px !important; height: 18px; margin-top: 2px; }
.form-consent a { color: var(--lpl-magenta-text); }
.project-facts dd { color: var(--lpl-graphite); line-height: 1.7; }
.contact-facts { grid-template-columns: repeat(3,minmax(0,1fr)); }
.contact-facts address { font-style: normal; }

.page-cta {
  padding: clamp(70px, 9vw, 130px) 7%;
  text-align: center;
  background: var(--lpl-orange);
}

.page-cta h2 { font-family: var(--font-display); font-size: clamp(48px, 7vw, 96px); font-weight: 500; letter-spacing: -.05em; line-height: .98; }
.page-cta p { max-width: 560px; margin: 24px auto 32px; line-height: 1.7; }

.simple-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 900px; }
.simple-form label { display: grid; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.simple-form label:last-of-type { grid-column: 1 / -1; }
.simple-form input, .simple-form textarea, .simple-form select { width: 100%; padding: 15px; border: 1px solid rgba(17,16,16,.2); background: #fff; font: inherit; }
.simple-form input:focus, .simple-form textarea:focus, .simple-form select:focus { border-color: var(--lpl-magenta); outline: 1px solid var(--lpl-magenta); }
.simple-form textarea { min-height: 150px; resize: vertical; }
.simple-form button { justify-self: start; }

/* ── NAVEGACIÓN ── */
.lpl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.lpl-nav__logo {
  width: 138px;
  height: 48px;
  flex: 0 0 138px;
  overflow: hidden;
  font-size: 0;
  color: transparent;
  background-image: url('../assets/images/brand/lpl-logo-horizontal.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-decoration: none;
}

.lpl-nav__links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}

.lpl-nav__links a {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--lpl-black);
  transition: color 0.2s;
}

.lpl-nav__links a:hover,
.lpl-nav__links a.active {
  color: var(--lpl-orange);
}

.lpl-nav__cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  background: var(--lpl-magenta);
  color: var(--lpl-black);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s;
}

.lpl-nav__cta:hover {
  background: var(--lpl-black);
  color: var(--lpl-white);
}

.lpl-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.lpl-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lpl-black);
  border-radius: 2px;
  transition: var(--transition);
}

.lpl-nav__mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 999;
  background: var(--lpl-cream);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 1.5rem 5%;
  flex-direction: column;
  gap: 1rem;
}

.lpl-nav__mobile-menu.open {
  display: flex;
}

.lpl-nav__mobile-menu a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--lpl-black);
}

.lpl-nav__mobile-menu a.cta {
  background: var(--lpl-magenta);
  color: var(--lpl-black);
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: none;
  margin-top: 0.5rem;
}

/* ── BOTONES ── */
.btn-primary {
  display: inline-block;
  background: var(--lpl-orange);
  color: var(--lpl-black);
  min-height: 44px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--lpl-orange-dark);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--lpl-black);
  min-height: 44px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  border: 1.5px solid var(--lpl-black);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--lpl-black);
  color: var(--lpl-cream);
}

.btn-outline--white {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}

.btn-outline--white:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn-dark {
  display: inline-block;
  background: var(--lpl-black);
  color: #fff;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  background: var(--lpl-graphite);
}

/* ── ELEMENTOS COMUNES ── */
.section-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lpl-orange);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.2rem;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--lpl-orange);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.section-title span,
.section-title em {
  color: var(--lpl-orange);
  font-style: normal;
}

.breadcrumb {
  padding: 1.2rem 5%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lpl-gray);
  flex-wrap: wrap;
  margin-top: 72px; /* compensa nav fixed */
}

.breadcrumb a {
  color: var(--lpl-gray);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--lpl-orange);
}

.breadcrumb__current {
  color: var(--lpl-orange);
}

.breadcrumb__sep {
  opacity: 0.4;
}

/* ── FOOTER ── */
.lpl-footer {
  background: var(--lpl-black);
  padding: 4% 5%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.lpl-footer__logo {
  width: 190px;
  height: 70px;
  display: block;
  overflow: hidden;
  margin-bottom: 1rem;
  font-size: 0;
  color: transparent;
  background-image: url('../assets/images/brand/lpl-logo-white.svg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.lpl-footer__desc {
  font-size: 12px;
  line-height: 1.7;
  max-width: 220px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
}

.lpl-footer__col h4 {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.25);
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.lpl-footer__col ul {
  list-style: none;
}

.lpl-footer__col li {
  margin-bottom: 0.4rem;
}

.lpl-footer__col a {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}

.lpl-footer__col a:hover {
  color: var(--lpl-orange);
}

.lpl-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 2rem;
  padding-top: 1.5rem;
  grid-column: span 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.lpl-footer__copy {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.15);
}

.lpl-footer__social {
  display: flex;
  gap: 0.6rem;
}

.lpl-footer__social a {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: rgba(255,255,255,0.28);
  font-weight: 700;
  transition: var(--transition);
}

.lpl-footer__social a:hover {
  border-color: var(--lpl-orange);
  color: var(--lpl-orange);
}

/* ── CLIENTES STRIP ── */
.clients-strip {
  background: var(--lpl-black);
  padding: 16px 5%;
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
}

.clients-strip__label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lpl-gray);
  white-space: nowrap;
  font-weight: 500;
}

.clients-strip__logos {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex: 1;
  overflow: hidden;
  flex-wrap: wrap;
}

.clients-strip__logos span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  transition: color 0.3s;
}

.clients-strip__logos span:hover {
  color: rgba(255,255,255,0.7);
}

/* ── UTILIDADES ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.text-orange { color: var(--lpl-orange); }
.text-magenta { color: var(--lpl-magenta); }
.bg-black    { background: var(--lpl-black); }
.bg-cream    { background: var(--lpl-cream); }
.bg-white    { background: var(--lpl-white); }
.bg-orange   { background: var(--lpl-orange); }

/* ── RESPONSIVE GLOBAL ── */
@media (max-width: 1100px) {
  .lpl-nav__links { gap: 1.2rem; }
  .lpl-footer {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .lpl-footer__bottom { grid-column: span 2; }
  .page-hero { grid-template-columns: 1fr; gap: 34px; }
  .content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 767px) {
  .lpl-nav__logo { width: 118px; height: 42px; flex-basis: 118px; }
  .lpl-nav__links,
  .lpl-nav__cta { display: none; }
  .lpl-nav__hamburger { display: flex; }

  .clients-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.2rem 4%;
  }

  .lpl-footer {
    grid-template-columns: 1fr;
    padding: 10% 4%;
    gap: 2rem;
  }

  .lpl-footer__bottom {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
  }

  .breadcrumb { padding: 1rem 4%; }
  .page-hero { min-height: auto; padding: 90px 5% 60px; }
  .page-hero h1 { font-size: clamp(54px, 20vw, 78px); }
  .page-hero.has-page-art::after { width: 68vw; height: 52%; opacity: .07; right: -18%; }
  .page-section, .page-cta { padding-left: 5%; padding-right: 5%; }
  .page-section__head, .content-grid, .simple-form { grid-template-columns: 1fr; }
  .service-summary, .case-grid, .project-facts, .contact-facts { grid-template-columns: 1fr; }
  .video-showcase { grid-template-columns: 1fr; max-width: 360px; }
  .legal-layout, .ethics-values { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .consent-banner { grid-template-columns: 1fr; right: 10px; bottom: 10px; left: 10px; padding: 20px; }
  .consent-actions { display: grid; grid-template-columns: 1fr; }
  .service-summary__label { position: static; }
  .simple-form label:last-of-type { grid-column: auto; }
  .detail-breadcrumb { padding: 20px 5% 0; }
  .detail-navigation { grid-template-columns: 1fr 1fr; padding: 28px 5%; }
  .detail-navigation__all { grid-column: 1 / -1; grid-row: 1; justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
