/* ══════════════════════════════════════
   VARIABLES — stylos del sitio
   ══════════════════════════════════════ */
:root {
  --carbon:         #1c1c1c;
  --carbon-soft:    #2a2a28;
  --stone:          #6b6560;
  --stone-light:    #9a9490;
  --warm-white:     #faf8f5;
  --cream:          #f2efe9;
  --cream-dark:     #e8e4dc;
  --selva:          #3a6b35;
  --selva-deep:     #2d5016;
  --selva-light:    #4a8a42;
  --amber:          #c4813d;
  --amber-light:    #d4a574;
  --copper:         #b06c2e;
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Plus Jakarta Sans', system-ui, sans-serif;
  --section-pad:    clamp(4rem, 8vw, 8rem);
  --container:      min(1200px, 90vw);
  --container-narrow: min(860px, 90vw);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--carbon); background: var(--warm-white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

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

h1 { font-family: var(--font-display); font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 500; line-height: 1.1; letter-spacing: -.01em; }
h2 { font-family: var(--font-display); font-size: clamp(1.9rem,4vw,3rem); font-weight: 500; line-height: 1.15; letter-spacing: -.01em; }
h3 { font-family: var(--font-display); font-size: clamp(1.2rem,2vw,1.6rem); font-weight: 500; line-height: 1.2; }

.section-label { font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--amber); margin-bottom: .8rem; display: block; }
.section-label--light { color: var(--amber-light); }

.btn { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-body); font-size: .875rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: .9rem 2rem; border-radius: 4px; cursor: pointer; transition: all .3s ease; border: none; }
.btn-primary   { background: var(--selva);  color: white; } .btn-primary:hover   { background: var(--selva-deep);  transform: translateY(-1px); }
.btn-amber     { background: var(--amber);  color: white; } .btn-amber:hover     { background: var(--copper);      transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.5); } .btn-outline-light:hover { background: white; color: var(--carbon); }
.btn-outline   { background: transparent; color: var(--carbon); border: 1.5px solid var(--carbon); } .btn-outline:hover { background: var(--carbon); color: white; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 2rem; }
.section { padding: var(--section-pad) 0; }

.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fd2 { transition-delay: .1s; } .h2fn p{color: rgba(255, 255, 255, .5);} .h2fn h2{color: #fff}.fd3 { transition-delay: .2s; } .fd4 { transition-delay: .3s; } .fd5 { transition-delay: .4s; }


/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.guide-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: flex-start;
  overflow: hidden; background: var(--carbon);
  padding: 0 0 4rem;
}
.guide-hero__bg {
  position: absolute; inset: 0;
  background: url('/wp-content/uploads/2026/05/guide-hero-cataratas.webp') center/cover no-repeat;
  opacity: .55;
  transform: scale(1.04);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.0); } }
.guide-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,28,28,.15) 0%, transparent 50%),
              linear-gradient(180deg, rgba(28,28,28,.1) 0%, rgba(28,28,28,.7) 100%);
}
.guide-hero__content {
  position: relative; z-index: 2;
  max-width: var(--container); width: 100%;
  margin: 0 auto; padding: 6rem 2rem 0;
}
.guide-hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--amber-light); margin-bottom: 1.2rem;
}
.guide-hero__eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--amber-light); }
.guide-hero h1 { color: white; max-width: 720px; margin-bottom: 1.2rem; }
.guide-hero h1 em { font-style: italic; color: var(--amber-light); }
.guide-hero__sub { font-size: clamp(1rem,1.8vw,1.15rem); font-weight: 300; color: rgba(255,255,255,.65); max-width: 540px; margin-bottom: 2.2rem; }
.guide-hero__badges { display: flex; gap: .7rem; flex-wrap: wrap; }
.guide-hero__badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 20px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.8);
  backdrop-filter: blur(6px);
}
.guide-hero__badge svg { width: 11px; height: 11px; stroke: var(--amber-light); fill: none; stroke-width: 2; }


/* ══════════════════════════════════════
   ÍNDICE RÁPIDO — strip de navegación
   ══════════════════════════════════════ */
.guide-nav { background: var(--carbon-soft); border-bottom: 1px solid rgba(255,255,255,.06); }
.guide-nav__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; gap: 0; overflow-x: auto; scrollbar-width: none;
}
.guide-nav__inner::-webkit-scrollbar { display: none; }
.guide-nav__link {
  display: flex; align-items: center; gap: .5rem;
  padding: 1.1rem 1.4rem; white-space: nowrap;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--stone); border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s;
}
.guide-nav__link:hover { color: var(--amber-light); border-bottom-color: var(--amber); }
.guide-nav__link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.8; }


