@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=Mulish:wght@400;500;600;700;800&display=swap');
:root {
  --forest: #173d29;
  --leaf: #2f6f45;
  --river: #27657a;
  --earth: #8a5d35;
  --gold: #b8872c;
  --cream: #f5f1e7;
  --paper: #fbfaf5;
  --ink: #1e261f;
  --muted: #647067;
  --line: #d9d5c9;
  --shadow: 0 18px 44px rgba(20, 36, 25, 0.14);
  --action-main: #f1dfb4;
  --action-soft: #fbf4e3;
  --action-deep: #d9bd7b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 86px; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 120;
  padding: 10px 16px;
  border-radius: 6px;
  color: var(--forest);
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 21, 14, 0.22);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 150ms ease;
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #f2d897;
  outline-offset: 3px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 10px clamp(24px, 4vw, 58px);
  background: rgba(251, 250, 245, 0.97);
  border-bottom: 1px solid rgba(30, 38, 31, 0.12);
}
.brand { color: var(--forest); font-size: 18px; font-weight: 800; }
.nav { display: flex; align-items: center; gap: 20px; font-size: 14px; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--leaf); text-decoration: underline; }
.nav .nav-language {
  padding-left: 16px;
  border-left: 1px solid currentColor;
  font-weight: 800;
  letter-spacing: .06em;
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(23, 61, 41, 0.25);
  border-radius: 999px;
  color: var(--forest);
  background: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 1101px) {
  .menu-toggle { display: none; }
}
.nav-cta {
  padding: 10px 15px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--forest) !important;
  background: var(--action-main);
  text-decoration: none !important;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 22, 14, 0.74), rgba(8, 22, 14, 0.24) 65%, rgba(8, 22, 14, 0.06));
}
.hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  object-fit: cover;
}
.hero-content, .wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.hero-content { padding: 80px 0; }
.eyebrow {
  margin-bottom: 10px;
  color: #f2d897;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 800px;
  margin-bottom: 18px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
}
.hero-copy { max-width: 670px; font-size: 22px; font-weight: 700; line-height: 1.35; }

.page-hero {
  padding: 92px 24px;
  color: #fff;
  background: linear-gradient(120deg, var(--forest), #315d43);
}
.page-hero .wrap { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: end; }
.page-hero .wrap.hero-simple { display: block; }
.page-hero h1 { margin-bottom: 18px; font-size: clamp(52px, 6vw, 78px); line-height: .98; }
.page-hero p { max-width: 760px; margin-bottom: 0; color: #fff; font-size: 20px; }
.page-note {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  color: #eef4ef;
}

.photo-hero {
  position: relative;
  height: clamp(360px, 48vw, 620px);
  min-height: 0;
  max-height: 68svh;
  overflow: hidden;
  background: var(--forest);
}
.photo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 21, 14, 0.08), rgba(8, 21, 14, 0.2));
  pointer-events: none;
}
.photo-hero img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
.hero-info {
  padding: clamp(46px, 6vw, 76px) 24px;
  background: var(--paper);
}
.hero-info .wrap {
  display: block;
}
.hero-info .birding-hero-copy,
.hero-info .stays-hero-copy,
.hero-info .stay-detail-copy,
.hero-info .cabin-hero-copy,
.hero-info .farm-hero-copy,
.hero-info .arrival-hero-copy,
.hero-info .contact-hero-copy,
.hero-info .page-hero-copy,
.hero-info .article-hero-copy {
  max-width: 920px;
  padding: 0;
  color: var(--ink);
}
.hero-info .eyebrow {
  color: var(--earth);
  text-shadow: none;
}
.hero-info h1 {
  max-width: 920px;
  margin-bottom: 18px;
  color: var(--forest);
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  text-shadow: none;
}
.hero-info p,
.hero-info .lead,
.hero-info .stays-hero-copy > p:not(.eyebrow),
.hero-info .stay-detail-copy > p:not(.eyebrow),
.hero-info .cabin-hero-copy > p:not(.eyebrow),
.hero-info .farm-hero-copy > p:not(.eyebrow),
.hero-info .arrival-hero-copy > p:not(.eyebrow),
.hero-info .contact-hero-copy > p:not(.eyebrow),
.hero-info .page-hero-copy > p:not(.eyebrow),
.hero-info .article-hero-copy > p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 20px;
}

.section { padding: 80px 24px; }
.section.alt { background: var(--cream); }
.section.compact { padding-top: 50px; padding-bottom: 50px; }
.section-head {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head:has(> h2:only-child) {
  display: block;
  max-width: 760px;
}
.section-head h2, .copy h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
}
.ebird-name { color: #70a83b; }
.section-head p, .copy > p { color: var(--muted); font-size: 18px; }
.lead { max-width: 820px; color: var(--muted); font-size: 20px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; }
.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(28, 43, 31, 0.07);
}
.card.image-card { padding: 0; overflow: hidden; }
.card.image-card img { height: 230px; object-fit: cover; }
.card-body { padding: 24px; }
.card h3 { margin-bottom: 10px; color: var(--forest); font-size: 24px; line-height: 1.15; }
.card p { color: var(--muted); }
.tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--earth);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  padding: 11px 17px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--forest);
  background: var(--action-main);
  font-weight: 800;
  text-align: center;
  white-space: normal;
}
button.button { cursor: pointer; font: inherit; }
.button.light,
.button.gold,
.button.earth { border-color: var(--gold); color: var(--forest); background: var(--action-main); }
.actions > .button:nth-child(2),
.copy-email > .button:nth-child(2) { background: var(--action-soft); }
.actions > .button:nth-child(n+3),
.copy-email > .button:nth-child(n+3) { background: var(--action-deep); }

