/* ============================================================
   Leader Absolu En France — Premium Editorial Stylesheet
   Design: Observatoire éditorial indépendant
   Palette: Off-white (#f7f5f0), Navy (#1a2332), Gold (#b8975a),
            Dark graphite (#1c1c1c), Warm grey (#6b6b6b)
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f7f5f0;
  color: #1c1c1c;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #1a2332; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #b8975a; }
ul { list-style: none; }

.la-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.la-section {
  padding: 80px 0;
}

.la-section--dark {
  background: #1a2332;
  color: #f7f5f0;
}

.la-section--gold {
  background: linear-gradient(135deg, #b8975a 0%, #a07d40 100%);
  color: #fff;
}

.la-section--gold .section-title--gold-inverse {
  color: #1a2332;
}

.section-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b8975a;
  margin-bottom: 16px;
}

.section-label--light { color: #d4b97a; }
.section-label--white { color: rgba(255,255,255,0.7); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a2332;
}

.section-title--light { color: #f7f5f0; }
.section-title--gold { color: #b8975a; }

.section-desc {
  font-size: 1.1rem;
  color: #6b6b6b;
  max-width: 720px;
  line-height: 1.8;
}

.section-desc--light { color: rgba(247,245,240,0.8); }

/* --- Header --- */
.la-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 35, 50, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 151, 90, 0.15);
  transition: background 0.3s ease;
}

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

.la-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.la-header__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #b8975a 0%, #a07d40 100%);
  color: #1a2332;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  border-radius: 4px;
}

.la-header__logo-text { line-height: 1.2; }
.la-header__logo-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #f7f5f0;
  display: block;
}
.la-header__logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  color: #b8975a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.la-header__nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.la-header__link {
  color: rgba(247,245,240,0.8);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
}

.la-header__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  width: auto;
  height: 2px;
  background: #b8975a;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.la-header__link:hover {
  color: #f7f5f0;
  background: rgba(184,151,90,0.1);
}

.la-header__link:hover::after {
  transform: scaleX(1);
}

.la-header__link--active {
  color: #f7f5f0;
  background: rgba(184,151,90,0.12);
  border-left: 3px solid #b8975a;
}

.la-header__link--active::after {
  transform: scaleX(1);
  background: #b8975a;
}

.la-header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
  z-index: 1002;
  position: relative;
}

.la-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f7f5f0;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.la-header__toggle--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.la-header__toggle--active span:nth-child(2) {
  opacity: 0;
}

.la-header__toggle--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu backdrop */
.la-nav-backdrop {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26,35,50,0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.la-nav-backdrop--active {
  display: block;
  opacity: 1;
}

.la-header__spacer { height: 74px; }

/* --- Hero Section --- */
.la-hero {
  background: linear-gradient(165deg, #1a2332 0%, #141c2a 40%, #1f2a3f 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.la-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,151,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.la-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.la-hero__badge {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b8975a;
  background: rgba(184,151,90,0.12);
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  border: 1px solid rgba(184,151,90,0.2);
}

.la-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #f7f5f0;
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 20px;
}

.la-hero__title em {
  font-style: italic;
  color: #b8975a;
}

.la-hero__desc {
  font-size: 1.15rem;
  color: rgba(247,245,240,0.7);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.la-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Editorial Approach Block --- */
.la-editorial-approach {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid rgba(26,35,50,0.06);
}

.la-editorial-approach__block {
  background: linear-gradient(135deg, rgba(184,151,90,0.04) 0%, rgba(184,151,90,0.02) 100%);
  border: 1px solid rgba(184,151,90,0.12);
  border-radius: 8px;
  padding: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.la-editorial-approach__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a2332;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.la-editorial-approach__text {
  font-size: 0.95rem;
  color: #6b6b6b;
  line-height: 1.8;
}

/* --- Buttons --- */
.la-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.la-btn--primary {
  background: #b8975a;
  color: #1a2332;
}

.la-btn--primary:hover {
  background: #c9a76a;
  color: #1a2332;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(184,151,90,0.3);
}

.la-btn--secondary {
  background: transparent;
  color: #f7f5f0;
  border: 1.5px solid rgba(247,245,240,0.25);
}

.la-btn--secondary:hover {
  border-color: #b8975a;
  color: #b8975a;
}

.la-btn--gold-outline {
  background: transparent;
  color: #b8975a;
  border: 1.5px solid #b8975a;
}

.la-btn--gold-outline:hover {
  background: #b8975a;
  color: #1a2332;
}

.la-btn--sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

/* --- Trust Indicators --- */
.la-trust {
  padding: 60px 0;
  background: #fff;
  border-bottom: 1px solid rgba(26,35,50,0.06);
}

.la-trust .la-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.la-trust__item {
  text-align: center;
  padding: 20px;
}

.la-trust__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.la-trust__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a2332;
  margin-bottom: 6px;
}

.la-trust__desc {
  font-size: 0.85rem;
  color: #6b6b6b;
  line-height: 1.6;
}

/* --- Editorial Intro --- */
.la-editorial {
  background: #fff;
}

.la-editorial__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.la-editorial__content { max-width: 540px; }
.la-editorial__image img { border-radius: 8px; }
.la-editorial__image-img { width: 100%; border-radius: 8px; }

/* --- Evaluation Criteria --- */
.la-criteria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.la-criteria__card {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid rgba(26,35,50,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.la-criteria__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,35,50,0.08);
}

.la-criteria__card-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.la-criteria__card-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a2332;
  margin-bottom: 8px;
}

.la-criteria__card-desc {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.7;
}

/* --- Platform Cards --- */
.la-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.la-platform {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(26,35,50,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.la-platform:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,35,50,0.10);
}

.la-platform__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(26,35,50,0.06);
  background-color: darkgoldenrod;
}

