/*
Theme Name:  Navega La Paz
Theme URI:   https://navegalapaz.com
Description: Tema hijo de Hello Elementor para Navega La Paz
Author:      Navega La Paz
Template:    hello-elementor
Version:     1.0.0
Text Domain: navega-la-paz
*/

/* ============================================================
   VARIABLES Y RESET BASE
   ============================================================ */
:root {
  --color-sand:  #F5F2ED;
  --color-navy:  #0B192C;
  --color-ocean: #1A365D;
  --color-gold:  #D4AF37;

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", system-ui, -apple-system, sans-serif;
}

/* ============================================================
   TIPOGRAFÍA GLOBAL
   ============================================================ */
body {
  font-family: var(--font-sans);
  background-color: var(--color-sand);
  color: var(--color-navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.1;
}
h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 400;
  line-height: 1.3;
}
h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
}
h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
p {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================================
   UTILIDADES COMUNES
   ============================================================ */
.nlp-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.nlp-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nlp-label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background-color: var(--color-gold);
  flex-shrink: 0;
}

/* Botón sólido */
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .4s, color .4s, border-color .4s;
  text-decoration: none;
}
.btn-solid--gold {
  background-color: var(--color-gold);
  color: var(--color-navy);
}
.btn-solid--gold:hover {
  background-color: #fff;
  color: var(--color-navy);
}
.btn-solid--navy {
  background-color: var(--color-navy);
  color: #fff;
}
.btn-solid--navy:hover {
  background-color: var(--color-ocean);
  color: #fff;
}

/* Botón outline */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--color-navy);
  background: transparent;
  cursor: pointer;
  transition: background-color .3s, color .3s, border-color .3s;
  text-decoration: none;
  color: var(--color-navy);
  width: 100%;
  justify-content: center;
}
.btn-outline:hover {
  border-color: var(--color-gold);
  background-color: var(--color-gold);
  color: var(--color-navy);
}

/* Link subrayado */
.link-underline {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
  text-decoration: none;
}

/* ============================================================
   SCROLLBAR ELEGANTE
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-sand); }
::-webkit-scrollbar-thumb { background: var(--color-ocean); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-navy); }

/* ============================================================
   HERO SLIDER (front-page)
   ============================================================ */
.nlp-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: var(--color-navy);
}
.nlp-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}
.nlp-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.nlp-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease-in-out;
}
.nlp-hero__slide.is-active .nlp-hero__img {
  transform: scale(1.04);
}
.nlp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,25,44,.3) 0%, rgba(11,25,44,.4) 50%, rgba(11,25,44,.8) 100%);
}
.nlp-hero__content {
  position: absolute;
  inset: 0;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 1rem 0;
}
.nlp-hero__text {
  max-width: 48rem;
}
.nlp-hero__subtitle {
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.nlp-hero__subtitle::before {
  content: '';
  display: inline-block;
  width: 3rem;
  height: 1px;
  background-color: var(--color-gold);
}
.nlp-hero__title {
  color: #fff;
  margin-bottom: 2rem;
}
.nlp-hero__desc {
  color: rgba(245,242,237,.9);
  max-width: 36rem;
  margin-bottom: 3rem;
}
.nlp-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nlp-hero__link-plan {
  color: #fff;
  border-color: #fff;
}
.nlp-hero__link-plan:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* Controles del slider */
.nlp-hero__controls {
  position: absolute;
  bottom: 3rem;
  right: 1rem;
  z-index: 20;
  display: flex;
  gap: 1rem;
}
@media (min-width: 768px) {
  .nlp-hero__controls { right: 3rem; }
}
.nlp-hero__btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .3s, color .3s, border-color .3s;
  backdrop-filter: blur(4px);
}
.nlp-hero__btn:hover {
  background-color: #fff;
  color: var(--color-navy);
  border-color: #fff;
}
.nlp-hero__btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Indicadores del slider */
.nlp-hero__indicators {
  position: absolute;
  bottom: 4rem;
  left: 1rem;
  z-index: 20;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.nlp-hero__dot {
  height: 3px;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: width .5s, background-color .5s;
  width: 1.5rem;
  padding: 0;
}
.nlp-hero__dot.is-active {
  width: 3rem;
  background-color: var(--color-gold);
}

/* ============================================================
   SECCIÓN INTRO (front-page)
   ============================================================ */
.nlp-intro {
  background-color: var(--color-sand);
  padding: 8rem 1rem;
  position: relative;
}
.nlp-intro__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .nlp-intro__inner { flex-direction: row; gap: 5rem; }
  .nlp-intro__image-col { width: 41.666%; }
  .nlp-intro__text-col  { width: 58.333%; }
}
.nlp-intro__image-wrap {
  position: relative;
}
.nlp-intro__deco-circle-1 {
  position: absolute;
  top: -2.5rem; left: -2.5rem;
  width: 8rem; height: 8rem;
  border: 1px solid rgba(212,175,55,.4);
  border-radius: 50%;
  display: none;
}
.nlp-intro__deco-circle-2 {
  position: absolute;
  bottom: -2.5rem; right: -2.5rem;
  width: 12rem; height: 12rem;
  border: 1px solid rgba(11,25,44,.1);
  border-radius: 50%;
  display: none;
}
@media (min-width: 768px) {
  .nlp-intro__deco-circle-1,
  .nlp-intro__deco-circle-2 { display: block; }
}
.nlp-intro__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
}
.nlp-intro__title {
  color: var(--color-navy);
  margin-bottom: 2.5rem;
}
.nlp-intro__title em {
  font-style: italic;
  color: var(--color-gold);
}
.nlp-intro__body {
  color: rgba(11,25,44,.7);
  max-width: 36rem;
  margin-bottom: 2rem;
}
.nlp-intro__link {
  color: var(--color-navy);
  border-color: var(--color-navy);
  margin-top: 3rem;
}
.nlp-intro__link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* ============================================================
   FLOTA DESTACADA (front-page)
   ============================================================ */
