/* ============================================================
   NEW LIFE EUROPE — Design System v2
   Warm editorial direction. Flex-only layouts (Elementor-safe).
   Fraunces (display) + Montserrat (structural UI) + Inter (body)
   ============================================================ */

/* --- Brand tokens --- */
:root {
  --blue:        #1E20A5;
  --blue-deep:   #12134F;
  --blue-light:  #ECEDFA;
  --green:       #4F8C2A;
  --green-bright:#7BC64A;
  --green-light: #EDF7E4;
  --magenta:     #C7287A;
  --magenta-light:#FBE8F1;
  --amber:       #B8842E;
  --amber-light: #FAF0DF;

  --ground:      #FAF9F5;
  --surface:     #FFFFFF;
  --sunk:        #F1EDE2;
  --ink:         #17172E;
  --ink-mid:     #4B4B68;
  --ink-soft:    #83839C;
  --border:      #E5E1D3;
  --border-dark: rgba(255,255,255,0.14);

  --shadow-sm: 0 2px 10px rgba(23,23,46,0.06);
  --shadow-md: 0 10px 30px rgba(23,23,46,0.10);
  --shadow-lg: 0 20px 55px rgba(23,23,46,0.16);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 100px;
  --nav-h: 76px;
  --ease: all 0.25s cubic-bezier(.4,0,.2,1);

  --display: 'Fraunces', ui-serif, Georgia, serif;
  --struct:  'Montserrat', sans-serif;
  --body:    'Inter', system-ui, sans-serif;
}

/* --- Reset (scoped, does not fight wp-admin) --- */
.nle-page, .nle-page *, .nle-page *::before, .nle-page *::after { box-sizing: border-box; }
.nle-page { font-family: var(--body); color: var(--ink-mid); background: var(--ground); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.nle-page img { max-width: 100%; height: auto; display: block; }
.nle-page a { color: inherit; text-decoration: none; }
.nle-page ul, .nle-page ol { list-style: none; margin:0; padding:0; }
.nle-page button { font-family: inherit; cursor: pointer; border: none; background: none; }
.nle-page svg { display: block; }

@media (prefers-reduced-motion: reduce) {
  .nle-page *, .nle-page *::before, .nle-page *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* --- Typography --- */
.nle-page h1, .nle-page h2, .nle-page h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.16;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
}
.nle-page h4, .nle-page h5 { font-family: var(--struct); font-weight: 700; color: var(--ink); line-height: 1.3; margin:0; }
.nle-page h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
.nle-page h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.nle-page h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 500; }
.nle-page h4 { font-size: 1.05rem; }
.nle-page p  { color: var(--ink-mid); margin:0; }
.nle-page em { font-style: italic; color: var(--green); font-family: var(--display); }
.nle-page strong { color: var(--ink); font-weight: 600; }

.nle-page .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--struct); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 16px;
}
.nle-page .eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--green-bright); border-radius: 2px; }

.nle-page .lead { font-size: 1.15rem; color: var(--ink-mid); line-height: 1.75; max-width: 42rem; }
.nle-page .prose { max-width: 42rem; display: flex; flex-direction: column; gap: 1.1rem; }
.nle-page .prose p { font-size: 1.02rem; line-height: 1.8; }
.nle-page .prose h3 { margin-top: 0.75rem; }

/* --- Layout --- */
.nle-page .container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; width: 100%; }
.nle-page .text-center { text-align: center; }
.nle-page .section { padding: 6rem 0; }
.nle-page .section--sunk { background: var(--sunk); }
.nle-page .section--dark {
  background: linear-gradient(150deg, var(--blue-deep) 0%, var(--blue) 65%, #2a2cc4 100%);
  position: relative;
}
.nle-page .section--dark::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 78% 20%, rgba(123,198,74,0.12) 0%, transparent 55%), radial-gradient(circle at 15% 85%, rgba(199,40,122,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.nle-page .section--dark > * { position: relative; z-index: 1; }
.nle-page .section-head { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 3.25rem; max-width: 46rem; }
.nle-page .section-head.text-center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }
.nle-page .section-head p { margin-top: 0.5rem; }

/* --- Buttons --- */
.nle-page .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 32px; border-radius: var(--r-pill);
  font-family: var(--struct); font-weight: 700; font-size: 14.5px;
  letter-spacing: 0.01em; transition: var(--ease); white-space: nowrap; border: 2px solid transparent;
}
.nle-page .btn--primary { background: var(--green); color: #fff; }
.nle-page .btn--primary:hover { background: #3f7420; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(79,140,42,0.32); }
.nle-page .btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.nle-page .btn--outline:hover { background: var(--blue); color: #fff; }
.nle-page .btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.nle-page .btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.nle-page .btn--lg { padding: 18px 40px; font-size: 15.5px; }
.nle-page .btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff;
  padding: 15px 32px; border-radius: var(--r-pill); font-family: var(--struct); font-weight: 700; font-size: 14.5px; transition: var(--ease);
}
.nle-page .btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37,211,102,0.32); }
.nle-page .btn-whatsapp svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