.la-platform__body {
  padding: 28px;
}

.la-platform__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a2332;
  margin-bottom: 8px;
}

.la-platform__subtitle {
  font-size: 0.85rem;
  color: #b8975a;
  font-weight: 500;
  margin-bottom: 16px;
}

.la-platform__summary {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 16px;
}

.la-platform__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.la-platform__detail {
  font-size: 0.82rem;
  color: #4a4a4a;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.la-platform__detail::before {
  content: '—';
  color: #b8975a;
  font-weight: 700;
}

.la-platform__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.la-platform__highlight {
  background: rgba(184,151,90,0.1);
  color: #b8975a;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

/* --- Platform Compliance Block --- */
.la-platform__compliance {
  background: rgba(184,151,90,0.05);
  border-top: 1px solid rgba(184,151,90,0.15);
  border-bottom: 1px solid rgba(184,151,90,0.15);
  padding: 12px 20px;
  text-align: center;
  margin: 0;
}

.la-platform__compliance-text {
  font-size: 0.75rem;
  color: #6b6b6b;
  font-weight: 500;
  line-height: 1.6;
}

/* --- Platform Editorial Paragraph --- */
.la-platform__editorial {
  font-size: 0.85rem;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(26,35,50,0.06);
  border-bottom: 1px solid rgba(26,35,50,0.06);
  font-style: italic;
}

/* --- Platform Criteria Section --- */
.la-platform__criteria {
  background: rgba(184,151,90,0.04);
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  border: 1px solid rgba(184,151,90,0.1);
}

.la-platform__criteria-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1a2332;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.la-platform__criteria-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.la-platform__criteria-list li {
  font-size: 0.8rem;
  color: #4a4a4a;
}

/* --- Detailed Criteria --- */
.la-detailed-criteria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.la-detailed-criteria__item {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(26,35,50,0.06);
  border-left: 3px solid #b8975a;
}

.la-detailed-criteria__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1a2332;
  margin-bottom: 12px;
}

.la-detailed-criteria__desc {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 12px;
}

.la-detailed-criteria__list {
  font-size: 0.85rem;
  color: #4a4a4a;
  list-style: none;
  padding: 0;
  margin: 0;
}

.la-detailed-criteria__list li {
  padding: 4px 0 4px 16px;
  position: relative;
}

.la-detailed-criteria__list li::before {
  content: '•';
  color: #b8975a;
  font-weight: 700;
  margin-right: 8px;
  position: absolute;
  left: 0;
}

/* --- Editorial Process --- */
.la-editorial-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.la-editorial-process__step {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(26,35,50,0.06);
  position: relative;
}

.la-editorial-process__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #b8975a;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  margin-bottom: 12px;
}

.la-editorial-process__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a2332;
  margin-bottom: 10px;
}

.la-editorial-process__desc {
  font-size: 0.85rem;
  color: #6b6b6b;
  line-height: 1.6;
}

/* --- Transition Section --- */
.la-transition {
  text-align: center;
  padding: 60px 0;
}

.la-transition__quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: #f7f5f0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* --- Comparison Process --- */
.la-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.la-process__step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.la-process__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #b8975a;
  color: #1a2332;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.la-process__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #f7f5f0;
  margin-bottom: 8px;
}

.la-process__desc {
  font-size: 0.85rem;
  color: rgba(247,245,240,0.7);
  line-height: 1.6;
}