.nlp-fleet-featured {
  background-color: #fff;
  padding: 8rem 1rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 -20px 40px -20px rgba(0,0,0,.03);
}
.nlp-fleet-featured__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .nlp-fleet-featured__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.nlp-fleet-featured__title { color: var(--color-navy); }
.nlp-fleet-featured__title em { font-style: italic; color: var(--color-gold); }
.nlp-fleet-featured__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .nlp-fleet-featured__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .nlp-fleet-featured__grid { grid-template-columns: repeat(3, 1fr); } }

.nlp-boat-card {
  display: block;
  background-color: rgba(245,242,237,.2);
  border: 1px solid var(--color-sand);
  text-decoration: none;
  transition: border-color .5s, background-color .5s, box-shadow .5s;
}
.nlp-boat-card:hover {
  border-color: rgba(212,175,55,.3);
  background-color: #fff;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.15);
}
.nlp-boat-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.nlp-boat-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.nlp-boat-card:hover .nlp-boat-card__img { transform: scale(1.05); }
.nlp-boat-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background-color: var(--color-navy);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nlp-boat-card__body { padding: 2rem; }
.nlp-boat-card__type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.75rem;
}
.nlp-boat-card__name {
  color: var(--color-navy);
  margin-bottom: 1rem;
  transition: color .3s;
}
.nlp-boat-card:hover .nlp-boat-card__name { color: var(--color-gold); }
.nlp-boat-card__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: rgba(11,25,44,.6);
  margin-bottom: 2rem;
}
.nlp-boat-card__meta-icon { color: var(--color-gold); margin-right: .5rem; }
.nlp-boat-card__price { color: var(--color-navy); font-weight: 600; }
.nlp-boat-card__footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(11,25,44,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-navy);
  transition: color .3s;
}
.nlp-boat-card:hover .nlp-boat-card__footer { color: var(--color-gold); }

/* ============================================================
   SECCIÓN EXPERIENCIAS (front-page + nosotros)
   ============================================================ */
.nlp-experiences {
  background-color: var(--color-navy);
  padding: 8rem 1rem;
  position: relative;
  overflow: hidden;
}
.nlp-experiences__deco {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  opacity: .05;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.nlp-experiences__header {
  text-align: center;
  margin-bottom: 5rem;
}
.nlp-experiences__header h2 { color: #fff; }
.nlp-experiences__header h2 em { font-style: italic; }
.nlp-experiences__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px)  { .nlp-experiences__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .nlp-experiences__grid { grid-template-columns: repeat(4, 1fr); } }

.nlp-exp-card { text-align: center; }
.nlp-exp-card--offset { margin-top: 0; }
@media (min-width: 1024px) { .nlp-exp-card--offset { margin-top: 3rem; } }
.nlp-exp-card__img-wrap {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; margin-bottom: 1.5rem;
}
.nlp-exp-card__img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .8; transition: transform .7s ease, opacity .7s;
}
.nlp-exp-card:hover .nlp-exp-card__img { transform: scale(1.05); opacity: 1; }
.nlp-exp-card__body {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.nlp-exp-card__line {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 2rem; height: 2px;
  background-color: var(--color-gold);
}
.nlp-exp-card__title { color: #fff; margin-bottom: 1rem; }
.nlp-exp-card__desc  { color: rgba(245,242,237,.8); font-size: .875rem; }

/* ============================================================
   HERO INTERIOR (páginas internas)
   ============================================================ */
.nlp-page-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nlp-page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.nlp-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,25,44,.5);
  z-index: 1;
}
.nlp-page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}
.nlp-page-hero__content h1 { color: #fff; margin-bottom: 1.5rem; }
.nlp-page-hero__content p  { color: rgba(245,242,237,.8); max-width: 40rem; margin: 0 auto; }

/* ============================================================
   NOSOTROS — Historia
   ============================================================ */
.nlp-about-story {
  padding: 6rem 1rem;
}
.nlp-about-story__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) { .nlp-about-story__inner { grid-template-columns: repeat(2, 1fr); } }
.nlp-about-story h2 { color: var(--color-navy); margin-bottom: 2rem; }
.nlp-about-story p  { color: rgba(11,25,44,.7); margin-bottom: 1.5rem; }
.nlp-about-story__img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  transform: rotate(-2deg) skewY(2deg);
}