/* ══════════════════════════════════════
   INFO ESENCIAL DEL PARQUE
   ══════════════════════════════════════ */
.guide-park { background: var(--warm-white); }
.guide-park__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: start; }

.guide-park__text h2 { margin-bottom: 1rem; }
.guide-park__text h2 em { font-style: italic; color: var(--selva); }
.guide-park__text > p { font-size: 1rem; color: var(--stone); line-height: 1.78; margin-bottom: 2rem; }

/* Info cards: horario, precios, etc */
.guide-park__cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.guide-park__card {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.2rem 1.4rem;
  background: white; border: 1px solid var(--cream-dark); border-radius: 8px;
  transition: box-shadow .3s;
}
.guide-park__card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.guide-park__card-icon {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.guide-park__card-icon svg { width: 18px; height: 18px; fill: none; stroke-width: 1.8; }
.icon-green  { background: rgba(58,107,53,.1);  } .icon-green svg  { stroke: var(--selva);  }
.icon-amber  { background: rgba(196,129,61,.1); } .icon-amber svg  { stroke: var(--amber);  }
.icon-blue   { background: rgba(74,138,158,.1); } .icon-blue  svg  { stroke: #4a8a9e; }
.icon-carbon { background: rgba(28,28,28,.07);  } .icon-carbon svg { stroke: var(--carbon); }
.guide-park__card-body h3 { font-family: var(--font-body); font-size: .9rem; font-weight: 700; color: var(--carbon); margin-bottom: .25rem; }
.guide-park__card-body p  { font-size: .82rem; color: var(--stone); line-height: 1.55; }
.guide-park__card-body a  { color: var(--selva); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* Circuitos */
.guide-park__circuits { display: flex; flex-direction: column; gap: 0; }
.guide-park__circuit {
  padding: 1.3rem 1.5rem; border-bottom: 1px solid var(--cream-dark); background: white;
}
.guide-park__circuit:first-child { border-radius: 8px 8px 0 0; }
.guide-park__circuit:last-child  { border-radius: 0 0 8px 8px; border-bottom: none; }
.guide-park__circuit-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .4rem; }
.guide-park__circuit-name { font-size: .9rem; font-weight: 700; color: var(--carbon); display: flex; align-items: center; gap: .5rem; }
.guide-park__circuit-name svg { width: 14px; height: 14px; stroke: var(--selva); fill: none; stroke-width: 2; }
.guide-park__circuit-badge {
  font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .18rem .6rem; border-radius: 3px;
}
.badge-easy   { background: rgba(58,107,53,.09);  color: var(--selva-deep); border: 1px solid rgba(58,107,53,.2); }
.badge-medium { background: rgba(196,129,61,.09); color: var(--copper);     border: 1px solid rgba(196,129,61,.2); }
.badge-must   { background: rgba(28,28,28,.08);   color: var(--carbon);     border: 1px solid rgba(28,28,28,.15); }
.guide-park__circuit p { font-size: .8rem; color: var(--stone); line-height: 1.55; }
.guide-park__circuit-meta { display: flex; gap: 1.2rem; margin-top: .5rem; }
.guide-park__circuit-stat { font-size: .73rem; color: var(--stone-light); display: flex; align-items: center; gap: .3rem; }
.guide-park__circuit-stat svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Tip banner */
.guide-tip-banner {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: 1.1rem 1.4rem; border-radius: 8px;
  background: rgba(196,129,61,.08); border: 1px solid rgba(196,129,61,.2); margin-top: 1.5rem;
}
.guide-tip-banner svg { width: 16px; height: 16px; stroke: var(--amber); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: .2rem; }
.guide-tip-banner p { font-size: .82rem; color: var(--stone); line-height: 1.6; }
.guide-tip-banner strong { color: var(--carbon); }


/* ══════════════════════════════════════
   ITINERARIOS — 1, 2 y 3 días
   ══════════════════════════════════════ */
.guide-itins { background: var(--carbon-soft); position: relative; overflow: hidden; }
.guide-itins::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 900px 600px at 20% 80%, rgba(58,107,53,.08), transparent);
}
.guide-itins .container { position: relative; z-index: 1; }