.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.metric { padding: 24px; border-left: 4px solid var(--gold); background: #fff; }
.metric strong { display: block; color: var(--forest); font-size: 38px; line-height: 1; }
.metric span { color: var(--muted); }

.checklist { display: grid; gap: 10px; padding: 0; list-style: none; }
.checklist li { display: flex; gap: 10px; }
.checklist li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline { display: grid; gap: 18px; }
.timeline article { padding: 24px; border-left: 5px solid var(--gold); background: #fff; box-shadow: var(--shadow); }
.timeline h3 { color: var(--forest); }

.gallery { display: grid; grid-template-columns: 1.1fr .9fr; gap: 14px; }
.gallery img { height: 320px; border-radius: 8px; object-fit: cover; }
.gallery img:first-child { grid-row: span 2; height: 654px; }

.notice {
  padding: 22px;
  border: 1px solid #d8c58f;
  border-radius: 8px;
  background: #fff8e6;
}
.notice strong { color: var(--forest); }
.source-line { color: var(--muted); font-size: 14px; }

.cta { color: #fff; text-align: center; background: var(--forest); }
.cta h2 { margin-bottom: 14px; font-size: 48px; }
.cta p { color: #dfebe2; font-size: 19px; }
.cta .actions { justify-content: center; }
.cta .actions { flex-wrap: nowrap; }
.cta .button { border-color: var(--gold); }

footer { padding: 38px 24px; color: #dfe8da; background: #10291c; }
.footer-inner { display: grid; grid-template-columns: 1.05fr 1fr 1.25fr 1fr; gap: 28px; }
.footer-group h2,
.footer-group h3 { margin-bottom: 12px; color: #fff; font-size: 16px; }
.footer-links { display: grid; gap: 7px; font-size: 14px; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.floating-whatsapp {
  position: fixed;
  right: 28px;
  top: 50%;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  color: #fff;
  background: #128c4a;
  box-shadow: 0 12px 30px rgba(8, 21, 14, 0.24);
  transform: translateY(-50%);
}
.floating-whatsapp svg { width: 32px; height: 32px; fill: currentColor; }
.floating-whatsapp:hover { background: #0d743d; }
.copy-email { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.copy-status { min-height: 24px; margin-top: 10px; color: var(--leaf); font-weight: 700; }

/* Pagina interna de aviturismo */
.birding-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 620px;
  color: #fff;
  background: var(--forest);
}
.birding-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px max(48px, calc((100vw - 1180px) / 2));
  padding-right: 60px;
}
.birding-hero h1 { max-width: 720px; margin-bottom: 20px; font-size: clamp(52px, 6vw, 78px); line-height: .98; }
.birding-hero .lead { color: #fff; font-size: 20px; }
.birding-hero-media { position: relative; min-height: 620px; overflow: hidden; }
.birding-hero-media img { height: 100%; object-fit: cover; }
.birding-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,61,41,.4), transparent 45%); }
.birding-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.2);
}
.birding-facts div { padding: 16px; background: rgba(15,45,29,.92); }
.birding-facts strong { display: block; color: #f2d897; font-size: 18px; }
.birding-facts span { color: #dbe8de; font-size: 14px; }
.experience-intro { max-width: 860px; margin-bottom: 40px; }
.experience-intro h2 { color: var(--forest); font-size: clamp(38px, 5vw, 62px); line-height: 1.02; }
.experience-intro p { color: var(--muted); font-size: 20px; }
.day-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.day-step { padding: 34px 28px; border-right: 1px solid var(--line); }
.day-step:last-child { border-right: 0; }
.day-step .time { display: block; margin-bottom: 12px; color: var(--earth); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.day-step h3 { color: var(--forest); font-size: 27px; }
.day-step p { margin-bottom: 0; color: var(--muted); }
.habitats { display: grid; gap: 28px; }
.habitat-row { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 350px; overflow: hidden; border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.habitat-row:nth-child(even) { grid-template-columns: 1.1fr .9fr; }
.habitat-row:nth-child(even) .habitat-media { order: 2; }
.habitat-media img { height: 100%; min-height: 350px; object-fit: cover; }
.habitat-copy { display: flex; flex-direction: column; justify-content: center; padding: 42px; }
.habitat-copy h3 { color: var(--forest); font-size: 34px; }
.habitat-copy p { color: var(--muted); font-size: 17px; }
.audience-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.audience-layout h2 { color: var(--forest); font-size: clamp(38px, 5vw, 58px); line-height: 1.04; }
.audience-list { border-top: 1px solid var(--line); }
.audience-item { padding: 24px 0; border-bottom: 1px solid var(--line); }
.audience-item h3 { margin-bottom: 6px; color: var(--forest); font-size: 23px; }
.audience-item p { margin-bottom: 0; color: var(--muted); }
.anchor-species {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.anchor-species-media {
  position: relative;
  min-height: 470px;
  background: var(--forest);
}
.anchor-species-media img {
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}
.anchor-species-media span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 8px 11px;
  border-radius: 4px;
  color: #fff;
  background: rgba(16,41,28,.78);
  font-size: 13px;
  font-weight: 700;
}
.anchor-species-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 56px);
}
.eyebrow.dark { color: var(--earth); }
.anchor-species-copy h3 {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
}
.scientific-name {
  margin-bottom: 22px;
  color: var(--leaf);
  font-size: 20px;
  font-weight: 800;
}
.anchor-species-copy p:not(.eyebrow):not(.scientific-name) {
  color: var(--muted);
  font-size: 17px;
}
.anchor-species-copy .source-line {
  margin: 4px 0 0;
  font-size: 13px;
}
.species-photo-strip {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.species-strip-head {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 18px;
}
.species-strip-head:has(> h3:only-child) {
  display: block;
}
.species-strip-head h3 {
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.04;
}
.species-strip-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}
.species-carousel {
  position: relative;
  display: grid;
  align-items: center;
}
.species-photo-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 34%);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 54px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.species-photo-rail::-webkit-scrollbar {
  display: none;
}
.species-photo-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background: #10291c;
  box-shadow: 0 10px 22px rgba(28,43,31,.12);
  opacity: .58;
  scroll-snap-align: center;
  transform: scale(.88);
  transform-origin: center;
  transition: opacity .3s ease, transform .3s ease, box-shadow .3s ease;
}
.species-photo-card img {
  height: 330px;
  object-fit: cover;
  transition: transform .35s ease;
}
.species-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,41,28,.26) 0%, rgba(16,41,28,.18) 32%, rgba(16,41,28,.88) 100%);
  transition: background .3s ease;
}
.species-photo-card.is-active {
  opacity: 1;
  box-shadow: 0 18px 40px rgba(28,43,31,.24);
  transform: scale(1);
}
.species-photo-card.is-active::after {
  background: linear-gradient(180deg, rgba(16,41,28,0) 32%, rgba(16,41,28,.84) 100%);
}
.species-photo-card:hover img {
  transform: scale(1.035);
}
.species-photo-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 18px;
  color: #fff;
}
.species-photo-name strong {
  display: block;
  font-size: 20px;
  line-height: 1.12;
}
.species-photo-name span {
  display: block;
  margin-top: 4px;
  color: #e7eadf;
  font-size: 14px;
}
.species-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  color: #fff;
  background: rgba(16,41,28,.82);
  box-shadow: 0 10px 24px rgba(16,41,28,.24);
  cursor: pointer;
  font: inherit;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}