/* --- Trends --- */
.la-trends {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.la-trend {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  border-left: 3px solid #b8975a;
}

.la-trend__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a2332;
  margin-bottom: 8px;
}

.la-trend__desc {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.7;
}

/* --- Methodology --- */
.la-methodology {
  max-width: 800px;
  margin: 0 auto;
}

.la-methodology__item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(247,245,240,0.1);
}

.la-methodology__item:last-child { border-bottom: none; }

.la-methodology__year {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: #b8975a;
  min-width: 80px;
}

.la-methodology__text {
  font-size: 0.9rem;
  color: rgba(247,245,240,0.75);
  line-height: 1.7;
}

/* --- FAQ --- */
.la-faq {
  max-width: 800px;
  margin: 48px auto 0;
}

.la-faq__item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 12px;
  border: 1px solid rgba(26,35,50,0.06);
  overflow: hidden;
}

.la-faq__question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a2332;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.la-faq__question:hover { background: rgba(184,151,90,0.04); }

.la-faq__question::after {
  content: '+';
  font-size: 1.3rem;
  color: #b8975a;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.la-faq__question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.la-faq__answer {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.7;
  display: none;
}

.la-faq__answer--open { display: block; }

/* --- Approach Sub-criteria --- */
.la-approach-sub {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.la-approach-sub__card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(26,35,50,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.la-approach-sub__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,35,50,0.08);
}

.la-approach-sub__card-icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: block;
}

.la-approach-sub__card-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a2332;
  margin-bottom: 6px;
}

.la-approach-sub__card-desc {
  font-size: 0.85rem;
  color: #6b6b6b;
  line-height: 1.6;
}

/* --- How to Read Guide Steps --- */
.la-read-steps {
  max-width: 800px;
  margin: 36px auto 0;
}

.la-read-steps__item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26,35,50,0.06);
  align-items: flex-start;
}

.la-read-steps__item:last-child { border-bottom: none; }

.la-read-steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #b8975a;
  color: #1a2332;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  margin-top: 2px;
}

.la-read-steps__text {
  font-size: 0.95rem;
  color: #6b6b6b;
  line-height: 1.7;
}

.la-read-steps__text strong {
  color: #1a2332;
}

/* --- Visitor Reviews (guide-focused) --- */
.la-visitor-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.la-visitor-review {
  background: #fff;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(26,35,50,0.06);
  transition: transform 0.3s ease;
}

.la-visitor-review:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,35,50,0.08);
}

.la-visitor-review__stars {
  color: #b8975a;
  font-size: 0.85rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.la-visitor-review__text {
  font-size: 0.88rem;
  color: #6b6b6b;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 14px;
}

.la-visitor-review__author {
  font-size: 0.8rem;
  color: #1a2332;
  font-weight: 600;
}

.la-visitor-review__source {
  font-size: 0.75rem;
  color: #b8975a;
  font-weight: 500;
}

/* --- Utility classes (no inline CSS) --- */
.la-text-center { text-align: center; }
.la-text-left { text-align: left; }
.la-mx-auto { margin-left: auto; margin-right: auto; }
.la-max-w-800 { max-width: 800px; }
.la-max-w-720 { max-width: 720px; }
.la-max-w-full { max-width: 100%; }
.la-mb-16 { margin-bottom: 16px; }
.la-mb-24 { margin-bottom: 24px; }
.la-mb-32 { margin-bottom: 32px; }
.la-mb-40 { margin-bottom: 40px; }
.la-mb-48 { margin-bottom: 48px; }
.la-flex { display: flex; }
.la-flex-wrap { flex-wrap: wrap; }
.la-gap-16 { gap: 16px; }
.la-justify-center { justify-content: center; }
.la-block { display: block; }

/* --- About / Summary --- */
.la-summary {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.la-summary__text {
  font-size: 1.15rem;
  color: rgba(26,35,50,0.8);
  margin-bottom: 16px;
  line-height: 1.8;
}

.la-summary__meta {
  font-size: 0.95rem;
  color: rgba(26,35,50,0.7);
}

/* --- Footer --- */
.la-footer {
  background: #1a2332;
  color: rgba(247,245,240,0.7);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(184,151,90,0.1);
}

.la-footer__leaders {
  text-align: center;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(184,151,90,0.1);
}

.la-footer__leaders-title {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(247,245,240,0.45);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.la-footer__leaders-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 32px;
}

.la-footer__leaders-logos a {
  display: inline-flex;
  align-items: center;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

.la-footer__leaders-logos a:hover {
  opacity: 1;
}

.la-footer__leaders-logos img {
  max-height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.la-footer__leaders-logos a:hover img {
  filter: none;
}

.la-footer__legal {
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(247,245,240,0.5);
}

.la-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 24px;
}

.la-footer__nav a {
  color: rgba(247,245,240,0.6);
  font-size: 0.82rem;
  transition: color 0.3s ease;
}

.la-footer__nav a:hover { color: #b8975a; }

.la-footer__copy {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(247,245,240,0.35);
}

/* --- Internal Pages --- */
.la-page {
  padding: 60px 0 80px;
  background: #fff;
}

.la-page__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a2332;
  margin-bottom: 32px;
}

.la-page__content {
  max-width: 800px;
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.9;
}

.la-page__content h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #1a2332;
  margin-top: 40px;
  margin-bottom: 16px;
}

.la-page__content h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #1a2332;
  margin-top: 28px;
  margin-bottom: 12px;
}

.la-page__content p {
  margin-bottom: 16px;
}

.la-page__content ul, .la-page__content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.la-page__content li {
  margin-bottom: 8px;
}

/* --- Contact Form --- */
.la-contact-form {
  max-width: 560px;
}

.la-contact-form__group {
  margin-bottom: 20px;
}

.la-contact-form__label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a2332;
  margin-bottom: 6px;
}