.guide-itins__header { text-align: center; margin-bottom: 3.5rem; }
.guide-itins__header h2 { color: white; }
.guide-itins__header h2 em { font-style: italic; color: var(--amber-light); }
.guide-itins__header p { color: rgba(255,255,255,.55); font-size: 1rem; margin-top: .8rem; }

.guide-itins__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.guide-itin {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px; overflow: hidden;
  transition: border-color .3s, background .3s;
}
.guide-itin:hover { border-color: rgba(196,129,61,.3); background: rgba(255,255,255,.08); }

.guide-itin__header {
  padding: 1.5rem 1.6rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.guide-itin__days {
  font-family: var(--font-display); font-size: 3rem; font-weight: 500;
  color: var(--amber-light); line-height: 1;
}
.guide-itin__label { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--stone-light); margin-top: .2rem; }
.guide-itin__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: white; margin-top: .6rem; line-height: 1.2; }

.guide-itin__body { padding: 1.4rem 1.6rem; }
.guide-itin__day { margin-bottom: 1.2rem; }
.guide-itin__day:last-child { margin-bottom: 0; }
.guide-itin__day-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .5rem;
}
.guide-itin__stops { display: flex; flex-direction: column; gap: .35rem; }
.guide-itin__stop {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.45;
}
.guide-itin__stop::before {
  content: ''; flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber); margin-top: .45em;
}


.guide-itin__footer {
  padding: 1rem 1.6rem 1.4rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.guide-itin__yaguas-note {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; color: rgba(74,138,66,.8); font-weight: 600;
}
.guide-itin__yaguas-note svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }


/* ══════════════════════════════════════
   FAUNA & NATURALEZA
   ══════════════════════════════════════ */
.guide-fauna { background: var(--warm-white); }
.guide-fauna__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }

.guide-fauna__text h2 { margin-bottom: 1.2rem; }
.guide-fauna__text h2 em { font-style: italic; color: var(--selva); }
.guide-fauna__text p { font-size: 1rem; color: var(--stone); line-height: 1.78; margin-bottom: 1.5rem; }

.guide-fauna__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.8rem; }
.guide-fauna__chip {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: var(--carbon);
  padding: .35rem .85rem; border-radius: 20px;
  background: var(--cream); border: 1px solid var(--cream-dark);
  transition: border-color .2s, background .2s;
}
.guide-fauna__chip:hover { border-color: var(--selva); background: rgba(58,107,53,.07); }

/* Galería editorial */
.guide-fauna__gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 260px 180px; gap: .75rem; }
.guide-fauna__img { border-radius: 8px; overflow: hidden; background: var(--cream); }
.guide-fauna__img.tall { grid-row: 1/3; }
.guide-fauna__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.guide-fauna__img:hover img { transform: scale(1.04); }


/* ══════════════════════════════════════
   ACTIVIDADES — más allá de las Cataratas
   ══════════════════════════════════════ */
.guide-activities { background: var(--cream); }
.guide-activities__header { text-align: center; margin-bottom: 3.5rem; }
.guide-activities__header h2 em { font-style: italic; color: var(--amber); }
.guide-activities__header p { font-size: 1rem; color: var(--stone); max-width: 520px; margin: .8rem auto 0; }

.guide-activities__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
/* 5 cards: primera fila 3, segunda fila 2 centradas */
.guide-activities__grid > :nth-child(4) { grid-column: 1;}
.guide-activities__grid > :nth-child(5) { grid-column: 2; }

/* Para que funcione mejor: */
.guide-activities__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}

.guide-act-card {
  background: white; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: box-shadow .35s, transform .35s;
  display: flex; flex-direction: column;
}
.guide-act-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-4px); }
.guide-act-card__img { height: 200px; overflow: hidden; }
.guide-act-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.guide-act-card:hover .guide-act-card__img img { transform: scale(1.05); }
.guide-act-card__body { padding: 1.4rem 1.5rem; flex: 1; }
.guide-act-card__dist {
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .35rem;
}
.guide-act-card__body h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: .4rem; }
.guide-act-card__body p  { font-size: .83rem; color: var(--stone); line-height: 1.6; }


/* ══════════════════════════════════════
   CÓMO LLEGAR
   ══════════════════════════════════════ */
.guide-howto { background: var(--carbon-soft); position: relative; overflow: hidden; }
.guide-howto::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 800px 500px at 80% 50%, rgba(196,129,61,.06), transparent);
}
.guide-howto .container { position: relative; z-index: 1; }