/* ============================================================
   NOSOTROS — Compromiso (grid 3 cols, reutiliza nlp-exp-card)
   ============================================================ */
.nlp-commitment {
  background-color: var(--color-navy);
  padding: 8rem 1rem;
}
.nlp-commitment__header { text-align: center; margin-bottom: 5rem; }
.nlp-commitment__header h2 { color: #fff; }
.nlp-commitment__header h2 em { font-style: italic; }
.nlp-commitment__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .nlp-commitment__grid { grid-template-columns: repeat(3, 1fr); } }
.nlp-commitment__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: 1rem;
}

/* ============================================================
   FLOTA — Header + Filtros
   ============================================================ */
.nlp-fleet-header {
  background-color: var(--color-navy);
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}
.nlp-fleet-header h5 { color: var(--color-gold); margin-bottom: 1rem; }
.nlp-fleet-header h1 { color: #fff; max-width: 48rem; margin: 0 auto; }

.nlp-fleet-filters {
  background-color: #fff;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.nlp-filter-group { display: flex; flex-direction: column; flex: 1; min-width: 180px; }
.nlp-filter-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(11,25,44,.5);
  margin-bottom: .5rem;
}
.nlp-filter-group input,
.nlp-filter-group select {
  padding: 0.75rem 1rem;
  background-color: rgba(245,242,237,.3);
  border: 1px solid rgba(0,0,0,.1);
  color: var(--color-navy);
  font-family: var(--font-sans);
  font-size: .875rem;
  outline: none;
  transition: border-color .3s;
  appearance: none;
}
.nlp-filter-group input:focus,
.nlp-filter-group select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 1px var(--color-gold);
}

.nlp-fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px)  { .nlp-fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .nlp-fleet-grid { grid-template-columns: repeat(3, 1fr); } }

.nlp-fleet-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 5rem 1rem;
  color: rgba(11,25,44,.4);
}
.nlp-fleet-empty h3 { color: rgba(11,25,44,.3); margin-bottom: 1rem; }

/* ============================================================
   PLACEHOLDER CPT
   ============================================================ */
.nlp-cpt-placeholder {
  background: repeating-linear-gradient(
    45deg,
    rgba(245,242,237,1),
    rgba(245,242,237,1) 10px,
    rgba(212,175,55,.06) 10px,
    rgba(212,175,55,.06) 20px
  );
  border: 2px dashed rgba(212,175,55,.4);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 2px;
}
.nlp-cpt-placeholder p { color: rgba(11,25,44,.5); margin-top: .5rem; }

/* ============================================================
   CONTACTO
   ============================================================ */
.nlp-contact {
  background-color: var(--color-sand);
  padding: 8rem 1rem 6rem;
}
.nlp-contact__header { text-align: center; margin-bottom: 4rem; }
.nlp-contact__header h5 { color: var(--color-gold); margin-bottom: 1rem; }
.nlp-contact__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .nlp-contact__inner { flex-direction: row; }
  .nlp-contact__form-col  { width: 60%; }
  .nlp-contact__info-col  { width: 40%; }
}
.nlp-contact__form-box {
  background: #fff;
  padding: 3rem;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.nlp-contact__form-box h3 { color: var(--color-navy); margin-bottom: 2rem; }
.nlp-form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .nlp-form-row { grid-template-columns: repeat(2, 1fr); } }
.nlp-field { display: flex; flex-direction: column; margin-bottom: 1.5rem; }
.nlp-field label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(11,25,44,.5); margin-bottom: .5rem;
}
.nlp-field input,
.nlp-field select,
.nlp-field textarea {
  padding: .75rem 1rem;
  background: rgba(245,242,237,.3);
  border: 1px solid rgba(0,0,0,.1);
  color: var(--color-navy);
  font-family: var(--font-sans);
  font-size: .875rem;
  outline: none;
  transition: border-color .3s;
  resize: vertical;
}
.nlp-field input:focus,
.nlp-field select:focus,
.nlp-field textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 1px var(--color-gold);
}
.nlp-contact__info-col h3 { color: var(--color-navy); margin-bottom: 1.5rem; }
.nlp-contact__info-col p  { color: rgba(11,25,44,.6); margin-bottom: 2rem; }
.nlp-contact-info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.nlp-contact-info-list li { display: flex; align-items: flex-start; gap: 1rem; }
.nlp-contact-info-list .icon { color: var(--color-gold); flex-shrink: 0; margin-top: 2px; }
.nlp-contact-info-list a { color: var(--color-navy); font-weight: 500; text-decoration: none; transition: color .3s; }
.nlp-contact-info-list a:hover { color: var(--color-gold); }
.nlp-contact-info-list h4 { color: var(--color-navy); margin-bottom: .25rem; font-size: 1rem; }
.nlp-contact-info-list .sub { color: rgba(11,25,44,.6); font-size: .875rem; }