.la-contact-form__input,
.la-contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(26,35,50,0.12);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #1c1c1c;
  background: #f7f5f0;
  transition: border-color 0.3s ease;
}

.la-contact-form__input:focus,
.la-contact-form__textarea:focus {
  outline: none;
  border-color: #b8975a;
}

.la-contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}

/* --- Popup 18+ --- */
.la-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,35,50,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.la-popup--active {
  opacity: 1;
  visibility: visible;
}

.la-popup__inner {
  background: #fff;
  padding: 48px;
  border-radius: 12px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.la-popup--active .la-popup__inner {
  transform: translateY(0);
}

.la-popup__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #1a2332;
  margin-bottom: 8px;
}

.la-popup__subtitle {
  font-size: 0.9rem;
  color: #6b6b6b;
  margin-bottom: 28px;
  line-height: 1.6;
}

.la-popup__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* --- Cookie Banner --- */
.la-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a2332;
  color: rgba(247,245,240,0.8);
  padding: 20px 24px;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.la-cookie--active {
  transform: translateY(0);
}

.la-cookie__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.la-cookie__text {
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
  min-width: 280px;
}

.la-cookie__text a {
  color: #b8975a;
  text-decoration: underline;
}

.la-cookie__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .la-hero__title { font-size: 2.8rem; }
  .section-title { font-size: 2rem; }
  .la-editorial__grid { grid-template-columns: 1fr; gap: 32px; }
  .la-editorial__content { max-width: 100%; }
}

@media (max-width: 768px) {
  .la-section { padding: 56px 0; }
  .la-hero { padding: 80px 0 64px; }
  .la-hero__title { font-size: 2.2rem; }
  .la-hero__desc { font-size: 1rem; }
  .la-editorial-approach { padding: 32px 0; }
  .la-editorial-approach__block { padding: 24px; }
  .la-editorial-approach__text { font-size: 0.9rem; }
  .section-title { font-size: 1.7rem; }
  .la-platforms { grid-template-columns: 1fr; }
  .la-criteria { grid-template-columns: 1fr; }

  .la-header__nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: #1a2332;
    flex-direction: column;
    padding: 24px 24px 32px;
    gap: 8px;
    z-index: 1001;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(184,151,90,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    will-change: transform;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.35s;
  }

  .la-header__nav--open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s;
  }

  .la-header__nav .la-header__link {
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
    transition: background 0.2s ease, color 0.2s ease;
    letter-spacing: 0;
  }

  .la-header__nav .la-header__link:hover {
    background: rgba(184,151,90,0.12);
    color: #b8975a;
  }

  .la-header__nav .la-header__link::after { display: none; }

  .la-header__nav .la-header__link--active {
    background: rgba(184,151,90,0.12);
    border-left: 3px solid #b8975a;
    color: #b8975a;
  }

  .la-header__toggle { display: flex; }

  .la-nav-backdrop--active { display: block; }

  .la-popup__inner { padding: 32px 24px; }
  .la-popup__title { font-size: 1.4rem; }

  .la-cookie__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .la-hero__title { font-size: 1.8rem; }
  .la-hero__actions { flex-direction: column; }
  .la-btn { width: 100%; justify-content: center; }
  .la-editorial-approach__block { padding: 20px; }
  .la-editorial-approach__title { font-size: 1rem; }
  .la-editorial-approach__text { font-size: 0.85rem; }
}