.guide-howto__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }
.guide-howto__text .section-label { color: var(--amber-light); }
.guide-howto__text h2 { color: white; margin-bottom: 1rem; }
.guide-howto__text h2 em { font-style: italic; color: var(--amber-light); }
.guide-howto__text p { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.78; }

.guide-howto__options { display: flex; flex-direction: column; gap: 1rem; }
.guide-howto__option {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.4rem 1.6rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px; transition: background .3s, border-color .3s;
}
.guide-howto__option:hover { background: rgba(255,255,255,.09); border-color: rgba(196,129,61,.25); }
.guide-howto__option-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 8px;
  background: rgba(196,129,61,.12); border: 1px solid rgba(196,129,61,.2);
  display: flex; align-items: center; justify-content: center;
}
.guide-howto__option-icon svg { width: 20px; height: 20px; stroke: var(--amber-light); fill: none; stroke-width: 1.7; }
.guide-howto__option-body h3 { font-family: var(--font-body); font-size: .92rem; font-weight: 700; color: white; margin-bottom: .25rem; }
.guide-howto__option-body p  { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.55; }
.guide-howto__option-time {
  display: inline-block; margin-top: .5rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .18rem .65rem; border-radius: 3px;
  background: rgba(196,129,61,.15); color: var(--amber-light); border: 1px solid rgba(196,129,61,.2);
}

/* Distancias desde el hotel */
.guide-howto__distances {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px; overflow: hidden; margin-top: 1.5rem;
}
.guide-howto__dist-title {
  padding: .8rem 1.3rem; background: rgba(255,255,255,.04);
  font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber-light); border-bottom: 1px solid rgba(255,255,255,.07);
}
.guide-howto__dist-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem 1.3rem; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .83rem;
}
.guide-howto__dist-row:last-child { border-bottom: none; }
.guide-howto__dist-row span:first-child { color: rgba(255,255,255,.6); }
.guide-howto__dist-row span:last-child  { font-weight: 600; color: white; }


/* ══════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════ */
.guide-cta {
  background: var(--selva-deep); text-align: center;
  padding: 6rem 2rem; position: relative; overflow: hidden;
}
.guide-cta__bg { position: absolute; inset: 0; background: url('/wp-content/uploads/2026/05/guide-cta-cataratas.webp') center/cover no-repeat; opacity: .15; }
.guide-cta::before { content: ''; position: absolute; inset: 0; z-index: 1; }
.guide-cta__inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.guide-cta h2 { color: white; margin-bottom: 1rem; }
.guide-cta h2 em { font-style: italic; color: var(--amber-light); }
.guide-cta p  { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 2.2rem; line-height: 1.7; }
.guide-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }


/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .guide-park__grid    { grid-template-columns: 1fr; gap: 3rem; }
  .guide-fauna__grid   { grid-template-columns: 1fr; gap: 3rem; }
  .guide-fauna__gallery { order: -1; }
  .guide-howto__grid   { grid-template-columns: 1fr; gap: 3rem; }
  .guide-itins__grid   { grid-template-columns: 1fr 1fr; }
  .guide-itins__grid > :last-child { grid-column: 1/-1; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .guide-hero { min-height: 60vh; }
  .guide-itins__grid   { grid-template-columns: 1fr; }
  .guide-itins__grid > :last-child { max-width: 100%; grid-column: auto; }
  .guide-activities__grid { grid-template-columns: 1fr 1fr; }
  .guide-activities__grid > :nth-child(4),
  .guide-activities__grid > :nth-child(5) { grid-column: auto; margin-left: 0; }
  .guide-fauna__gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 160px; }
  .guide-fauna__img.tall { grid-row: auto; }
  .guide-cta__btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .guide-activities__grid { grid-template-columns: 1fr; }
  .guide-hero__badges { flex-direction: column; align-items: flex-start; }
  .guide-fauna__gallery { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   HUB DINÁMICO DE POSTS
   ══════════════════════════════════════ */
.guide-posts { background: var(--warm-white); }
.guide-posts__header { text-align: center; margin-bottom: 2.5rem; }
.guide-posts__header h2 em { font-style: italic; color: var(--selva); }
.guide-posts__header p { max-width: 640px; margin: .8rem auto 0; color: var(--stone); font-size: 1rem; line-height: 1.75; }
.guide-posts__tools { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.guide-posts__categories { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.guide-posts__cat,
.guide-posts__categories a { display: inline-flex; align-items: center; justify-content: center; min-height: 34px; padding: .35rem .9rem; border-radius: 20px; border: 1px solid var(--cream-dark); background: white; color: var(--stone); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: border-color .25s, color .25s, background .25s; }
.guide-posts__cat:hover,
.guide-posts__categories a:hover,
.guide-posts__cat.is-active { border-color: rgba(58,107,53,.35); color: var(--selva-deep); background: rgba(58,107,53,.07); }
.search-form { display: flex; align-items: stretch; gap: .5rem; }
.search-form label { display: block; }
.search-field { min-height: 38px; border: 1.5px solid var(--cream-dark); border-radius: 4px; background: white; color: var(--carbon); font-family: var(--font-body); font-size: .86rem; padding: .55rem .8rem; outline: none; }
.search-field:focus { border-color: var(--selva); }
.search-submit { min-height: 38px; border-radius: 4px; background: var(--selva); color: white; font-family: var(--font-body); font-weight: 700; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; padding: .55rem 1rem; transition: background .25s; }
.search-submit:hover { background: var(--selva-deep); }
.guide-posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.guide-post-card { background: white; border: 1px solid var(--cream-dark); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .35s, transform .35s; min-height: 100%; }
.guide-post-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-4px); }
.guide-post-card--featured { grid-column: span 2; display: grid; grid-template-columns: 1.1fr 1fr; }
.guide-post-card__media { position: relative; min-height: 220px; overflow: hidden; background: var(--cream); }
.guide-post-card--featured .guide-post-card__media { min-height: 100%; }
.guide-post-card__media img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; transition: transform .55s ease; }
.guide-post-card:hover .guide-post-card__media img { transform: scale(1.04); }
.guide-post-card__category { position: absolute; top: .9rem; left: .9rem; z-index: 2; background: rgba(28,28,28,.78); color: var(--amber-light); border: 1px solid rgba(255,255,255,.12); border-radius: 3px; padding: .25rem .7rem; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(6px); }
.guide-post-card__body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.guide-post-card__meta { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin-bottom: .7rem; font-size: .72rem; color: var(--stone-light); }
.guide-post-card__title { font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; line-height: 1.15; color: var(--carbon); margin-bottom: .55rem; }
.guide-post-card--featured .guide-post-card__title { font-size: clamp(1.7rem, 3vw, 2.25rem); }
.guide-post-card__excerpt { color: var(--stone); font-size: .88rem; line-height: 1.65; margin-bottom: 1.1rem; }
.guide-post-card__link { margin-top: auto; display: inline-flex; align-items: center; gap: .35rem; color: var(--selva); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.guide-post-card__link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.4; }
.guide-posts__pagination { margin-top: 2.2rem; display: flex; justify-content: center; gap: .45rem; flex-wrap: wrap; }
.guide-posts__pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; min-height: 38px; padding: .45rem .8rem; border: 1px solid var(--cream-dark); background: white; border-radius: 4px; color: var(--stone); font-weight: 700; font-size: .82rem; }
.guide-posts__pagination .page-numbers.current,
.guide-posts__pagination .page-numbers:hover { background: var(--carbon); color: white; border-color: var(--carbon); }
.guide-posts__empty { max-width: 680px; margin: 0 auto; text-align: center; background: white; border: 1px solid var(--cream-dark); border-radius: 8px; padding: 3rem 2rem; }
.guide-posts__empty h3 { margin-bottom: .5rem; color: var(--carbon); }
.guide-posts__empty p { color: var(--stone); }

/* Archive headers */
.guide-archive-hero { background: var(--carbon); color: white; padding: 7rem 2rem 4rem; position: relative; overflow: hidden; }
.guide-archive-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 900px 500px at 100% 0%, rgba(58,107,53,.08), transparent); pointer-events: none; }
.guide-archive-hero__inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; }
.guide-archive-hero h1 { max-width: 760px; margin-bottom: .75rem; }
.guide-archive-hero p { max-width: 620px; color: rgba(255,255,255,.6); }

@media (max-width: 1024px) {
  .guide-posts__grid { grid-template-columns: repeat(2, 1fr); }
  .guide-post-card--featured { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .guide-posts__tools { align-items: flex-start; flex-direction: column; }
  .search-form, .search-field { width: 100%; }
  .guide-post-card--featured { grid-template-columns: 1fr; }
  .guide-post-card--featured .guide-post-card__media { min-height: 240px; }
}
@media (max-width: 560px) {
  .guide-posts__grid { grid-template-columns: 1fr; }
}

.guide-park__circuits-label { margin-bottom: 1.2rem; }
.guide-tip-banner--compact { margin-top: 1.2rem; }