/* ============================================================
   FAQS
   ============================================================ */
.nlp-faqs {
  background-color: var(--color-sand);
  padding: 8rem 1rem 6rem;
}
.nlp-faqs__header { text-align: center; margin-bottom: 4rem; }
.nlp-faqs__header h5 { color: var(--color-gold); margin-bottom: 1rem; }
.nlp-faqs__list { display: flex; flex-direction: column; gap: 1rem; }

.nlp-faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  transition: border-color .3s;
}
.nlp-faq-item.is-open { border-color: var(--color-gold); }
.nlp-faq-item__btn {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.nlp-faq-item__question {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-navy);
}
.nlp-faq-item__icon {
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform .3s;
  width: 1.25rem; height: 1.25rem;
}
.nlp-faq-item.is-open .nlp-faq-item__icon { transform: rotate(180deg); }
.nlp-faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.5rem;
  color: rgba(11,25,44,.7);
  font-weight: 300;
  line-height: 1.7;
}
.nlp-faq-item.is-open .nlp-faq-item__answer {
  max-height: 600px;
  padding: 0 1.5rem 1.5rem;
}

/* ============================================================
   BLOG
   ============================================================ */
.nlp-blog {
  background-color: var(--color-sand);
  padding: 8rem 1rem 6rem;
}
.nlp-blog__header { text-align: center; margin-bottom: 4rem; max-width: 40rem; margin-left: auto; margin-right: auto; }
.nlp-blog__header h5 { color: var(--color-gold); margin-bottom: 1rem; }
.nlp-blog__header p  { color: rgba(11,25,44,.6); font-weight: 300; font-size: 1.1rem; margin-top: 1.5rem; }
.nlp-blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px)  { .nlp-blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .nlp-blog__grid { grid-template-columns: repeat(3, 1fr); } }

.nlp-post-card__img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 1.5rem;
}
.nlp-post-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.nlp-post-card:hover .nlp-post-card__img { transform: scale(1.05); }
.nlp-post-card__meta {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(11,25,44,.5);
  margin-bottom: .75rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nlp-post-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--color-navy);
  margin-bottom: .75rem;
  line-height: 1.25;
  text-decoration: none;
  display: block;
  transition: color .3s;
}
.nlp-post-card__title:hover { color: var(--color-gold); }
.nlp-post-card__excerpt { color: rgba(11,25,44,.7); font-weight: 300; line-height: 1.7; }
.nlp-post-card__read-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-gold);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
  text-decoration: none;
}
.nlp-post-card__read-more:hover { border-color: var(--color-gold); }

/* ============================================================
   SINGLE POST
   ============================================================ */
.nlp-single {
  background-color: var(--color-sand);
  padding-bottom: 6rem;
}
.nlp-single__hero {
  height: 60vh;
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}
.nlp-single__hero-img {
  width: 100%; height: 100%; object-fit: cover;
}
.nlp-single__hero-overlay {
  position: absolute; inset: 0;
  background: rgba(11,25,44,.45);
}
.nlp-single__hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 3rem 1rem;
  text-align: center;
}
.nlp-single__hero-content h1 { color: #fff; }
.nlp-single__hero-meta {
  color: rgba(245,242,237,.7);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 1rem;
}
.nlp-single__body {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(11,25,44,.8);
}
.nlp-single__body h2,
.nlp-single__body h3 { color: var(--color-navy); margin: 2rem 0 1rem; }
.nlp-single__body p  { margin-bottom: 1.5rem; }
.nlp-single__body img { width: 100%; height: auto; margin: 2rem 0; }
.nlp-single__back {
  display: inline-block;
  margin: 3rem auto 0;
  color: var(--color-navy);
}