/* --- Line icons --- */
.nle-page .icon { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.nle-page .icon-sm { width: 18px; height: 18px; }

/* --- Hero --- */
.nle-page .hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.nle-page .hero__media { position: absolute; inset: 0; }
.nle-page .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.nle-page .hero__scrim { position: absolute; inset: 0; background: linear-gradient(100deg, var(--blue-deep) 0%, rgba(18,19,79,0.88) 35%, rgba(18,19,79,0.55) 65%, rgba(18,19,79,0.25) 100%); }
.nle-page .hero__content { position: relative; z-index: 1; max-width: 760px; padding: 4.5rem 0; display: flex; flex-direction: column; }
.nle-page .hero__pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(123,198,74,0.16); border: 1px solid rgba(123,198,74,0.32); color: var(--green-bright); font-family: var(--struct); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; padding: 7px 18px; border-radius: var(--r-pill); margin-bottom: 1.75rem; width: fit-content; }
.nle-page .hero h1 { color: #fff; margin-bottom: 1.4rem; }
.nle-page .hero .lead { color: rgba(255,255,255,0.86); margin-bottom: 2.5rem; }
.nle-page .hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.nle-page .hero__trust { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.nle-page .hero__trust-item { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: rgba(255,255,255,0.68); }
.nle-page .hero__trust-item .tick { color: var(--green-bright); }
.nle-page .hero__trust-item a { color: rgba(255,255,255,0.75); text-decoration: underline; text-underline-offset: 3px; }

/* --- Cards --- */
.nle-page .card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 2rem; box-shadow: var(--shadow-sm); }
.nle-page .card--flat { box-shadow: none; }

/* --- Audience doors --- */
.nle-page .door-row { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.nle-page .door-card { position: relative; flex: 1 1 270px; display: flex; flex-direction: column; background: var(--surface); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--ease); box-shadow: var(--shadow-sm); }
.nle-page .door-card__arrow a::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.nle-page .place-card { position: relative; }
.nle-page .place-card__body a::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.nle-page .door-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.nle-page .door-card__media { position: relative; height: 170px; overflow: hidden; }
.nle-page .door-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.nle-page .door-card:hover .door-card__media img { transform: scale(1.06); }
.nle-page .door-card__icon { position: absolute; left: 18px; bottom: -22px; width: 48px; height: 48px; border-radius: var(--r-sm); background: var(--surface); box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; color: var(--blue); }
.nle-page .door-card__body { padding: 2rem 1.75rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.nle-page .door-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1rem; }
.nle-page .tag { font-family: var(--struct); font-size: 10.5px; font-weight: 700; padding: 4px 11px; border-radius: var(--r-pill); background: var(--blue-light); color: var(--blue); }
.nle-page .tag--green { background: var(--green-light); color: var(--green); }
.nle-page .tag--magenta { background: var(--magenta-light); color: var(--magenta); }
.nle-page .door-card h3 { margin-bottom: 0.6rem; font-size: 1.2rem; }
.nle-page .door-card p { font-size: 14px; margin-bottom: 1.25rem; flex: 1; }
.nle-page .door-card__arrow { display: flex; align-items: center; gap: 6px; font-family: var(--struct); font-size: 12.5px; font-weight: 700; color: var(--blue); transition: var(--ease); }
.nle-page .door-card:hover .door-card__arrow { color: var(--green); gap: 10px; }

/* --- Destination / place cards --- */
.nle-page .place-row { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.nle-page .place-card { flex: 1 1 230px; position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 230px; display: flex; align-items: flex-end; transition: var(--ease); }
.nle-page .place-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.nle-page .place-card__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18,19,79,0.86) 0%, rgba(18,19,79,0.25) 55%, rgba(18,19,79,0.05) 100%); }
.nle-page .place-card:hover img { transform: scale(1.07); }
.nle-page .place-card:hover { box-shadow: var(--shadow-lg); }
.nle-page .place-card__body { position: relative; z-index: 1; padding: 1.5rem; }
.nle-page .place-card h4 { color: #fff; margin-bottom: 3px; font-size: 1.1rem; font-family: var(--display); font-weight: 600; }
.nle-page .place-sub { font-size: 12px; color: rgba(255,255,255,0.75); margin-bottom: 10px; }
.nle-page .place-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.nle-page .place-tag { font-size: 10px; font-weight: 600; font-family: var(--struct); background: rgba(255,255,255,0.18); color: #fff; padding: 3px 10px; border-radius: var(--r-pill); }

/* --- Split / panel --- */
.nle-page .split { display: flex; flex-wrap: wrap; gap: 3.5rem; align-items: center; }
.nle-page .split > * { flex: 1 1 320px; }
.nle-page .panel-dark { background: linear-gradient(155deg, var(--blue-deep), var(--blue)); border-radius: var(--r-lg); padding: 2.5rem; color: #fff; position: relative; overflow: hidden; }
.nle-page .panel-dark h3 { color: #fff; margin-bottom: 1rem; font-size: 1.3rem; }
.nle-page .panel-dark > p { color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.75; }
.nle-page .reloc-list { display: flex; flex-direction: column; gap: 10px; margin-top: 1.75rem; }
.nle-page .reloc-item { display: flex; align-items: flex-start; gap: 13px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--r-md); padding: 13px 15px; }
.nle-page .reloc-item .icon { color: var(--green-bright); margin-top: 2px; }
.nle-page .reloc-item .detail strong { display: block; font-size: 13px; color: #fff; }
.nle-page .reloc-item .detail span { font-size: 12px; color: rgba(255,255,255,0.65); }

/* --- Stats --- */
.nle-page .stat-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }
.nle-page .stat { flex: 1 1 130px; background: var(--sunk); border-radius: var(--r-md); padding: 1.4rem 1.1rem; text-align: center; }
.nle-page .stat-num { font-family: var(--display); font-size: 2.2rem; font-weight: 600; color: var(--blue); line-height: 1; font-variant-numeric: tabular-nums; }
.nle-page .stat-lbl { font-family: var(--struct); font-size: 11px; font-weight: 600; color: var(--ink-soft); margin-top: 7px; line-height: 1.4; text-transform: uppercase; letter-spacing: 0.03em; }

/* --- Steps --- */
.nle-page .step-row { display: flex; flex-wrap: wrap; gap: 2.5rem; }
.nle-page .step { flex: 1 1 220px; text-align: center; }
.nle-page .step-circle { width: 58px; height: 58px; border-radius: 50%; background: var(--blue); color: #fff; font-family: var(--display); font-size: 1.35rem; font-weight: 600; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.nle-page .step h4 { margin-bottom: 0.6rem; }
.nle-page .step p { font-size: 14px; }

/* --- CTA band --- */
.nle-page .cta-band { padding: 6rem 0; text-align: center; }
.nle-page .cta-band h2 { color: #fff; margin-bottom: 1rem; }
.nle-page .cta-band p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 2.5rem; }
.nle-page .cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Disclaimer strip --- */
.nle-page .disclaimer-strip { padding: 2.5rem 0; }
.nle-page .disclaimer-strip .card { max-width: 780px; margin: 0 auto; text-align: center; }
.nle-page .disclaimer-strip p { font-size: 12.5px; color: var(--ink-soft); }
.nle-page .disclaimer-strip a { color: var(--blue); }

/* --- Responsive --- */
@media (max-width: 900px) {
  .nle-page .split { gap: 2.5rem; }
  .nle-page .hero__content { max-width: 100%; }
}
@media (max-width: 640px) {
  .nle-page .hero__content { padding: 3rem 0; }
  .nle-page .hero__actions { flex-direction: column; }
  .nle-page .hero__actions .btn { width: 100%; }
  .nle-page .hero__trust { gap: 1rem; }
  .nle-page .section { padding: 3.75rem 0; }
  .nle-page .cta-band { padding: 4rem 0; }
  .nle-page .cta-band__actions { flex-direction: column; align-items: center; }
  .nle-page .cta-band__actions .btn, .nle-page .cta-band__actions .btn-whatsapp { width: 100%; max-width: 320px; }
  .nle-page .split { flex-direction: column; }
}