.species-carousel-control:hover {
  background: var(--forest);
}
.species-carousel-control.prev {
  left: 10px;
}
.species-carousel-control.next {
  right: 10px;
}
.species-name-panel {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 36px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.species-name-panel h3 {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 28px;
  line-height: 1.08;
}
.species-name-panel p {
  margin-bottom: 0;
  color: var(--muted);
}
.species-name-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.species-name-panel li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.species-name-panel strong {
  display: block;
  color: var(--forest);
  font-size: 18px;
  line-height: 1.15;
}
.species-name-panel span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}
.species-subhead {
  display: grid;
  grid-template-columns: .65fr 1fr;
  gap: 28px;
  align-items: end;
  margin: 46px 0 18px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.species-subhead h3 {
  margin-bottom: 0;
  color: var(--forest);
  font-size: 30px;
}
.species-subhead p { margin-bottom: 0; color: var(--muted); }
.species-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.species-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.species-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(28,43,31,.07);
}
.species-card img { height: 210px; object-fit: cover; }
.species-copy { padding: 22px; }
.species-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--earth);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.species-copy h3 { margin-bottom: 8px; color: var(--forest); font-size: 25px; line-height: 1.08; }
.species-copy p { margin-bottom: 10px; color: var(--muted); font-size: 15px; }
.species-copy p:last-child { margin-bottom: 0; }
.species-copy strong { color: #3b493e; }
.species-list-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 28px;
  border: 1px solid #cddacb;
  border-radius: 8px;
  background: #eef4e8;
}
.species-list-card span {
  margin-bottom: 12px;
  color: var(--earth);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.species-list-card h3 {
  margin-bottom: 12px;
  color: var(--forest);
  font-size: 30px;
  line-height: 1.05;
}
.species-list-card p { color: var(--muted); }
.species-list-card .button { margin-top: auto; }
.species-note { margin-top: 18px; }
.calendar-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.calendar-layout h2 { color: var(--forest); font-size: clamp(38px, 5vw, 58px); line-height: 1.04; }
.calendar-copy p { color: var(--muted); font-size: 18px; }
.service-panel { padding: 36px; color: #eef5ef; background: var(--forest); }
.service-panel h2 { font-size: 38px; }
.service-panel .checklist li::before { background: #f2d897; }
.service-panel .source-line { color: #c8d8cc; }
.responsible-box {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.responsible-box h3 { margin-bottom: 12px; color: #f2d897; font-size: 27px; }
.responsible-box p { color: #d5e3d9; }
.responsible-box p:last-child { margin-bottom: 0; }
.stay-paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stay-path { padding: 28px; border-top: 5px solid var(--gold); background: #fff; box-shadow: 0 10px 28px rgba(28,43,31,.07); }
.stay-path strong { color: var(--earth); font-size: 14px; text-transform: uppercase; }
.stay-path h3 { margin-top: 8px; color: var(--forest); font-size: 25px; }
.stay-path p { color: var(--muted); }
/* Bitacora de naturaleza */
.journal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.journal-card {
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.journal-card img { width: 100%; height: 270px; object-fit: cover; display: block; }
.journal-copy { padding: 30px; }
.journal-copy span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--earth);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.journal-copy h2 { color: var(--forest); font-size: 30px; line-height: 1.08; }
.journal-copy p { margin-bottom: 0; color: var(--muted); font-size: 17px; }
.journal-link { display: block; height: 100%; }
.read-more {
  display: inline-block;
  margin-top: 20px;
  color: var(--forest);
  font-weight: 800;
}
.journal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.journal-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #f5f1e7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.article-hero {
  padding: 86px 24px 64px;
  color: #fff;
  background: linear-gradient(120deg, var(--forest), #315d43);
}
.article-hero .wrap { max-width: 920px; }
.article-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1;
}
.article-hero p { color: #e5eee7; font-size: 20px; }
.article-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 4px;
  color: #f2d897;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.article-layout { max-width: 920px; }
.stay-row { scroll-margin-top: 96px; }
.hero-info:has(.article-hero-copy) { padding-bottom: 30px; }
.section:has(.article-layout) { padding-top: 34px; }
.article-outro-section { padding-top: 30px; }
.hero-info .article-hero-copy { max-width: 760px; margin: 0 auto; }
.article-image {
  overflow: hidden;
  margin-bottom: 36px;
  background: #fff;
  box-shadow: var(--shadow);
}
.article-image img { height: min(58vw, 520px); object-fit: cover; }
.article-caption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 14px;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
}
.article-body p {
  color: #354239;
  font-size: 19px;
  line-height: 1.75;
}
.article-body em { color: var(--forest); }
.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 760px;
  margin: 36px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.article-outro-section .wrap { max-width: 920px; }
.article-nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 26px; background: var(--cream); }
.article-nav a { display: inline-flex; align-items: center; gap: 8px; color: var(--forest); font-weight: 800; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.article-nav a:hover { color: var(--earth); }
.article-nav-back { text-decoration: underline; text-underline-offset: 5px; }
.article-nav-right { display: flex; align-items: center; gap: 28px; }
.article-nav-right a { text-decoration: underline; text-underline-offset: 5px; }
.article-nav .chev { font-size: 17px; text-decoration: none; }
.article-explore { margin-top: 44px; padding-top: 44px; border-top: 1px solid var(--line); text-align: center; }
.article-explore > span { display: block; margin-bottom: 24px; color: var(--earth); font-size: 22px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-explore-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 760px; margin: 0 auto; }
.article-explore-links a { display: flex; align-items: center; justify-content: center; min-height: 86px; padding: 18px; border: 1px solid var(--gold); border-radius: 8px; background: var(--action-main); color: var(--forest); font-family: 'Spectral', serif; font-size: 23px; font-weight: 600; text-align: center; }
.article-explore-links a:nth-child(2) { background: var(--action-soft); }
.article-explore-links a:nth-child(3) { background: var(--action-deep); }
.article-explore-links a:hover { box-shadow: 0 10px 24px rgba(53,42,35,.14); }

/* Pagina madre y detalles de estancias */
.stays-hero, .stay-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--forest);
  color: #fff;
}
.stays-hero-copy, .stay-detail-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px max(48px, calc((100vw - 1180px) / 2)); padding-right: 58px; }
.stays-hero h1, .stay-detail-hero h1 { margin-bottom: 18px; font-size: clamp(52px, 6vw, 78px); line-height: .98; }
.stays-hero p:not(.eyebrow), .stay-detail-hero p:not(.eyebrow) { color: #fff; font-size: 20px; }
.stays-hero-media, .stay-detail-media { position: relative; min-height: 600px; overflow: hidden; }
.stays-hero-media img, .stay-detail-media img { height: 100%; object-fit: cover; }
.stays-hero-media::after, .stay-detail-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,61,41,.35), transparent 48%); }
.stay-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 30px; background: rgba(255,255,255,.18); }
.stays-hero .stay-summary { grid-template-columns: repeat(2, 1fr); }
.stay-summary div { padding: 16px; background: rgba(14,45,29,.94); }
.stay-summary strong { display: block; color: #f2d897; }
.stay-summary span { color: #dce9df; font-size: 13px; }
.comparison-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.comparison-card { overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.comparison-card img { height: 245px; object-fit: cover; }
.comparison-body { padding: 28px; }
.comparison-card .duration { color: var(--earth); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.comparison-card h2 { margin: 8px 0 12px; color: var(--forest); font-size: 30px; line-height: 1.05; }
.comparison-card p { color: var(--muted); }
.comparison-points { display: grid; gap: 8px; margin: 20px 0 0; padding: 0; list-style: none; }
.comparison-points li { padding-left: 18px; position: relative; color: #455348; }
.comparison-points li::before { content: ""; position: absolute; left: 0; top: .68em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.shared-experience { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.shared-experience h2 { color: var(--forest); font-size: clamp(38px, 5vw, 58px); line-height: 1.04; }
.shared-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.shared-list article { padding: 26px; background: #fff; }
.shared-list h3 { color: var(--forest); font-size: 21px; }
.shared-list p { margin-bottom: 0; color: var(--muted); }
.identity-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.identity-panel { padding: 36px; background: var(--forest); color: #fff; }
.identity-panel:nth-child(2) { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.identity-panel .tag { color: var(--gold); }
.identity-panel h3 { margin: 12px 0; color: inherit; font-size: 32px; }
.identity-panel p { margin: 0; color: inherit; opacity: .86; }
.common-experience { margin-top: 54px; }
.common-experience > h3 { margin-bottom: 18px; color: var(--forest); font-size: 28px; }
.choose-stay { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.choose-stay article { padding: 28px; border-top: 4px solid var(--gold); background: #fff; }
.choose-stay h3 { color: var(--forest); }
.choose-stay p { color: var(--muted); }
.detail-kicker { color: #f2d897; font-size: 14px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.itinerary { display: grid; gap: 0; border-top: 1px solid var(--line); }
.itinerary-day { display: grid; grid-template-columns: 150px 1fr; gap: 34px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.day-label strong { display: block; color: var(--earth); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.day-label span { color: var(--muted); font-size: 14px; }
.day-content h3 { color: var(--forest); font-size: 29px; }
.day-content ul { margin: 0; padding-left: 20px; color: var(--muted); }
.day-content li { margin: 7px 0; }
.included-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.included-panel { padding: 34px; background: #fff; box-shadow: 0 10px 28px rgba(28,43,31,.07); }
.included-panel h2 { color: var(--forest); font-size: 32px; }
.stay-notes { padding: 34px; color: #ecf4ee; background: var(--forest); }
.stay-notes h2 { font-size: 32px; }
.stay-notes .checklist li::before { background: #f2d897; }
.stay-switcher { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 28px; border-top: 1px solid var(--line); }

/* Pagina de cabanas */
.cabin-hero { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 600px; color: #fff; background: var(--forest); }
.cabin-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 78px max(48px, calc((100vw - 1180px) / 2)); padding-right: 64px; }
.cabin-hero h1 { margin-bottom: 20px; font-size: clamp(52px, 6vw, 78px); line-height: .98; }
.cabin-hero-copy > p:not(.eyebrow) { color: #fff; font-size: 20px; }
.cabin-hero-media { position: relative; min-height: 600px; overflow: hidden; }
.cabin-hero-media img { height: 100%; object-fit: cover; }
.cabin-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,61,41,.4), transparent 45%); }
.eyebrow.dark { color: var(--earth); }
.cabin-intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px 56px; align-items: start; }
.cabin-intro h2 { color: var(--forest); font-size: clamp(40px, 5vw, 60px); line-height: 1.03; }
.cabin-intro p { color: var(--muted); font-size: 18px; }
.cabin-comfort { display: grid; grid-template-columns: 1.08fr .92fr; gap: 58px; align-items: center; }
.cabin-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cabin-gallery img { height: 210px; object-fit: cover; }
.cabin-gallery .cabin-gallery-main { grid-column: 1 / -1; height: 360px; }
.cabin-comfort .copy h2 { margin-bottom: 24px; }
.cabin-moments { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cabin-moments article { padding: 34px 30px; border-right: 1px solid var(--line); }
.cabin-moments article:last-child { border-right: 0; }
.cabin-moments span { display: block; margin-bottom: 22px; color: var(--gold); font-size: 15px; font-weight: 800; }
.cabin-moments h3 { color: var(--forest); font-size: 27px; line-height: 1.1; }
.cabin-moments p { margin-bottom: 0; color: var(--muted); }
.cabin-practical { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cabin-practical article { padding: 38px; background: #fff; box-shadow: 0 10px 28px rgba(28,43,31,.07); }
.cabin-practical h2 { color: var(--forest); font-size: 34px; line-height: 1.08; }
.cabin-practical p:last-child { margin-bottom: 0; color: var(--muted); }

/* Pagina de la finca */
.farm-hero { display: grid; grid-template-columns: .95fr 1.05fr; min-height: 600px; color: #fff; background: var(--forest); }
.farm-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 78px max(48px, calc((100vw - 1180px) / 2)); padding-right: 64px; }
.farm-hero h1 { margin-bottom: 20px; font-size: clamp(52px, 6vw, 78px); line-height: .98; }
.farm-hero-copy > p:not(.eyebrow) { color: #fff; font-size: 20px; }
.farm-hero-media { position: relative; min-height: 600px; overflow: hidden; }
.farm-hero-media img { height: 100%; object-fit: cover; }
.farm-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,61,41,.42), transparent 46%); }
.photo-placeholder { display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; color: var(--earth); font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace; font-size: 13px; letter-spacing: .04em; background-color: #eae5d8; background-image: repeating-linear-gradient(45deg, rgba(154,125,74,.12) 0 10px, transparent 10px 20px); border: 1px dashed var(--line); }

/* Bloque 2 — panorama + proporción de la finca */
.farm-overview { max-width: 940px; margin: 0 auto; text-align: center; }
.farm-overview h2 { color: var(--forest); font-size: clamp(40px, 5vw, 60px); line-height: 1.03; margin-bottom: 24px; }
.farm-overview-lead { max-width: 760px; margin: 0 auto; }
.farm-overview-lead p { color: var(--muted); font-size: 18px; }
.farm-proportion { max-width: 660px; margin: 52px auto 0; }
.farm-proportion .fp-total { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.farm-proportion .fp-total strong { color: var(--forest); font-family: 'Spectral', serif; font-size: clamp(64px, 9vw, 92px); line-height: .9; }
.farm-proportion .fp-total span { color: var(--earth); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
.fp-bar { display: flex; height: 16px; border-radius: 999px; overflow: hidden; margin: 26px 0 22px; box-shadow: inset 0 0 0 1px rgba(23,61,41,.08); }
.fp-bar .fp-forest { flex: 20; background: var(--forest); }
.fp-bar .fp-productive { flex: 5; background: var(--gold); }
.fp-legend { display: flex; justify-content: center; gap: 16px 52px; flex-wrap: wrap; }
.fp-legend > div { display: flex; align-items: baseline; gap: 10px; text-align: left; color: var(--muted); font-size: 16px; max-width: 270px; }
.fp-legend strong { color: var(--forest); font-family: 'Spectral', serif; font-size: 20px; white-space: nowrap; }
.fp-legend .fp-dot { flex-shrink: 0; width: 11px; height: 11px; border-radius: 50%; transform: translateY(1px); }
.fp-legend .fp-dot.forest { background: var(--forest); }
.fp-legend .fp-dot.productive { background: var(--gold); }

/* Encabezado de sección centrado */
.centered-head { max-width: 820px; margin: 0 auto; text-align: center; }
.centered-head h2 { color: var(--forest); font-size: clamp(40px, 5vw, 60px); line-height: 1.03; }

/* Bloque 3 — banda entrelazada foto/texto */
.farm-weave-section { padding: clamp(46px, 6vw, 76px) 0; background: var(--cream); border-top: 1px solid var(--line); }
.farm-weave-section .centered-head { margin-bottom: clamp(34px, 4vw, 48px); padding: 0 24px; }
.farm-weave { display: flex; flex-direction: column; }
.fw-row { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.fw-media { min-height: 460px; overflow: hidden; }
.fw-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fw-row:nth-child(even) .fw-media { order: -1; }
.fw-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 5vw, 74px) clamp(28px, 5vw, 74px); }
.fw-copy h3 { font-size: clamp(28px, 3vw, 38px); line-height: 1.06; margin-bottom: 16px; }
.fw-copy p { font-size: 18px; line-height: 1.6; margin: 0; }
.fw-copy-cream { background: #fff; }
.fw-copy-cream h3 { color: var(--forest); }
.fw-copy-cream p { color: var(--muted); }
.fw-copy-earth { background: var(--earth); }
.fw-copy-earth h3 { color: #fff; }
.fw-copy-earth p { color: #f2e7d5; }

/* Bloque 4 — historia sobre foto con recuadro */
.farm-forest-hero { position: relative; display: flex; align-items: center; justify-content: center; min-height: 760px; padding: 90px 24px; overflow: hidden; }
.farm-forest-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.farm-forest-hero::after { content: ""; position: absolute; inset: 0; background: rgba(20,36,25,.32); z-index: 1; }
.fh-card { position: relative; z-index: 2; max-width: 650px; padding: clamp(38px, 4.5vw, 60px) clamp(30px, 4vw, 58px); background: rgba(23,61,41,.9); color: #fff; text-align: center; }
.fh-card h2 { color: #fff; font-size: clamp(34px, 4vw, 52px); line-height: 1.04; margin: 0 0 22px; }
.fh-card p { color: #e7efe7; font-size: 16.5px; line-height: 1.65; margin: 0 0 14px; }
.fh-card p:last-child { margin-bottom: 0; }
.fh-card p em { color: #fff; }
.fh-card a { color: #f1dfb4; }

/* Bloque 5 — cierre centrado */
.farm-closing { max-width: 780px; margin: 0 auto; text-align: center; }
.farm-closing h2 { color: var(--forest); font-size: clamp(38px, 4.6vw, 56px); line-height: 1.03; margin-bottom: 20px; }
.farm-closing p { color: var(--muted); font-size: 18px; }
.farm-closing .actions { justify-content: center; margin-top: 30px; }

/* Pagina como llegar */
.arrival-hero { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 600px; color: #fff; background: var(--forest); }
.arrival-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 78px max(48px, calc((100vw - 1180px) / 2)); padding-right: 64px; }
.arrival-hero h1 { margin-bottom: 20px; font-size: clamp(52px, 6vw, 78px); line-height: .98; }
.arrival-hero-copy > p:not(.eyebrow) { color: #fff; font-size: 20px; }
.arrival-hero-media { position: relative; min-height: 600px; overflow: hidden; }
.arrival-hero-media img { height: 100%; object-fit: cover; }
.arrival-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,61,41,.4), transparent 46%); }
.arrival-steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.arrival-steps article { padding: 34px 30px; border-right: 1px solid var(--line); }
.arrival-steps article:last-child { border-right: 0; }
.arrival-steps span { display: block; margin-bottom: 22px; color: var(--gold); font-weight: 800; }
.arrival-steps h2 { margin-bottom: 10px; color: var(--forest); font-size: 28px; line-height: 1.08; }
.arrival-steps p { margin-bottom: 0; color: var(--muted); }
.route-schedule { margin-top: 18px; border-top: 1px solid var(--line); }
.route-schedule summary { padding-top: 14px; color: var(--forest); font-weight: 800; cursor: pointer; }
.route-schedule ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 14px; margin: 14px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 15px; }
.route-schedule li { display: grid; gap: 2px; }
.route-schedule strong { color: var(--forest); font-size: 16px; }
.route-schedule span { margin: 0; color: var(--muted); font-size: 13px; font-weight: 500; text-transform: none; letter-spacing: 0; }
.arrival-origins { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.arrival-origins article { padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.arrival-origins h3 { margin-bottom: 10px; color: var(--forest); font-size: 29px; line-height: 1.1; }
.arrival-origins p:last-child { margin-bottom: 0; color: var(--muted); }
.private-transfer { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; margin-top: 32px; padding: 38px; color: #eef5ef; background: var(--forest); }
.private-transfer h2 { margin-bottom: 12px; font-size: 34px; line-height: 1.08; }
.private-transfer p:last-child { margin-bottom: 0; color: #d5e3d9; }
.arrival-preparation { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.arrival-preparation h2 { color: var(--forest); font-size: clamp(40px, 5vw, 58px); line-height: 1.03; }
.arrival-preparation > div > p:last-child { color: var(--muted); font-size: 18px; }
.arrival-notes { border-top: 1px solid var(--line); }
.arrival-notes article { padding: 24px 0; border-bottom: 1px solid var(--line); }
.arrival-notes h3 { margin-bottom: 10px; color: var(--forest); font-size: 24px; }
.arrival-notes p { margin-bottom: 0; color: var(--muted); }

/* Pagina de contacto */
.contact-hero { padding: 105px 24px; color: #fff; background: linear-gradient(120deg, #102f20, var(--forest) 58%, #315d43); }
.compact-contact-hero { padding: 92px 24px; }
.compact-contact-hero .wrap { max-width: 860px; }
.contact-hero-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.contact-hero h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(54px, 7vw, 86px); line-height: .96; }
.contact-hero .eyebrow { color: #f2d897; }
.contact-hero p:not(.eyebrow) { max-width: 760px; margin-bottom: 0; color: #fff; font-size: 20px; }
.contact-assurance { padding: 32px; border: 1px solid rgba(255,255,255,.28); }
.contact-assurance span { display: block; margin-bottom: 12px; color: #f2d897; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-assurance p { font-size: 17px; }
.contact-channels { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-hero-copy.is-centered { max-width: 760px; margin: 0 auto; text-align: center; }
.contact-mark { position: relative; display: block; width: 96px; height: 12px; margin: 0 auto 28px; }
.contact-mark::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1.5px; background: var(--gold); transform: translateY(-50%); }
.contact-mark::after { content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; background: var(--gold); transform: translate(-50%, -50%) rotate(45deg); }
.hero-info .contact-hero-copy.is-centered > p:not(.eyebrow) { max-width: 720px; margin: 0 auto; color: var(--forest); font-family: 'Spectral', serif; font-weight: 400; font-size: clamp(21px, 2.4vw, 27px); line-height: 1.5; }
.contact-channel { padding: 42px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.contact-channel.primary { color: var(--ink); background: var(--cream); border-color: var(--gold); }
.contact-channel h2 { margin-bottom: 16px; color: var(--forest); font-size: 38px; line-height: 1.05; }
.contact-channel.primary h2 { color: var(--forest); }
.contact-channel p:not(.eyebrow):not(.copy-status) { color: var(--muted); font-size: 18px; }
.contact-channel.primary p:not(.eyebrow) { color: var(--muted); }
.contact-email { color: var(--forest); font-weight: 800; text-decoration: underline; }
.contact-channel .contact-help { font-size: 15px !important; }
.copy-email { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.copy-status { min-height: 25px; margin: 12px 0 0; font-size: 14px; }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-details article { padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.contact-details span { display: block; margin-bottom: 20px; color: var(--gold); font-weight: 800; }
.contact-details h3 { color: var(--forest); font-size: 27px; line-height: 1.1; }
.contact-details p { margin-bottom: 0; color: var(--muted); }
.contact-process { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.contact-process h2 { color: var(--forest); font-size: clamp(40px, 5vw, 58px); line-height: 1.03; }
.contact-process > div > p:last-child { color: var(--muted); font-size: 18px; }
.contact-process-steps { border-top: 1px solid var(--line); }
.contact-process-steps article { padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-process-steps strong { color: var(--forest); font-size: 25px; }
.contact-process-steps p { margin: 5px 0 0; color: var(--muted); }
.contact-explore { background: #eef1e9; }
.contact-explore .wrap { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.contact-explore h2 { margin-bottom: 0; color: var(--forest); font-size: 36px; }
.contact-explore .actions { margin-top: 0; }
.contact-note {
  max-width: 760px;
  text-align: center;
}
.contact-note p {
  margin-bottom: 0;
  color: var(--forest);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-info .eyebrow {
  color: var(--earth);
}
.hero-info h1 {
  color: var(--forest);
}
.hero-info p,
.hero-info .lead,
.hero-info .birding-hero .lead,
.hero-info .stays-hero-copy > p:not(.eyebrow),
.hero-info .stay-detail-copy > p:not(.eyebrow),
.hero-info .cabin-hero-copy > p:not(.eyebrow),
.hero-info .farm-hero-copy > p:not(.eyebrow),
.hero-info .arrival-hero-copy > p:not(.eyebrow),
.hero-info .contact-hero-copy > p:not(.eyebrow),
.hero-info .page-hero-copy > p:not(.eyebrow),
.hero-info .article-hero-copy > p:not(.eyebrow) {
  color: var(--muted);
}
.hero-info .article-meta {
  color: var(--earth);
}
.hero-info * {
  max-width: 100%;
}
.hero-info p,
.hero-info h1 {
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100vw;
    max-width: 100vw;
    padding: 12px 18px;
  }
  .brand { line-height: 1.1; }
  .menu-toggle {
    display: inline-flex !important;
    margin-left: auto;
    border-color: var(--forest);
    color: #fff;
    background: var(--forest);
  }
  .topbar .menu-toggle {
    position: static;
    flex: 0 0 auto;
  }
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    display: none;
    width: min(260px, calc(100vw - 28px));
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(8, 21, 14, 0.18);
  }
  .topbar.menu-open .nav {
    display: grid;
    gap: 10px;
  }
  .nav a {
    padding: 4px 0;
    white-space: nowrap;
  }
  .nav .nav-language {
    margin-top: 4px;
    padding-top: 12px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .nav-cta { padding: 8px 12px !important; }
  .actions,
  .actions.nowrap {
    display: grid;
    width: 100%;
  }
  .button {
    width: 100%;
  }
  .hero-content, .wrap { width: min(100% - 32px, 1180px); }
  .hero { min-height: 600px; }
  .hero h1,
  .page-hero h1,
  .birding-hero h1,
  .stays-hero h1,
  .stay-detail-hero h1,
  .cabin-hero h1,
  .farm-hero h1,
  .arrival-hero h1,
  .contact-hero h1 {
    font-size: clamp(38px, 10vw, 54px);
    line-height: 1.02;
  }
  .hero-copy,
  .lead,
  .page-hero p,
  .birding-hero .lead,
  .stays-hero p:not(.eyebrow),
  .stay-detail-hero p:not(.eyebrow),
  .cabin-hero-copy > p:not(.eyebrow),
  .farm-hero-copy > p:not(.eyebrow),
  .arrival-hero-copy > p:not(.eyebrow),
  .contact-hero p {
    font-size: 18px;
  }
  .section { padding: 62px 16px; }
  .section.compact { padding-top: 42px; padding-bottom: 42px; }
  .page-hero { padding: 72px 16px; }
  body * { min-width: 0; }
  .actions { align-items: stretch; }
  .page-hero .wrap, .section-head, .split, .grid-3, .grid-2, .footer-inner { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-content: flex-start; }
  .birding-hero, .habitat-row, .habitat-row:nth-child(even), .audience-layout, .anchor-species, .species-strip-head, .species-name-panel, .species-subhead, .species-grid, .species-mini-grid, .calendar-layout { grid-template-columns: minmax(0, 1fr); }
  .birding-hero { width: 100vw; max-width: 100vw; overflow: hidden; }
  .birding-hero-copy { width: 100%; padding: 58px 18px; }
  .birding-hero-copy > * { max-width: 100%; }
  .birding-hero-media { min-height: 440px; }
  .anchor-species-media,
  .anchor-species-media img {
    min-height: 390px;
  }
  .species-photo-rail {
    grid-auto-columns: minmax(280px, 58vw);
    padding-inline: 50px;
  }
  .day-flow, .stay-paths, .birding-facts { grid-template-columns: 1fr; }
  .day-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .habitat-row:nth-child(even) .habitat-media { order: 0; }
  .stays-hero, .stay-detail-hero, .comparison-grid, .shared-experience, .shared-list, .identity-pair, .choose-stay, .included-layout, .journal-grid, .journal-card:first-child { grid-template-columns: 1fr; }
  .stays-hero-copy, .stay-detail-copy { padding: 58px 18px; }
  .stays-hero-media, .stay-detail-media { min-height: 420px; }
  .stay-summary { grid-template-columns: 1fr; }
  .itinerary-day { grid-template-columns: 1fr; gap: 12px; }
  .cabin-hero, .cabin-intro, .cabin-comfort, .cabin-moments, .cabin-practical { grid-template-columns: 1fr; }
  .cabin-hero-copy { padding: 58px 18px; }
  .cabin-hero-media { min-height: 440px; }
  .cabin-moments article { border-right: 0; border-bottom: 1px solid var(--line); }
  .cabin-moments article:last-child { border-bottom: 0; }
  .farm-hero { grid-template-columns: 1fr; }
  .farm-hero-copy { padding: 58px 18px; }
  .farm-hero-media { min-height: 440px; }
  .fw-row { grid-template-columns: 1fr; }
  .fw-row .fw-media { order: -1 !important; min-height: 260px; }
  .fw-copy { padding: 34px 20px; }
  .farm-forest-hero { min-height: 0; padding: 60px 16px; }
  .fp-legend { gap: 14px; }
  .arrival-hero, .arrival-steps, .arrival-origins, .private-transfer, .arrival-preparation { grid-template-columns: 1fr; }
  .arrival-hero-copy { padding: 58px 18px; }
  .arrival-hero-media { min-height: 440px; }
  .arrival-steps article { border-right: 0; border-bottom: 1px solid var(--line); }
  .arrival-steps article:last-child { border-bottom: 0; }
  .contact-hero-layout, .contact-channels, .contact-details, .contact-process { grid-template-columns: 1fr; }
  .contact-hero { padding: 78px 16px; }
  .contact-explore .wrap { display: grid; align-items: start; }
  .contact-explore .actions { margin-top: 12px; }
  .floating-whatsapp {
    right: 72px;
    top: max(12px, env(safe-area-inset-top));
    bottom: auto;
    width: 44px;
    height: 44px;
    transform: none;
  }
  .floating-whatsapp svg { width: 25px; height: 25px; }
}

@media (max-width: 560px) {
  .topbar { padding: 11px 14px; }
  .nav { font-size: 13px; }
  .hero-info {
    width: 100vw;
    overflow: hidden;
    padding: 42px 14px;
  }
  .hero-info .wrap {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin: 0 auto;
  }
  .hero-info .eyebrow {
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: .08em;
    overflow-wrap: anywhere;
  }
  .hero-info h1 {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }
  .hero-info p,
  .hero-info .lead {
    font-size: 18px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }
  .hero-content, .wrap { width: min(100% - 28px, 1180px); }
  .hero { min-height: 560px; }
  .hero-content { padding: 58px 0; }
  .hero h1,
  .page-hero h1,
  .birding-hero h1,
  .stays-hero h1,
  .stay-detail-hero h1,
  .cabin-hero h1,
  .farm-hero h1,
  .arrival-hero h1,
  .contact-hero h1 {
    font-size: clamp(34px, 11vw, 46px);
  }
  .section-head h2,
  .copy h2,
  .experience-intro h2,
  .audience-layout h2,
  .calendar-layout h2,
  .shared-experience h2,
  .cabin-intro h2,
  .farm-intro h2,
  .farm-forest h2,
  .arrival-preparation h2,
  .contact-process h2 {
    font-size: clamp(30px, 9vw, 40px);
  }
  .cta h2 { font-size: 34px; }
  .cta .actions { flex-wrap: wrap; }
  .birding-facts,
  .stay-summary {
    margin-top: 24px;
  }
  .habitat-copy,
  .anchor-species-copy,
  .species-list-card,
  .service-panel,
  .card,
  .comparison-body,
  .identity-panel,
  .included-panel,
  .stay-notes,
  .contact-channel,
  .contact-details article,
  .arrival-origins article,
  .farm-systems article,
  .cabin-practical article {
    padding: 24px;
  }
  .gallery,
  .cabin-gallery {
    grid-template-columns: 1fr;
  }
  .anchor-species-media,
  .anchor-species-media img {
    min-height: 320px;
  }
  .anchor-species-media span {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    font-size: 12px;
  }
  .anchor-species-copy h3 {
    font-size: clamp(36px, 12vw, 44px);
  }
  .species-photo-strip {
    margin-top: 28px;
    padding-top: 24px;
  }
  .species-strip-head {
    gap: 8px;
  }
  .species-strip-head p {
    font-size: 16px;
  }
  .species-photo-rail {
    grid-auto-columns: minmax(240px, 82vw);
    gap: 12px;
    padding-inline: 38px;
  }
  .species-photo-card,
  .species-photo-card img {
    min-height: 285px;
    height: 285px;
  }
  .species-carousel-control {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
  .species-carousel-control.prev {
    left: 4px;
  }
  .species-carousel-control.next {
    right: 4px;
  }
  .species-photo-name {
    padding: 16px;
  }
  .species-photo-name strong {
    font-size: 19px;
  }
  .species-subhead {
    margin-top: 34px;
    padding-top: 24px;
  }
  .species-subhead h3,
  .species-list-card h3 {
    font-size: 26px;
  }
  .species-name-panel ul {
    grid-template-columns: 1fr;
  }
  .gallery img,
  .gallery img:first-child,
  .cabin-gallery img,
  .cabin-gallery .cabin-gallery-main {
    height: 260px;
  }
}




/* ================= PATRÓN INTERNO COMPARTIDO (propuesta) ================= */
body { font-family: 'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif; }
h1, h2, h3, .brand { font-family: 'Spectral', Georgia, 'Times New Roman', serif; letter-spacing: -0.005em; }
.brand { font-weight: 600; }

/* Barra transparente sobre el hero, verde sólida al bajar */
.topbar {
  position: fixed; left: 0; right: 0; top: 0;
  background: linear-gradient(180deg, rgba(8,21,14,.55), rgba(8,21,14,0));
  border-bottom: 0;
  transition: background 180ms ease, border-color 180ms ease;
}
.topbar .brand { color: #fff; text-shadow: 0 2px 12px rgba(8,21,14,.4); }
.topbar .nav a { color: #fff; text-shadow: 0 2px 12px rgba(8,21,14,.4); }
.topbar .nav a[aria-current="page"], .topbar .nav a:hover { color: #f2d897; text-decoration: none; }
.topbar.is-scrolled { background: rgba(23,61,41,.94); border-bottom: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(10px); }
.topbar.is-scrolled .brand, .topbar.is-scrolled .nav a { text-shadow: 0 2px 12px rgba(8,21,14,.26); }
.topbar .menu-toggle { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(8,21,14,.2); }

/* Hero a sangre hasta arriba + título superpuesto */
.photo-hero { position: relative; height: 100vh; min-height: 560px; max-height: none; display: flex; align-items: flex-end; overflow: hidden; }
.photo-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,21,14,.30) 0%, rgba(8,21,14,0) 30%, rgba(8,21,14,.74) 100%); }
.photo-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-hero-overlay { position: relative; z-index: 1; width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding-bottom: clamp(80px, 14vh, 160px); color: #fff; }
.photo-hero-overlay .ph-title { display: block; margin: 0; font-family: 'Spectral', Georgia, serif; font-weight: 500; font-size: clamp(32px, 5vw, 64px); line-height: 1; letter-spacing: normal; color: #fff; text-shadow: 0 12px 30px rgba(8,21,14,.5); }

@media (max-width: 1100px) {
  .topbar .nav a { color: var(--ink); text-shadow: none; }
  .topbar .nav a[aria-current="page"], .topbar .nav a:hover { color: var(--leaf); }
  .topbar.is-scrolled .nav a { color: var(--ink); }
  .topbar.is-scrolled .menu-toggle { border-color: var(--forest); background: var(--forest); }
}
@media (max-width: 560px) {
  .photo-hero-overlay .ph-title { font-size: clamp(30px, 9vw, 42px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
