/* CSS reorganizado y depurado. Se conservaron los selectores públicos y la cascada funcional; se eliminaron declaraciones anuladas y se agruparon bloques idénticos. */

@import url("https://fonts.googleapis.com/css2?family=Kalam:wght@400;700&family=Nunito+Sans:wght@400;600;700;800;900&display=swap");

:root {
  --paper-deep: #ead9b7;
  --paper: #efe6d6;
  --paper-light: #f8f0e2;
  --earth: #bb733c;
  --earth-deep: #855334;
  --earth-dark: #633e2c;
  --category-attraction: #4381ad;
  --category-service: #f05a46;
  --category-common: #e8b948;
  --accent-teal: #18a19b;
  --accent-violet: #a785bc;
  --accent-magenta: #c03287;
  --ink: #2b211b;
  --muted: #5d4c40;
  --line: rgba(99, 62, 44, 0.28);
  --bg: var(--paper);
  --bg-soft: var(--paper-light);
  --surface: var(--paper-light);
  --surface-strong: var(--paper-deep);
  --accent: var(--earth);
  --accent-strong: var(--earth-dark);
  --gold: var(--category-common);
  --sage: var(--accent-teal);
  --shadow: 0 18px 45px rgba(75, 43, 24, 0.18);
  --radius: 8px;
  --max: 1240px;
  --font-display: "Mega Marker", "Kalam", cursive;
  --font-narrative: "Kalam", cursive;
  --font-body: "Cerco Demo", "Nunito Sans", "Segoe UI", system-ui, sans-serif;
  --font-ui: "Cerco Demo", "Nunito Sans", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.62;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 16px clamp(18px, 3vw, 52px);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 156px;
  text-decoration: none;
}

.brand-logo {
  width: min(188px, 34vw);
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a,
.language-switch button,
.button,
[data-pay] {
  min-height: 46px;
  border-radius: 7px;
  font: 800 15px/1 var(--font-ui);
  letter-spacing: 0;
}

.main-nav a {
  padding: 15px 13px;
  color: #2a211b;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-strong);
  background: rgba(143, 63, 35, 0.08);
}

.main-nav .nav-cta {
  color: #fff7ea;
  background: var(--accent);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta.active {
  color: #fff;
  background: var(--accent-strong);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 5px;
  padding: 11px;
  background: #fff7e8;
  border: 1px solid rgba(143, 63, 35, 0.22);
  border-radius: 7px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent-strong);
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.language-switch {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.language-switch button {
  padding: 0 12px;
  color: #2a211b;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--accent-strong);
  background: #f1dfc7;
  border-color: rgba(143, 63, 35, 0.22);
}

main {
  min-height: 70vh;
}

.home-document {
  width: min(1280px, calc(100% - 28px));
  margin: 28px auto 42px;
  overflow: hidden;
  border: 1px solid rgba(24, 18, 14, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(45, 32, 24, 0.18);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(42px, 8vw, 96px) clamp(18px, 5vw, 70px);
  isolation: isolate;
}

.home-hero {
  min-height: 560px;
  padding: 62px clamp(30px, 5vw, 68px) 126px;
  text-align: left;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-slider .hero-media {
  z-index: auto;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1100ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slider-controls {
  position: absolute;
  top: 24px;
  right: clamp(18px, 4vw, 54px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  color: #fff9ed;
  background: rgba(24, 18, 14, 0.54);
  border: 1px solid rgba(255, 247, 234, 0.28);
  border-radius: 7px;
  backdrop-filter: blur(8px);
}

.hero-slider-controls button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  color: #fff9ed;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font: 800 23px/1 var(--font-ui);
}

.hero-slider-controls button:hover,
.hero-slider-controls button:focus-visible {
  background: rgba(255, 247, 234, 0.16);
  border-color: rgba(255, 247, 234, 0.5);
}

.hero-slider-controls span {
  min-width: 42px;
  text-align: center;
  font: 700 13px/1 var(--font-ui);
}

.home-hero .hero-media {
  filter: saturate(0.95) contrast(1.05) brightness(0.82);
  animation: hero-slow-zoom 22s ease-in-out infinite alternate;
}

.home-hero .hero-copy {
  width: min(660px, 100%);
  margin: 0;
}

.home-hero .hero-copy,
.home-hero .hero-copy.reveal,
.home-hero .hero-copy.reveal.visible {
  transform: translateY(-34px);
}

.home-hero h1 {
  font-family: var(--font-display);
  font-weight: 850;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.32);
}

.home-hero p:not(.small-label) {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.home-hero .hero-actions {
  justify-content: flex-start;
  margin-top: 26px;
}

.home-hero .hero-proof {
  display: none;
}

.home-hero + .opening-section.reveal {
  transform: none;
  opacity: 1;
}

.hero-cards {
  position: absolute;
  right: clamp(30px, 5vw, 68px);
  bottom: 28px;
  left: clamp(30px, 5vw, 68px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-cards article {
  color: #fff9ed;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.17), rgba(255, 250, 240, 0.07)),
    rgba(32, 23, 17, 0.62);
  border: 1px solid rgba(255, 247, 234, 0.28);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.hero-cards strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-ui);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 850;
  line-height: 1.1;
}

.hero-cards span {
  display: block;
  color: rgba(255, 247, 234, 0.84);
  font-size: 17px;
  line-height: 1.35;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(45, 32, 24, 0.76) 0%, rgba(45, 32, 24, 0.42) 34%, rgba(45, 32, 24, 0.04) 68%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
  color: #fff7ea;
}

.hero-copy.reveal,
.hero-proof.reveal {
  transform: none;
  opacity: 1;
}

@keyframes hero-slow-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.055);
  }
}

.small-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 62px);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero p:not(.small-label),
.page-hero p:not(.small-label) {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(20px, 2.2vw, 24px);
  color: rgba(255, 247, 234, 0.88);
}

.home-hero h1 {
    max-width: 961px;
    min-width: 800px;
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.08;
}

.home-hero p:not(.small-label) {
  max-width: 400px;
  margin-inline: 0;
  font-size: clamp(21px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff9ed;
  background: var(--accent);
}

.hero-proof {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-proof span {
  padding: 10px 13px;
  color: #fff7ea;
  background: rgba(45, 32, 24, 0.56);
  border: 1px solid rgba(255, 247, 234, 0.25);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
}

.page-hero,
.split-section,
.three-columns,
.route-path,
.tiers,
.contact-grid,
.feature-band {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.home-section {
  padding: clamp(42px, 5vw, 66px) clamp(26px, 5vw, 64px);
}

.section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 12px;
}

.section-heading h2 {
  margin: 0;
  color: #241a14;
  font-family: var(--font-ui);
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 850;
}

.section-heading span {
  display: block;
  height: 2px;
  background: rgba(45, 32, 24, 0.28);
}

.section-lead {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: 21px;
}

.story-card-grid, .legend-grid, .quick-tiers, .experience-grid, .route-preview-grid {
    display: grid;
    gap: 18px;
}

.legend-grid,
.home-row {
  grid-template-columns: repeat(2, 1fr);
}

.visual-card {
  margin: 0;
  overflow: hidden;
  padding: 10px;
  background: rgba(255, 253, 247, 0.86);
  border: 1px solid rgba(45, 32, 24, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(75, 43, 24, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.visual-card img,
.mini-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(45, 32, 24, 0.26);
  transition: transform 520ms ease;
}

.visual-card:hover {
  transform: translateY(-5px);
  border-color: rgba(143, 63, 35, 0.32);
  box-shadow: 0 24px 42px rgba(75, 43, 24, 0.18);
}

.visual-card:hover img {
  transform: scale(1.045);
}

.visual-card .hotel-photo {
  aspect-ratio: 16 / 8.5;
  object-position: center;
}

.hotel-showcase {
  width: min(980px, calc(100% - 36px));
  margin: 12px auto 16px;
  padding: 10px;
  background: rgba(255, 253, 247, 0.72);
  border: 2px solid rgba(45, 32, 24, 0.26);
}

.hotel-showcase img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.visual-card h3,
.visual-card figcaption {
  margin: 9px 0 0;
  color: #201711;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.mini-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(170deg, transparent 52%, rgba(104, 116, 90, 0.42) 53% 64%, transparent 65%),
    linear-gradient(12deg, #d7c8b2 0 44%, #b7aa96 45% 61%, #e7ddcb 62%);
}

.mini-visual::before,
.mini-visual::after {
  position: absolute;
  content: "";
  border: 2px solid rgba(45, 32, 24, 0.38);
}

.native-scene::before {
  left: 16%;
  bottom: 18%;
  width: 22%;
  height: 42%;
  border-radius: 48% 48% 18% 18%;
  background: rgba(143, 63, 35, 0.18);
}

.native-scene::after {
  right: 18%;
  bottom: 20%;
  width: 34%;
  height: 24%;
  transform: skewX(-12deg);
  background: rgba(198, 134, 58, 0.2);
}

.arriero-scene::before {
  left: 22%;
  bottom: 22%;
  width: 42%;
  height: 20%;
  border-radius: 40% 28% 20% 20%;
  background: rgba(45, 32, 24, 0.16);
}

.arriero-scene::after {
  right: 20%;
  bottom: 32%;
  width: 13%;
  height: 34%;
  border-radius: 50% 50% 18% 18%;
  background: rgba(143, 63, 35, 0.18);
}

.hotel-scene {
  background:
    linear-gradient(180deg, #dbd2c2 0 42%, #b9a58b 43% 45%, #d9c9ad 46%),
    linear-gradient(90deg, transparent 0 18%, rgba(104, 116, 90, 0.42) 19% 27%, transparent 28% 70%, rgba(104, 116, 90, 0.36) 71%);
}

.hotel-scene::before {
  left: 22%;
  top: 36%;
  width: 54%;
  height: 34%;
  background: rgba(255, 253, 247, 0.55);
}

.hotel-scene::after {
  left: 18%;
  top: 28%;
  width: 62%;
  height: 16%;
  transform: skewX(-18deg);
  background: rgba(101, 72, 48, 0.24);
}

.route-panorama {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 170px;
  text-decoration: none;
  border: 1px solid rgba(45, 32, 24, 0.22);
  background: var(--surface-strong);
}

.route-panorama img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: saturate(0.78) brightness(1.04);
}

.route-panorama::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 248, 236, 0.42), rgba(255, 248, 236, 0.12));
}

.route-tag {
  position: absolute;
  z-index: 1;
  padding: 8px 14px;
  color: #5b5147;
  background: rgba(255, 253, 247, 0.9);
  border: 2px solid rgba(45, 32, 24, 0.2);
  border-radius: 6px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(45, 32, 24, 0.12);
}

.tag-one { left: 7%; top: 46%; }
.tag-two { left: 33%; top: 28%; }
.tag-three { right: 26%; top: 34%; }
.tag-four { right: 7%; top: 52%; }

.story-card-grid,
.quick-tiers {
  grid-template-columns: repeat(3, 1fr);
}

.quick-tiers a {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: baseline;
  min-height: 58px;
  padding: 14px;
  color: #5d554c;
  text-decoration: none;
  background: rgba(255, 253, 247, 0.62);
  border: 2px solid rgba(45, 32, 24, 0.28);
  font-size: 24px;
  font-weight: 850;
}

.quick-tiers span {
  font-size: 18px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.home-row {
  display: grid;
  gap: 26px;
  align-items: center;
}

.home-row p {
  font-size: 18px;
}

.map-embed {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 2px solid rgba(45, 32, 24, 0.36);
}

.map-embed iframe {
  width: 100%;
  min-height: 190px;
  border: 1px solid rgba(45, 32, 24, 0.24);
  filter: sepia(0.16) saturate(0.82);
}

.map-embed.large {
  margin-top: 20px;
}

.map-embed.large iframe {
  min-height: 360px;
}

.map-embed a {
  justify-self: start;
  color: var(--accent-strong);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.opening-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  padding-top: clamp(32px, 4vw, 44px);
}

.opening-copy .section-lead {
  max-width: 720px;
}

.opening-visual-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.symbol-note {
  margin-top: 24px;
  padding: 22px 24px;
  color: #211711;
  background:
    linear-gradient(90deg, rgba(104, 116, 90, 0.16), rgba(255, 250, 240, 0.74));
  border-left: 6px solid var(--sage);
  border-radius: var(--radius);
}

.symbol-note h3 {
  margin: 0 0 8px;
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 30px);
  line-height: 1.1;
}

.symbol-note p {
  margin: 0;
  max-width: 760px;
  font-size: 20px;
}

.opening-image-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    height: 418px;
    min-height: 0;
    border-radius: var(--radius);
    box-shadow: 0 24px 54px rgba(75, 43, 24, 0.22);
}

.opening-image-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(24, 18, 14, 0.68));
}

.opening-image-card img {
    width: 100%;
    height: 170%;
    min-height: 0;
    object-fit: cover;
    filter: grayscale(1);
}

.opening-image-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #fff7ea;
  font: 800 22px/1.25 var(--font-ui);
}

.india-poem {
  margin: 0;
  padding: 24px 26px 20px;
  color: var(--earth-dark);
  background: rgba(255, 253, 247, 0.78);
  border-left: 5px solid var(--accent);
  box-shadow: 0 12px 28px rgba(75, 43, 24, 0.1);
}

.india-poem p {
  margin: 0;
  white-space: pre-line;
  font: 400 clamp(17px, 1.65vw, 21px)/1.55 var(--font-narrative);
}

.india-poem cite {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font: 800 13px/1.3 var(--font-ui);
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.experience-section {
  color: #241a14;
}

.experience-section .section-heading h2 {
  color: #241a14;
}

.experience-section .section-heading span {
  background: rgba(45, 32, 24, 0.28);
}

.experience-section .section-lead {
  color: rgba(48, 35, 26, 0.86);
}

.experience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 24px;
}

.experience-card {
  overflow: hidden;
  color: #211711;
  background: #fff8ea;
  border: 1px solid rgba(255, 247, 234, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.23);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.experience-card.featured {
  transform: translateY(-14px);
}

.experience-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

.experience-card.featured:hover {
  transform: translateY(-20px);
}

.experience-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.experience-card.featured img {
  height: 306px;
}

.experience-card div {
  padding: 22px 22px 24px;
}

.experience-card h3 {
  margin: 0 0 8px;
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: clamp(27px, 2.6vw, 36px);
  line-height: 1.08;
}

.experience-card p {
  margin: 0;
  color: #30231a;
  font-size: 19px;
  line-height: 1.42;
}

.route-preview-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.route-preview-card {
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  color: #fff7ea;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(75, 43, 24, 0.18);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.media-status {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  width: fit-content;
  margin: 0;
  padding: 7px 10px;
  color: #fff7ea;
  background: rgba(39, 26, 18, 0.9);
  border: 1px solid rgba(255, 247, 234, 0.42);
  border-radius: 999px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
  font: 800 12px/1 var(--font-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.media-status.realized { background: rgba(42, 92, 75, 0.94); }
.media-status.construction { background: rgba(132, 74, 27, 0.94); }
.media-status.projected { background: rgba(75, 55, 104, 0.94); }
.media-status.reference { background: rgba(72, 74, 74, 0.94); }

.route-preview-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(24, 18, 14, 0.08), rgba(24, 18, 14, 0.76)),
    linear-gradient(45deg, rgba(139, 51, 27, 0.28), transparent 54%);
}

.route-preview-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 640ms ease, filter 220ms ease;
}

.route-preview-card span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  color: #fff7ea;
  background: rgba(139, 51, 27, 0.82);
  border: 1px solid rgba(255, 247, 234, 0.25);
  border-radius: 5px;
  font: 850 17px/1 var(--font-ui);
}

.route-preview-card strong {
  max-width: 92%;
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.05;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
}

.route-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(75, 43, 24, 0.24);
}

.route-preview-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.06);
}

.route-preview-card .media-status,
.park-entry-media .media-status,
.park-landmark .media-status,
.friends-hero-media .media-status,
.timeline-media .media-status {
  display: block;
  width: fit-content;
  max-width: none;
  margin: 0;
  padding: 7px 10px;
  color: #fff7ea;
  font: 800 12px/1 var(--font-ui);
  line-height: 1;
}

.friends-highlight .quick-tiers a {
  position: relative;
  overflow: hidden;
  color: #241a14;
  background: #fff7e8;
  border-color: rgba(255, 247, 234, 0.38);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.friends-highlight .quick-tiers a::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  content: "";
  background: var(--gold);
}

.friends-highlight .quick-tiers a:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.24);
}

.page-hero {
  padding: clamp(42px, 8vw, 48px) 0 28px;
}

.page-hero.compact {
  max-width: 900px;
  text-align: center;
}

.page-hero h1,
.page-hero p:not(.small-label) {
  color: var(--ink);
}

.page-hero .small-label {
  color: var(--accent);
}

.story-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 36px;
  align-items: center;
}

.story-hero-rich {
  position: relative;
  gap: clamp(34px, 5vw, 68px);
  padding-top: clamp(24px, 4vw, 44px);
  padding-bottom: 34px;
}

.story-hero-copy {
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(241, 224, 198, 0.58));
  border: 1px solid rgba(143, 63, 35, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(75, 43, 24, 0.12);
}

.story-hero-copy h1 {
  font-size: clamp(44px, 5.5vw, 72px);
}

.story-hero-copy p:not(.small-label) {
  color: #30231a;
  font-size: clamp(21px, 2vw, 25px);
}

.story-hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.story-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 54%, rgba(24, 18, 14, 0.72));
}

.story-hero-media figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: #fff7ea;
  font: 800 20px/1.28 var(--font-ui);
}

.story-intro-grid,
.story-myth-section,
.story-culture,
.story-adobe-band {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.story-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: stretch;
  margin-top: 16px;
}

.story-lead-panel {
  padding: clamp(28px, 4vw, 48px);
  background: #fffaf0;
  border: 1px solid rgba(143, 63, 35, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(75, 43, 24, 0.1);
}

.story-lead-panel p {
  margin: 0;
  color: #30231a;
  font-size: 21px;
}

.story-lead-panel p + p {
  margin-top: 16px;
}

.story-facts div {
  padding: 22px 24px;
  border-radius: var(--radius);
  box-shadow: 0 15px 34px rgba(75, 43, 24, 0.16);
}

.story-facts strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-ui);
  font-size: 22px;
  line-height: 1.18;
}

.story-facts span {
  display: block;
  font-size: 18px;
  line-height: 1.36;
}

.story-myth-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: clamp(62px, 8vw, 92px) 0;
}

.story-myth-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 26px 58px rgba(75, 43, 24, 0.2);
}

.story-myth-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-myth-copy > p:not(.small-label) {
  color: #30231a;
  font-size: 21px;
}

.story-author-note {
  margin: 22px 0 26px;
  padding: 17px 19px 18px;
  border: 1px solid rgba(128, 87, 48, 0.22);
  border-left: 4px solid var(--accent);
  background: rgba(255, 250, 239, 0.72);
}

.story-author-note p {
  margin: 0;
  color: #4c392c;
  font-size: 16px;
  line-height: 1.5;
}

.story-author-note .story-author-kicker {
  margin-bottom: 6px;
  color: var(--accent);
  font: 800 12px/1.2 var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-author-note {
  margin: 0;
  margin-top: 21px;
  padding: 18px 22px;
  border: 1px solid rgba(128, 87, 48, 0.2);
  border-left: 4px solid var(--accent);
  background: rgba(255, 250, 239, 0.72);
}

.home-author-note p {
  margin: 0;
  color: #4c392c;
  font-size: 15px;
  line-height: 1.5;
}

.home-author-note .home-author-kicker {
  margin-bottom: 5px;
  color: var(--accent);
  font: 800 12px/1.2 var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-author-note .home-author-name {
  margin-bottom: 7px;
  color: var(--earth-dark);
  font: 800 17px/1.25 var(--font-ui);
}

.home-author-note .home-author-works {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 13px;
  margin-top: 10px;
  color: var(--earth-dark);
  font-weight: 800;
}

.home-author-note .home-author-source {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.story-author-note .story-author-name {
  margin-bottom: 8px;
  color: var(--earth-dark);
  font: 800 18px/1.25 var(--font-ui);
}

.story-author-note .story-author-works {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
  margin-top: 12px;
  color: var(--earth-dark);
  font-weight: 800;
}

.story-author-note .story-author-source {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.story-sentinels-author {
  margin: 14px 0 0;
  color: var(--earth-dark);
  font: 800 15px/1.4 var(--font-ui);
}

.myth-steps {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.myth-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 16px;
  padding: 20px 22px;
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(143, 63, 35, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(75, 43, 24, 0.08);
}

.myth-steps span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff7ea;
  background: var(--accent);
  border-radius: 50%;
  font: 850 16px/1 var(--font-ui);
}

.myth-steps h3 {
  margin: 0;
  color: #24140e;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.4vw, 32px);
  line-height: 1.1;
}

.myth-steps p {
  margin: 0;
  color: #3f332b;
  font-size: 19px;
  line-height: 1.38;
}

.story-culture {
  padding: clamp(34px, 5vw, 56px);
  background:
    radial-gradient(circle at 92% 10%, rgba(104, 116, 90, 0.16), transparent 25%),
    linear-gradient(180deg, rgba(248, 236, 214, 0.96), rgba(255, 250, 240, 0.92));
  border: 1px solid rgba(143, 63, 35, 0.14);
  border-radius: var(--radius);
}

.story-scene-card p {
  margin: 12px 5px 6px;
  color: #35271d;
  font-size: 18px;
  line-height: 1.36;
}

.story-adobe-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  padding: clamp(30px, 5vw, 52px);
  color: #fff7ea;
  background:
    linear-gradient(135deg, #271a12 0%, #5c2a18 58%, #7b371e 100%);
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(75, 43, 24, 0.18);
}

.story-adobe-band h2,
.story-adobe-band p {
  color: #fff7ea;
}

.story-adobe-band p:not(.small-label) {
  max-width: 840px;
  margin-bottom: 0;
  color: rgba(255, 247, 234, 0.86);
  font-size: 21px;
}

.park-hero,
.park-pillars,
.park-route-preview,
.park-workband,
.park-support-cta {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.park-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(28px, 5vw, 58px);
  padding: clamp(28px, 5vw, 58px) 0 36px;
}

.park-hero-copy h1 {
  margin: 0;
  color: #18120e;
  font-family: var(--font-display);
  font-size: clamp(44px, 5.6vw, 74px);
  line-height: 1;
}

.park-hero-copy p:not(.small-label) {
  max-width: 680px;
  color: #30231a;
  font-size: clamp(21px, 2vw, 25px);
}

.park-hero-gallery {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 16px;
}

.park-hero-gallery figure {
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  min-height: 190px;
  margin: 0;
  padding: 18px;
  color: #fff7ea;
  border-radius: var(--radius);
  box-shadow: 0 20px 44px rgba(75, 43, 24, 0.16);
  isolation: isolate;
}

.park-hero-gallery figure.large {
  grid-row: span 2;
  min-height: 420px;
}

.park-hero-gallery figure::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(24, 18, 14, 0.02), rgba(24, 18, 14, 0.72));
}

.park-hero-gallery img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.park-hero-gallery figure:hover img {
  transform: scale(1.045);
}

.park-hero-gallery figcaption {
  font: 850 20px/1.15 var(--font-ui);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
}

.park-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px 0 44px;
}

.park-pillars article {
  padding: 30px;
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(143, 63, 35, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(75, 43, 24, 0.1);
}

.park-pillars span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: #fff7ea;
  background: var(--accent);
  border-radius: 50%;
  font: 850 16px/1 var(--font-ui);
}

.park-pillars h2 {
  font-size: clamp(30px, 3vw, 38px);
}

.park-pillars p {
  margin-bottom: 0;
  color: #35271d;
  font-size: 20px;
}

.park-route-preview {
  padding: clamp(34px, 5vw, 56px);
  background:
    radial-gradient(circle at 90% 10%, rgba(168, 98, 29, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(248, 236, 214, 0.96), rgba(255, 250, 240, 0.92));
  border: 1px solid rgba(143, 63, 35, 0.14);
  border-radius: var(--radius);
}

.park-workband {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(24px, 5vw, 52px);
  align-items: center;
  margin-top: 42px;
  padding: clamp(34px, 5vw, 58px);
  color: #fff7ea;
  background:
    radial-gradient(circle at 90% 12%, rgba(198, 134, 58, 0.24), transparent 26%),
    linear-gradient(135deg, #271a12 0%, #5c2a18 58%, #7b371e 100%);
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(75, 43, 24, 0.18);
}

.park-workband h2,
.park-workband p,
.park-workband .small-label {
  color: #fff7ea;
}

.park-workband > div > p:not(.small-label) {
  font-size: 21px;
}

.story-facts,
.park-status-grid {
  display: grid;
  gap: 14px;
}

.park-status-grid article {
  padding: 22px 24px;
  color: #241a14;
  background: #fff7e8;
  border: 1px solid rgba(255, 247, 234, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.park-status-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-strong);
  font: 850 22px/1.16 var(--font-ui);
}

.park-status-grid p {
  margin: 0;
  color: #3f332b;
  font-size: 19px;
}

.park-support-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  padding: clamp(30px, 5vw, 52px);
  background: rgba(255, 253, 247, 0.84);
  border: 1px solid rgba(143, 63, 35, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(75, 43, 24, 0.1);
}

.park-support-cta h2 {
  margin-bottom: 10px;
}

.park-support-cta p {
  max-width: 820px;
  margin-bottom: 0;
  color: #35271d;
  font-size: 21px;
}

.friends-hero,
.friends-position,
.friends-benefits,
.friends-conditions {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.friends-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.78fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px) 0 36px;
}

.park-hero-copy,
.friends-hero-copy {
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.95), rgba(241, 224, 198, 0.62));
  border: 1px solid rgba(143, 63, 35, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(75, 43, 24, 0.12);
}

.friends-hero-copy h1 {
  margin: 0;
  color: #18120e;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.3vw, 70px);
  line-height: 1;
}

.friends-hero-copy p:not(.small-label) {
  max-width: 740px;
  color: #30231a;
  font-size: clamp(21px, 2vw, 25px);
}

.friends-hero-media {
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  min-height: 470px;
  margin: 0;
  padding: 24px;
  color: #fff7ea;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.friends-hero-media::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(24, 18, 14, 0.03), rgba(24, 18, 14, 0.74));
}

.friends-hero-media img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.friends-hero-media figcaption {
  font: 850 22px/1.22 var(--font-ui);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
}

.friends-position {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
  gap: clamp(24px, 5vw, 52px);
  align-items: stretch;
  margin-top: 10px;
}

.friends-position > article {
  padding: clamp(30px, 4vw, 50px);
  background: #fffaf0;
  border: 1px solid rgba(143, 63, 35, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(75, 43, 24, 0.1);
}

.friends-position > article p {
  margin-bottom: 0;
  color: #30231a;
  font-size: 21px;
}

.friends-position aside {
  display: grid;
  gap: 14px;
}

.friends-position aside div {
  padding: 22px 24px;
  color: #fff7ea;
  background:
    linear-gradient(135deg, rgba(139, 51, 27, 0.92), rgba(74, 23, 13, 0.92));
  border-radius: var(--radius);
  box-shadow: 0 15px 34px rgba(75, 43, 24, 0.16);
}

.friends-position aside strong {
  display: block;
  margin-bottom: 6px;
  font: 850 22px/1.16 var(--font-ui);
}

.friends-position aside span {
  display: block;
  color: rgba(255, 247, 234, 0.86);
  font-size: 18px;
  line-height: 1.36;
}

.friends-benefits {
  margin-top: 42px;
  padding: clamp(34px, 5vw, 56px);
  background:
    radial-gradient(circle at 90% 10%, rgba(104, 116, 90, 0.16), transparent 25%),
    linear-gradient(180deg, rgba(248, 236, 214, 0.96), rgba(255, 250, 240, 0.92));
  border: 1px solid rgba(143, 63, 35, 0.14);
  border-radius: var(--radius);
}

.story-culture-grid,
.friends-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.friends-benefit-grid article {
  padding: 26px;
  background: rgba(255, 253, 247, 0.86);
  border: 1px solid rgba(143, 63, 35, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(75, 43, 24, 0.1);
}

.friends-benefit-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: #fff7ea;
  background: var(--accent);
  border-radius: 50%;
  font: 850 15px/1 var(--font-ui);
}

.friends-benefit-grid h3 {
  margin: 0 0 8px;
  color: #24140e;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.5vw, 34px);
  line-height: 1.08;
}

.friends-benefit-grid p {
  margin: 0;
  color: #35271d;
  font-size: 19px;
}

.friends-tiers {
  align-items: stretch;
  padding-top: 48px;
}

.friends-tiers .tier {
  position: relative;
  overflow: hidden;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 16px 38px rgba(75, 43, 24, 0.1);
}

.friends-tiers .tier.featured {
  background:
    linear-gradient(180deg, #fff6e5, #ead3ae);
}

.tier-label {
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 10px;
  color: var(--accent-strong);
  background: rgba(139, 51, 27, 0.1);
  border: 1px solid rgba(139, 51, 27, 0.14);
  border-radius: 5px;
  font: 850 13px/1 var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.friends-tiers .tier ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.friends-tiers .tier li {
  position: relative;
  padding-left: 24px;
  color: #35271d;
  font-size: 18px;
  line-height: 1.35;
}

.friends-tiers .tier li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--sage);
  border-radius: 50%;
}

.friends-tiers [data-pay] {
  color: #fff7ea;
  background: var(--accent);
  border: 1px solid rgba(74, 23, 13, 0.18);
}

.friends-tiers [data-pay]:hover {
  background: var(--accent-strong);
}

.friends-conditions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 8px;
  padding: clamp(30px, 5vw, 52px);
  color: #fff7ea;
  background:
    radial-gradient(circle at 88% 12%, rgba(198, 134, 58, 0.24), transparent 25%),
    linear-gradient(135deg, #271a12 0%, #5c2a18 58%, #7b371e 100%);
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(75, 43, 24, 0.18);
}

.friends-conditions h2,
.friends-conditions p,
.friends-conditions .small-label {
  color: #fff7ea;
}

.friends-conditions p:not(.small-label) {
  max-width: 860px;
  margin-bottom: 0;
  font-size: 21px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: 76px 0;
}

.copy-block,
.info-panel,
.tier,
.contact-card {
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(143, 63, 35, 0.16);
  border-radius: var(--radius);
}

.copy-block {
  padding: clamp(24px, 4vw, 42px);
}

h2 {
  margin: 0 0 12px;
  color: #24140e;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.text-link {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.image-card {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.image-card figcaption {
  padding: 15px 18px;
  color: var(--accent-strong);
  font-weight: 800;
}

.feature-band {
  margin-top: 16px;
  margin-bottom: 76px;
  padding: clamp(28px, 5vw, 54px);
  background: #e6d0ad;
  border: 1px solid rgba(143, 63, 35, 0.16);
  border-radius: var(--radius);
}

.feature-band p {
  max-width: 820px;
  font-size: 21px;
}

.three-columns,
.tiers,
.contact-grid {
  display: grid;
  gap: 18px;
  padding: 52px 0 78px;
}

.three-columns,
.tiers {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-panel,
.tier,
.contact-card {
  padding: 32px;
}

.panel-icon,
.station span {
  display: inline-grid;
  min-width: 52px;
  height: 40px;
  place-items: center;
  margin-bottom: 18px;
  color: #fff9ed;
  background: var(--accent);
  border-radius: 6px;
  font-weight: 850;
  font-size: 15px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.status-grid p {
  margin: 0;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.46);
  border: 1px solid rgba(143, 63, 35, 0.16);
  border-radius: 7px;
}

.route-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 34px 0 68px;
}

.route-timeline {
  position: relative;
  display: grid;
  gap: 34px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.route-timeline::before {
  position: absolute;
  top: 54px;
  bottom: 94px;
  left: 50%;
  width: 4px;
  content: "";
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(139, 51, 27, 0.15), rgba(139, 51, 27, 0.74), rgba(139, 51, 27, 0.15));
  border-radius: 99px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 74px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.timeline-item .timeline-media {
  grid-column: 1;
}

.timeline-item .timeline-marker {
  grid-column: 2;
}

.timeline-item .timeline-copy {
  grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-media {
  grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-marker {
  grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-copy {
  grid-column: 1;
  grid-row: 1;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.timeline-marker span {
  display: grid;
  place-items: center;
  color: #fff8ec;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(74, 23, 13, 0.22);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 850;
}

.timeline-media,
.timeline-copy {
  margin: 0;
  background: rgba(255, 250, 240, 0.96);
  border: 2px solid rgba(74, 23, 13, 0.18);
  box-shadow: 0 12px 28px rgba(75, 43, 24, 0.1);
}

.timeline-media {
  position: relative;
  padding: 10px;
}

.timeline-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(45, 32, 24, 0.22);
}

.timeline-copy {
  padding: clamp(24px, 4vw, 42px);
  border-left: 7px solid rgba(139, 51, 27, 0.76);
}

.timeline-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 3.8vw, 48px);
}

.timeline-copy p {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  font-size: 22px;
}

.route-path::before {
  position: absolute;
  top: 76px;
  bottom: 98px;
  left: 50%;
  width: 2px;
  content: "";
  background: linear-gradient(var(--accent), transparent);
  opacity: 0.4;
}

.station {
  position: relative;
  min-height: 215px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(239, 224, 202, 0.72));
  border: 2px solid rgba(74, 23, 13, 0.16);
  border-left: 7px solid rgba(139, 51, 27, 0.76);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(75, 43, 24, 0.08);
}

.station h2,
.tier h2,
.info-panel h2 {
  font-size: 32px;
}

.station p,
.info-panel p,
.tier p,
.contact-card,
.copy-block p {
  font-size: 20px;
}

.station p {
  max-width: 54ch;
}

.tier {
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.tier.featured {
  background: #efe0c6;
  border-color: rgba(143, 63, 35, 0.38);
  box-shadow: var(--shadow);
}

.tier strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--accent);
  font-size: 40px;
}

.tier-price {
  display: grid !important;
  gap: 3px;
}

.tier-price small {
  color: var(--muted);
  font: 800 17px/1.2 var(--font-ui);
}

.pay-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

[data-pay] {
  padding: 0 16px;
  color: var(--accent-strong);
  background: #fff7e8;
  border: 1px solid rgba(143, 63, 35, 0.24);
  cursor: pointer;
}

[data-pay]:hover {
  background: #ead4b4;
}

.support-note {
  width: min(var(--max), calc(100% - 36px));
  margin: -52px auto 76px;
  color: var(--muted);
  font-size: 18px;
  text-align: center;
}

.contact-card span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-card a,
.contact-card strong {
  color: var(--accent-strong);
  font-size: 23px;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
}

.reveal {
  transform: translateY(14px);
  opacity: 0;
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    transform: none;
    opacity: 1;
    transition: none;
  }

  .home-hero .hero-media {
    animation: none;
  }

  .hero-slide {
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    display: inline-grid;
    justify-self: end;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: stretch;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    background: rgba(255, 250, 240, 0.98);
    border: 1px solid rgba(143, 63, 35, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 16px 34px rgba(75, 43, 24, 0.12);
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 15px 14px;
  }

  .language-switch {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
  }

  .hero {
    min-height: 620px;
  }

  .home-document {
    width: min(100% - 18px, 1280px);
    margin-top: 12px;
  }

  .home-hero {
    min-height: auto;
    padding: 56px 22px;
  }

  .hero-cards {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(45, 32, 24, 0.9), rgba(45, 32, 24, 0.46));
  }

  .split-section,
  .story-hero,
  .story-intro-grid,
  .story-myth-section,
  .story-culture-grid,
  .story-adobe-band,
  .park-hero,
  .park-pillars,
  .park-workband,
  .park-support-cta,
  .friends-hero,
  .friends-position,
  .friends-benefit-grid,
  .friends-conditions,
  .three-columns,
  .tiers,
  .contact-grid,
  .route-path,
  .route-timeline,
  .story-card-grid,
  .legend-grid,
  .quick-tiers,
  .opening-section,
  .experience-grid,
  .home-row {
    grid-template-columns: 1fr;
  }

  .story-hero-copy {
    order: 1;
  }

  .story-hero-media {
    order: 2;
  }

  .story-adobe-band .button {
    width: fit-content;
  }

  .park-hero-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .park-hero-gallery figure.large {
    min-height: 320px;
  }

  .park-support-cta .button {
    width: fit-content;
  }

  .friends-conditions .button {
    width: fit-content;
  }

  .route-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-card.featured,
  .experience-card.featured:hover {
    transform: none;
  }

  .opening-image-card,
  .opening-image-card img {
    height: 340px;
    min-height: 0;
  }

  .route-path::before,
  .route-timeline::before {
    display: none;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timeline-item .timeline-marker,
  .timeline-item .timeline-media,
  .timeline-item .timeline-copy,
  .timeline-item:nth-child(even) .timeline-marker,
  .timeline-item:nth-child(even) .timeline-media,
  .timeline-item:nth-child(even) .timeline-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .timeline-marker {
    justify-items: start;
    margin-left: 12px;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-logo {
    width: min(168px, 58vw);
    max-height: 46px;
  }

  .language-switch button span {
    display: none;
  }

  .language-switch button {
    min-width: 38px;
    padding-inline: 8px;
  }

  .hero-slider-controls {
    top: 14px;
    right: 14px;
  }

  .main-nav a {
    padding-inline: 9px;
    white-space: nowrap;
  }

  .hero {
    min-height: 620px;
    padding-top: 56px;
    align-items: center;
  }

  .home-hero {
    min-height: auto;
    padding: 42px 18px 34px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .home-hero h1 {
    font-size: clamp(28px, 8.4vw, 38px);
  }

  .home-hero .hero-copy,
  .home-hero .hero-copy.reveal,
  .home-hero .hero-copy.reveal.visible {
    transform: none;
  }

  .home-hero .hero-actions {
    width: min(100%, 370px);
  }

  .hero-proof {
    position: static;
    justify-content: flex-start;
    margin-top: 24px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-actions,
  .pay-row {
    flex-direction: column;
  }

  .button,
  [data-pay] {
    width: 100%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-section {
    padding: 34px 18px;
  }

  .route-preview-grid {
    grid-template-columns: 1fr;
  }

  .story-hero-copy {
    padding: 24px;
    overflow: hidden;
  }

  .story-hero-copy h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .story-hero-copy p:not(.small-label) {
    font-size: 20px;
    line-height: 1.55;
  }

  .story-hero-copy .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .story-hero-copy .button {
    width: calc(100% - 28px);
    max-width: 100%;
    min-width: 0;
  }

  .story-intro-grid,
  .story-myth-section,
  .story-culture,
  .story-adobe-band,
  .park-hero,
  .park-pillars,
  .park-route-preview,
  .park-workband,
  .park-support-cta,
  .friends-hero,
  .friends-position,
  .friends-benefits,
  .friends-conditions {
    width: min(100% - 28px, var(--max));
  }

  .park-hero-copy h1 {
    font-size: clamp(36px, 12vw, 50px);
  }

  .park-hero-copy p:not(.small-label) {
    font-size: 20px;
    line-height: 1.55;
  }

  .park-hero-copy .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .park-hero-copy .button,
  .park-support-cta .button,
  .friends-hero-copy .button,
  .friends-conditions .button {
    width: calc(100% - 28px);
    max-width: 100%;
    min-width: 0;
  }

  .park-route-preview,
  .park-workband,
  .park-support-cta,
  .friends-benefits,
  .friends-conditions {
    padding: 24px;
  }

  .story-hero-rich,
.park-hero,
.friends-hero {
    padding-top: 24px;
  }

  .park-hero-copy,
.friends-hero-copy {
    overflow: hidden;
    padding: 24px;
  }

  .friends-hero-copy h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .friends-hero-copy p:not(.small-label) {
    font-size: 20px;
    line-height: 1.55;
  }

  .friends-hero-copy .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .friends-hero-media {
    min-height: 300px;
  }

  .park-hero-gallery figure,
  .park-hero-gallery figure.large {
    min-height: 250px;
  }

  .park-hero-gallery figcaption {
    font-size: 18px;
  }

  .story-myth-section {
    padding: 38px 0;
    display: flex;
    flex-direction: column;
}

  .myth-steps article {
    grid-template-columns: 1fr;
  }

  .myth-steps span {
    grid-row: auto;
  }

  .story-adobe-band .button {
    width: 100%;
  }

  .route-preview-card {
    min-height: 238px;
  }

  .experience-card img,
  .experience-card.featured img {
    height: 235px;
  }

  .opening-image-card,
  .opening-image-card img {
    height: 500px;
    min-height: 0;
  }

  .route-panorama img {
    height: 240px;
  }

  .route-tag {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    display: inline-flex;
    margin: 8px 6px 0;
    font-size: 13px;
  }

  .route-timeline {
    width: min(100% - 28px, var(--max));
    gap: 28px;
    padding-top: 10px;
  }

  .timeline-copy {
    padding: 24px;
  }

  .timeline-copy h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .timeline-copy p {
    font-size: 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}

/* Status labels keep their compact form across project media variants. */
.route-preview-card .media-status,
.park-entry-media .media-status,
.park-landmark .media-status,
.friends-hero-media .media-status,
.timeline-media .media-status {
  display: block;
  width: fit-content;
  max-width: none;
  margin: 0;
  padding: 7px 10px;
  color: #fff7ea;
  font: 800 12px/1 var(--font-ui);
  line-height: 1;
}

/* Home editorial refresh. */
.story-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.story-focus-grid .symbol-note {
  margin-top: 0;
}

.story-focus-grid .symbol-note .portal-marker {
  margin-bottom: 12px;
}

.sentinels-note {
  background: linear-gradient(90deg, rgba(198, 134, 58, 0.16), rgba(255, 250, 240, 0.74));
  border-left-color: var(--gold);
}

.home-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 8px;
}

.home-proof {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  color: var(--earth-dark);
  background: rgba(255, 253, 247, 0.76);
  border: 1px solid var(--line);
  font: 800 15px/1.25 var(--font-ui);
}

.home-proof .pictogram {
  width: 28px;
  height: 28px;
}

.home-story-card {
  color: inherit;
  text-decoration: none;
}

.home-story-card .portal-marker {
  display: inline-grid;
  margin: 14px 0 2px;
}

.home-story-card h3 {
  margin: 6px 0 0;
  text-align: left;
}

.home-story-card p {
  margin: 8px 0 2px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}

.home-status-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.home-status-grid {
  display: grid;
  gap: 12px;
}

.home-status-grid article {
  padding: 20px 22px;
  background: rgba(255, 253, 247, 0.8);
  border-left: 5px solid var(--accent);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-status-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--earth-dark);
  font: 850 20px/1.2 var(--font-ui);
}

.home-status-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.home-status-layout .visual-card {
  display: flex;
  flex-direction: column;
}

.home-status-layout .visual-card img {
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.home-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .story-focus-grid,
  .home-status-layout {
    grid-template-columns: 1fr;
  }

  .home-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-inline-actions .button {
    width: 100%;
  }
}

/* Payment method modal. */
.payment-modal[hidden],
.payment-modal-link[hidden],
.payment-modal-pending[hidden] {
  display: none;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.payment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(39, 26, 18, 0.68);
  backdrop-filter: blur(4px);
}

.payment-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: min(92vh, 720px);
  overflow: auto;
  padding: clamp(28px, 5vw, 48px);
  color: var(--ink);
  background:
    linear-gradient(rgba(248, 240, 226, 0.96), rgba(248, 240, 226, 0.96)),
    url("../patterns/guarda-rombos.svg") repeat;
  border: 2px solid var(--earth-dark);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(24, 18, 14, 0.34);
}

.payment-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--earth-dark);
  background: transparent;
  border: 1px solid rgba(99, 62, 44, 0.25);
  border-radius: 50%;
  cursor: pointer;
  font: 700 28px/1 var(--font-ui);
}

.payment-modal-close:hover {
  color: var(--paper-light);
  background: var(--earth-dark);
}

.payment-dialog h2 {
  max-width: 500px;
  margin: 0;
  color: var(--earth-dark);
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.payment-modal-plan {
  margin: 12px 0 0;
  color: var(--accent-strong);
  font: 800 15px/1.3 var(--font-ui);
}

.payment-instructions {
  margin: 24px 0;
  padding: 20px 22px;
  background: rgba(255, 253, 247, 0.78);
  border-left: 4px solid var(--accent);
}

.payment-instructions p {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.payment-instructions p:last-child {
  margin-bottom: 0;
}

.payment-email {
  color: var(--earth-dark);
  font-weight: 900;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.payment-modal-link {
  width: fit-content;
}

.payment-modal-pending {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* Route map, visit flow and project-status notes. */
.route-concept-map,
.route-visit-flow {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px) 0;
}

.route-concept-map .section-heading,
.route-visit-flow .section-heading {
  margin-bottom: 12px;
}

.route-concept-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.route-concept-node {
  display: grid;
  min-height: 58px;
  max-width: 180px;
  padding: 12px 16px;
  place-items: center;
  color: var(--earth-dark);
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(107, 44, 25, 0.26);
  border-radius: 999px;
  font: 800 14px/1.2 var(--font-ui);
  text-align: center;
}

.route-concept-node.route-concept-entry,
.route-concept-node.route-concept-exit {
  color: #fff7ea;
  background: var(--earth-dark);
  border-color: var(--earth-dark);
}

.route-concept-arrow {
  color: var(--accent-strong);
  font: 900 22px/1 var(--font-ui);
}

.station-status {
  margin-top: 18px !important;
  padding-top: 14px;
  color: var(--earth-dark) !important;
  border-top: 1px solid rgba(107, 44, 25, 0.2);
  font: 700 15px/1.45 var(--font-ui) !important;
}

.route-visit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.route-visit-card {
  padding: 28px;
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(107, 44, 25, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(75, 43, 24, 0.08);
}

.route-visit-card h3 {
  margin: 14px 0 8px;
  color: var(--earth-dark);
  font-size: 30px;
}

.route-visit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.park-scale-note {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 20px 24px;
  color: #fff7ea;
  background: rgba(255, 247, 234, 0.1);
  border: 1px solid rgba(255, 247, 234, 0.24);
  border-radius: var(--radius);
}

.park-scale-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--category-common);
  font: 850 18px/1.2 var(--font-ui);
}

.park-scale-note p {
  margin: 0;
  font-size: 17px !important;
}

@media (max-width: 620px) {
  .payment-dialog {
    padding: 28px 20px 24px;
  }

  .payment-dialog h2 {
    padding-right: 34px;
  }

  .payment-modal-link {
    width: 100%;
  }

  .route-concept-flow {
    display: grid;
    grid-template-columns: 1fr;
  }

  .route-concept-node {
    width: 100%;
    max-width: none;
  }

  .route-concept-arrow {
    justify-self: center;
  }

  .route-visit-grid {
    grid-template-columns: 1fr;
  }
}

/* Desktop story balance: keep the India legend compact and readable. */
.story-myth-section {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
  padding: clamp(28px, 4vw, 52px) 0;
}

.story-myth-image {
  width: 100%;
  max-width: 390px;
  justify-self: center;
}

.story-myth-image img {
  max-height: 500px;
  aspect-ratio: 3 / 4;
}

.story-myth-copy {
  padding: clamp(24px, 3vw, 38px) !important;
}

.story-myth-section > .story-source-note {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin-top: -18px;
}

.story-myth-copy > p:not(.small-label) {
  font-size: 18px;
}

.myth-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.myth-steps article {
  grid-template-columns: 1fr;
  gap: 10px;
  height: 100%;
  padding: 16px;
}

.myth-steps span {
  grid-row: auto;
  width: 38px;
  height: 38px;
  font-size: 14px;
}

.myth-steps h3 {
  font-size: clamp(21px, 1.8vw, 27px);
}

.myth-steps p {
  font-size: 16px;
  line-height: 1.4;
}

.story-sentinels-prophecy p {
  color: #fff7ea !important;
}

@media (max-width: 980px) {
  .story-myth-image {
    max-width: 520px;
  }

  .story-myth-section > .story-source-note {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .myth-steps {
    grid-template-columns: 1fr;
  }
}

/***** video ***/
.video-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.experience-card .video-container video {
  display: block;
  width: 100%;
  height: min(32vw, 340px);
  max-height: 340px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #18120e;
}

@media (max-width: 980px) {
  .experience-card .video-container video {
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
  }
}

/* Sistema visual inspirado en senaletica y paneles interpretativos */
:focus-visible {
  outline: 3px solid var(--accent-teal);
  outline-offset: 3px;
}

.site-header {
  background: rgba(248, 240, 226, 0.97);
  border-bottom: 2px solid rgba(99, 62, 44, 0.24);
  box-shadow: 0 8px 24px rgba(99, 62, 44, 0.08);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 12px;
  content: "";
  background: url("../patterns/guarda-rombos.svg") repeat-x center;
  opacity: 0.72;
  pointer-events: none;
}

.main-nav a:hover,
.main-nav a.active,
.main-nav a[aria-current="page"] {
  color: var(--paper-light);
  background: var(--earth-dark);
}

.main-nav .nav-cta,
.button.primary,
[data-pay] {
  color: var(--paper-light);
  background: var(--earth-dark);
  border-color: rgba(99, 62, 44, 0.3);
}

.button.secondary {
  color: var(--paper-light);
  background: var(--earth);
}

.button.ghost {
  color: var(--earth-dark);
  background: rgba(248, 240, 226, 0.88);
  border: 1px solid rgba(99, 62, 44, 0.52);
}

.site-footer {
  position: relative;
  color: var(--paper-light);
  background:
    linear-gradient(rgba(99, 62, 44, 0.92), rgba(99, 62, 44, 0.92)),
    url("../patterns/patron-diagonal.svg") repeat;
  border-top: 4px solid var(--earth);
}

.font-narrative,
.story-page .story-hero-copy h1,
.story-page h2,
.symbol-note h3 {
  font-family: var(--font-narrative);
}

.pattern-band {
  position: relative;
  overflow: hidden;
}

.pattern-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background: url("../patterns/patron-diagonal.svg") repeat;
  opacity: 0.15;
  pointer-events: none;
}

.diamond-divider {
  position: relative;
  display: grid;
  place-items: center;
  height: 38px;
  margin: -19px auto 0;
  color: var(--earth);
}

.diamond-divider::before,
.diamond-divider::after {
  width: min(42vw, 420px);
  height: 2px;
  content: "";
  background: var(--earth);
}

.diamond-divider span {
  width: 34px;
  height: 34px;
  margin: 0 16px;
  border: 7px solid currentColor;
  transform: rotate(45deg);
  background: var(--paper-light);
  box-shadow: inset 0 0 0 5px var(--paper-light), inset 0 0 0 8px currentColor;
}

.portal-marker {
  display: inline-grid;
  min-width: 58px;
  height: 66px;
  place-items: center;
  color: var(--paper-light);
  background: var(--category-attraction);
  border-radius: 999px 999px 8px 8px;
  border: 4px solid var(--paper-light);
  box-shadow: 0 10px 20px rgba(99, 62, 44, 0.18);
  font: 900 18px/1 var(--font-ui);
}

.portal-marker.common {
  background: var(--category-common);
  color: var(--earth-dark);
}

.portal-marker.service {
  background: var(--category-service);
}

.sign-panel {
  position: relative;
  overflow: hidden;
  color: var(--paper-light);
  background: var(--earth);
  border: 1px solid rgba(248, 240, 226, 0.3);
  box-shadow: 0 22px 42px rgba(43, 33, 27, 0.24);
}

.sign-panel::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48px;
  content: "";
  background: rgba(43, 33, 27, 0.86);
}

.sign-panel > * {
  position: relative;
  z-index: 1;
}

.sign-panel:nth-child(2),
.sign-panel.teal {
  background: var(--accent-teal);
}

.sign-panel:nth-child(3),
.sign-panel.blue {
  background: var(--category-attraction);
}

.category-legend {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--max), calc(100% - 36px));
  margin: 24px auto;
  padding: 0;
  list-style: none;
}

.category-key {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 14px 18px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  font: 900 16px/1.2 var(--font-ui);
  color: var(--earth-dark);
}

.category-key::before {
  width: 26px;
  height: 32px;
  flex: 0 0 auto;
  content: "";
  background: var(--category-attraction);
  border-radius: 999px 999px 5px 5px;
}

.category-key.service::before {
  background: var(--category-service);
}

.category-key.common::before {
  background: var(--category-common);
}

.pictogram {
  width: 32px;
  height: 32px;
  color: currentColor;
}

.pictogram-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.pictogram-item,
.route-rule,
.contact-card {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px;
  background: rgba(248, 240, 226, 0.82);
  border: 1px solid var(--line);
}

.pictogram-item {
  justify-items: center;
  text-align: center;
  color: var(--earth-dark);
  font: 800 14px/1.2 var(--font-ui);
}

.route-rules {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 72px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--paper-light);
  border: 1px solid var(--line);
}

.route-rules h2 {
  margin-bottom: 16px;
}

.route-rule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.route-rule {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--earth-dark);
  font-weight: 800;
}

.informational-panel,
.story-lead-panel,
.story-facts div,
.story-myth-copy,
.story-scene-card,
.info-panel,
.tier,
.friends-position > article,
.friends-benefits,
.friends-conditions,
.park-workband,
.park-support-cta,
.feature-band {
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(99, 62, 44, 0.1);
}

.friends-conditions h2,
.friends-conditions p {
  color: var(--ink);
}

.friends-conditions p:not(.small-label) {
  color: var(--ink);
}

.friends-conditions .small-label {
  color: var(--accent);
}

.park-workband h2,
.park-workband > div > p {
  color: var(--ink);
}

.park-workband > div > p:not(.small-label) {
  color: var(--ink);
}

.park-workband .small-label {
  color: var(--accent);
}

.home-document {
  background: var(--paper-light);
  border-color: var(--line);
}

.home-section {
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
}

.home-section:nth-of-type(odd) {
  background: var(--paper);
}

.home-hero {
  border-bottom: 5px solid var(--earth);
}

.home-hero::after {
  background:
    linear-gradient(90deg, rgba(43, 33, 27, 0.78) 0%, rgba(43, 33, 27, 0.48) 38%, rgba(43, 33, 27, 0.08) 78%),
    linear-gradient(180deg, rgba(43, 33, 27, 0.06), rgba(43, 33, 27, 0.36));
}

.hero-cards article {
  min-height: 210px;
  padding: 24px 24px 72px;
  border-radius: 0;
  backdrop-filter: none;
}

.hero-cards article strong {
  font-family: var(--font-display);
  font-size: clamp(25px, 2.2vw, 34px);
  text-transform: uppercase;
}

.hero-cards article span {
  color: rgba(248, 240, 226, 0.9);
}

.hero-cards article::before {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 22px;
  color: currentColor;
  content: ">";
  font: 900 34px/1 var(--font-ui);
}

.home-section.friends-highlight {
  color: var(--paper-light);
  background:
    linear-gradient(rgba(99, 62, 44, 0.94), rgba(99, 62, 44, 0.94)),
    url("../patterns/patron-diagonal.svg") repeat;
}

.on-dark,
.friends-highlight h2,
.friends-highlight p {
  color: var(--paper-light) !important;
}

.timeline-marker span,
.panel-icon,
.park-pillars span,
.myth-steps span,
.friends-benefit-grid span,
.route-preview-card span {
  border-radius: 999px 999px 7px 7px;
  background: var(--category-attraction);
  color: var(--paper-light);
}

.timeline-marker span {
  width: 58px;
  height: 66px;
  border: 4px solid var(--paper-light);
}

.timeline-copy {
  border-left-color: var(--category-attraction);
}

.timeline-item.category-common .timeline-marker span,
.timeline-item.category-common .timeline-copy {
  border-left-color: var(--category-common);
}

.page-hero.compact {
    background: linear-gradient(rgba(99, 62, 44, 0.88), rgba(99, 62, 44, 0.88)),
    url("../patterns/patron-diagonal.svg") repeat;
    color: var(--paper-light);
    border-bottom: 5px solid var(--earth);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

.page-hero.compact p,
.page-hero.compact .small-label {
  color: rgba(248, 240, 226, 0.88);
  margin-top: 22px;
}

.page-hero.compact h1 {
  color: var(--paper-light);
}

.story-hero-copy,
.park-hero-copy,
.friends-hero-copy {
  background: var(--paper-light);
  border: 1px solid var(--line);
}

.map-embed {
  background:
    linear-gradient(rgba(248, 240, 226, 0.9), rgba(248, 240, 226, 0.9)),
    url("../patterns/guarda-rombos.svg") repeat-x top;
  border-color: var(--earth-dark);
}

@media (max-width: 980px) {
  .category-legend,
  .pictogram-grid,
  .route-rule-grid {
    grid-template-columns: 1fr;
  }

  .site-header::after {
    opacity: 0.42;
  }
}

@media (max-width: 620px) {
  .hero-cards article {
    min-height: auto;
  }

  .diamond-divider::before,
  .diamond-divider::after {
    width: 28vw;
  }

  .pictogram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Ajustes de fidelidad posteriores a QA visual */
@media (min-width: 981px) {
  .hero-cards {
    right: clamp(30px, 5vw, 68px);
    left: auto;
    bottom: 46px;
    width: min(710px, 56vw);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-hero .hero-copy {
    width: min(560px, 40vw);
  }
}

.hero-cards article.sign-panel {
  background: var(--earth);
  border-color: rgba(248, 240, 226, 0.34);
}

.hero-cards article.sign-panel.teal {
  background: var(--accent-teal);
}

.hero-cards article.sign-panel.blue {
  background: var(--category-attraction);
}

.story-facts.informational-panel {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.story-facts div {
  color: var(--earth-dark);
  background: var(--paper-light);
}

.story-facts strong {
  color: var(--earth-dark);
}

.story-facts span {
  color: var(--muted);
}

.story-hero-copy .button.primary,
.park-hero-copy .button.primary,
.friends-hero-copy .button.primary {
  color: var(--paper-light);
  background: var(--earth-dark);
}

.story-hero-copy .button.secondary,
.park-hero-copy .button.secondary,
.friends-hero-copy .button.secondary {
  color: var(--paper-light);
  background: var(--earth);
}

/* Visitor planning and editorial park updates */

.park-entry-media {
  position: relative;
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  background: var(--earth-dark);
  box-shadow: 0 22px 48px rgba(75, 43, 24, 0.16);
}

.park-entry-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(24, 18, 14, 0.03) 46%, rgba(24, 18, 14, 0.78));
}

.park-entry-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.park-entry-media figcaption {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 28px;
  left: 30px;
  color: var(--paper-light);
}

.park-entry-media strong,
.park-entry-media span {
  display: block;
}

.park-entry-media strong {
  margin-bottom: 6px;
  font: 700 clamp(26px, 3vw, 42px)/1.05 var(--font-display);
}

.park-entry-media span {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.4;
}

.park-landmark,
.visit-map-section,
.contact-visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(28px, 6vw, 48px);
  align-items: center;
  width: min(100% - 48px, var(--max));
  margin: clamp(66px, 5vw, 132px) auto;
}

.park-landmark-copy h2,
.visit-map-section h2,
.contact-guidance h2,
.visit-next-step h2,
.hotel-visit-cta h2,
.visit-shortcut h2 {
  margin: 0;
  color: var(--earth-dark);
  font-family: var(--font-display);
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.04;
}

.park-landmark-copy p:not(.small-label),
.visit-map-section p:not(.small-label),
.contact-guidance > p:not(.small-label),
.visit-next-step p,
.hotel-visit-cta p,
.visit-shortcut p {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.55;
}

.park-landmark figure {
  position: relative;
  margin: 0;
}

.park-landmark img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-bottom: 5px solid var(--earth);
}

.park-landmark figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--earth-dark);
  font-weight: 800;
  text-decoration-color: var(--earth);
  text-underline-offset: 6px;
}

.story-page,
.park-page,
.friends-page,
.visit-page {
  padding-bottom: 72px;
}

.visit-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  width: min(100% - 48px, var(--max));
  margin: clamp(28px, 6vw, 74px) auto 0;
  background: var(--paper-light);
  border-bottom: 5px solid var(--earth);
}

.visit-hero > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(34px, 6vw, 76px);
}

.visit-hero h1 {
  margin: 0;
  color: var(--earth-dark);
  font: 700 clamp(46px, 6vw, 78px)/0.98 var(--font-display);
}

.visit-hero p {
  color: var(--ink);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.5;
}

.visit-hero figure {
  min-height: 430px;
  margin: 0;
}

.visit-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  background: var(--paper-deep);
}

.visit-facts article {
  padding: 34px;
  border-right: 1px solid rgba(99, 62, 44, 0.24);
}

.visit-facts article:last-child {
  border-right: 0;
}

.visit-facts .pictogram {
  width: 36px;
  height: 36px;
  color: var(--earth-dark);
}

.visit-facts h2 {
  margin: 18px 0 8px;
  color: var(--earth-dark);
  font: 800 24px/1.1 var(--font-ui);
}

.visit-facts p {
  margin: 0;
  line-height: 1.5;
}

.visit-map-section {
  margin-bottom: 0;
}

.visit-map-section .map-embed {
  min-height: 390px;
}

.visit-next-step,
.hotel-visit-cta,
.visit-shortcut {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(100% - 48px, var(--max));
  margin: 0 auto clamp(62px, 8vw, 104px);
  padding: clamp(32px, 5vw, 60px);
  color: var(--paper-light);
  background: var(--earth-dark);
}

.visit-next-step h2,
.visit-next-step p,
.hotel-visit-cta h2,
.hotel-visit-cta p,
.visit-shortcut h2,
.visit-shortcut p {
  color: var(--paper-light);
}

.visit-next-step p,
.hotel-visit-cta p,
.visit-shortcut p {
  max-width: 760px;
  margin-bottom: 0;
}

.contact-visit-layout {
  align-items: start;
}

.contact-guidance {
  padding-top: 24px;
}

.contact-direct {
  display: grid;
  gap: 5px;
  margin: 26px 0 4px;
}

.contact-direct span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-direct a {
  color: var(--earth-dark);
  font-weight: 800;
  font-size: 20px;
}

.visit-inquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 48px);
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-top: 5px solid var(--earth);
}

.contact-card,
.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--earth-dark);
  font: 800 15px/1.2 var(--font-ui);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(99, 62, 44, 0.42);
  border-radius: 0;
  background: #fffdf7;
  color: var(--ink);
  font: 400 17px/1.35 var(--font-ui);
  padding: 12px 14px;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(232, 185, 72, 0.56);
  outline-offset: 2px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--earth-dark);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(300px, 1.4fr) minmax(180px, 0.8fr);
  align-items: start;
  padding: 44px max(24px, calc((100vw - var(--max)) / 2));
}

.footer-summary,
.footer-links {
  display: grid;
  gap: 8px;
}

.footer-summary strong {
  font-family: var(--font-display);
  font-size: 28px;
}

.footer-summary span,
.footer-links a,
.footer-nav a {
  color: rgba(248, 240, 226, 0.86);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-nav a,
.footer-links a {
  text-decoration: none;
}

.footer-nav a:hover,
.footer-links a:hover {
  color: var(--paper-light);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links {
  justify-items: end;
  text-align: right;
}

@media (max-width: 980px) {
  .park-hero,
  .park-landmark,
  .visit-hero,
  .visit-map-section,
  .contact-visit-layout {
    grid-template-columns: 1fr;
  }

  .park-entry-media,
  .park-entry-media img {
    min-height: 390px;
  }

  .visit-hero > div {
    padding: 46px 36px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-links {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .park-landmark,
  .visit-map-section,
  .contact-visit-layout,
  .visit-hero,
  .visit-facts,
  .visit-next-step,
  .hotel-visit-cta,
  .visit-shortcut {
    width: min(100% - 28px, var(--max));
  }

  .park-entry-media,
  .park-entry-media img,
  .visit-hero figure {
    min-height: 280px;
  }

  .park-entry-media figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .park-entry-media span {
    font-size: 15px;
  }

  .visit-hero > div {
    padding: 36px 24px;
  }

  .visit-facts {
    grid-template-columns: 1fr;
  }

  .visit-facts article {
    border-right: 0;
    border-bottom: 1px solid rgba(99, 62, 44, 0.24);
  }

  .visit-facts article:last-child {
    border-bottom: 0;
  }

  .visit-next-step,
  .hotel-visit-cta,
  .visit-shortcut {
    display: grid;
    margin-bottom: 56px;
    padding: 32px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .home-hero h1 {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    font-size: clamp(25px, 7vw, 31px);
    overflow-wrap: anywhere;
  }

  .home-hero p:not(.small-label) {
     width: 100%;
    max-width: 100%;
    font-size: 19px;
  }

  .hero-slider-controls {
    transform: scale(0.9);
    transform-origin: top right;
  }
}

/* Route and story editorial connections. */
.route-editorial-hero .route-hero-actions {
  justify-content: flex-start;
}

.route-page,
.hotel-page,
.contact-page {
  padding-bottom: 72px;
}

.route-hero-actions {
  justify-content: center;
}

.timeline-item[id] {
  scroll-margin-top: 108px;
}

.station-legend .timeline-media {
  border-color: rgba(107, 44, 25, 0.44);
  box-shadow: 0 20px 38px rgba(75, 43, 24, 0.18);
}

.station-legend .timeline-media img {
  aspect-ratio: 4 / 3;
}

.station-life .timeline-media img {
  aspect-ratio: 3 / 2;
}

.story-source-note {
    margin-top: 6px;
    padding: 16px 15px 0px 12px;
    border-left: 3px solid var(--accent);
    margin-bottom: 18px;
}

.story-source-note strong {
  color: var(--earth-dark);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-source-note p {
  margin: 8px 0 0;
  color: #4c392c;
  font-size: 17px;
  line-height: 1.48;
}

.story-source-note .story-credit {
  margin-top: 18px;
  color: #5a4030;
  font-size: 14px;
}

.story-source-note .story-credit strong {
  display: inline;
  font-size: inherit;
  text-transform: none;
}

.story-sentinels-section {
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(38px, 6vw, 76px) auto;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(244, 229, 201, 0.96)),
    url("../patterns/guarda-rombos.svg") repeat;
  border: 1px solid rgba(143, 63, 35, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(75, 43, 24, 0.1);
}

.story-sentinels-intro {
  max-width: 780px;
  margin-bottom: 28px;
}

.story-sentinels-intro h2 {
  margin: 0;
  color: var(--earth-dark);
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
}

.story-sentinels-intro > p:not(.small-label) {
  max-width: 70ch;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.55;
}

.story-sentinels-dedication {
  max-width: 860px;
  margin: 28px auto 0;
  padding: clamp(22px, 4vw, 38px);
  text-align: center;
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(99, 62, 44, 0.2);
  box-shadow: 0 12px 28px rgba(75, 43, 24, 0.08);
}

.story-sentinels-dedication h3 {
  margin: 0 0 14px;
  color: var(--earth-dark);
  font: 800 14px/1.2 var(--font-ui);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-sentinels-dedication p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
}

.story-sentinels-dedication cite {
  display: block;
  margin-top: 16px;
  color: #5a4030;
  font: 700 13px/1.35 var(--font-ui);
}

.story-sentinels-prophecy {
  max-width: 920px;
  margin: clamp(28px, 4vw, 46px) auto;
  padding: clamp(24px, 4vw, 42px) clamp(22px, 5vw, 64px);
  color: #fff7ea;
  background:
    linear-gradient(135deg, rgba(39, 26, 18, 0.96), rgba(92, 42, 24, 0.94)),
    url("../patterns/guarda-rombos.svg") repeat;
  border-left: 6px solid var(--accent);
  box-shadow: 0 18px 38px rgba(75, 43, 24, 0.18);
}

.story-sentinels-prophecy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.75fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1180px;
  margin: clamp(28px, 4vw, 46px) auto;
}

.story-sentinels-prophecy-layout .story-sentinels-prophecy {
  max-width: none;
  margin: 0;
}

.story-sentinels-prophecy p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 39px);
  line-height: 1.18;
}

.story-sentinels-prophecy cite {
  display: block;
  margin-top: 18px;
  color: rgba(255, 247, 234, 0.76);
  font: 700 13px/1.35 var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-sentinels-route-link {
  display: inline-flex;
  margin-top: 6px;
}

.story-sentinels-prophecy-image {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(75, 43, 24, 0.18);
}

.story-sentinels-prophecy-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.story-scene-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.story-scene-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 620px) {
  .route-hero-actions {
    width: min(100%, 370px);
    margin-inline: auto;
  }

  .story-source-note {
    padding-left: 14px;
  }

  .story-sentinels-section {
    width: min(100% - 28px, var(--max));
    padding: 24px 18px;
  }

  .story-sentinels-prophecy {
    padding: 24px 20px;
  }

  .story-sentinels-prophecy-layout {
    grid-template-columns: 1fr;
  }

  .story-sentinels-prophecy-image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

/* Editorial hero cards based on the park identity manual. */
.park-hero,
.hero-cards {
  align-items: stretch;
}

.hero-cards .hero-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 218px;
  overflow: hidden;
  padding: 22px 22px 24px;
  color: var(--paper-light);
  border: 1px solid rgba(248, 240, 226, 0.42);
  border-top-width: 5px;
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(24, 18, 14, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-cards .hero-card::before {
  content: none;
}

.hero-cards .hero-card::after {
  position: absolute;
  top: -44px;
  right: -48px;
  width: 146px;
  height: 146px;
  content: "";
  border: 1px solid rgba(248, 240, 226, 0.24);
  border-radius: 50%;
}

.hero-cards .hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(24, 18, 14, 0.34);
}

.hero-card.earth {
  background: #70402d;
  border-top-color: var(--category-common);
}

.hero-card.sky {
  background: #2d668b;
  border-top-color: #b4dcdd;
}

.hero-card.grove {
  background: #2d746a;
  border-top-color: #f09f51;
}

.hero-cards .hero-card-index,
.hero-cards .hero-card h2,
.hero-cards .hero-card p {
  position: relative;
  z-index: 1;
}

.hero-cards .hero-card-index {
  display: block;
  margin: 0 0 14px;
  color: rgba(248, 240, 226, 0.7);
  font: 800 14px/1 var(--font-ui);
  letter-spacing: 0.08em;
}

.hero-cards .hero-card h2 {
  margin: 0;
  color: var(--paper-light);
  font: 850 clamp(22px, 1.8vw, 29px)/1.06 var(--font-ui);
}

.hero-cards .hero-card p {
  align-self: end;
  margin: 14px 0 0;
  color: rgba(248, 240, 226, 0.9);
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 620px) {
  .hero-cards .hero-card {
    min-height: 144px;
  }
}

/* Shared footer and map polish. */
.site-footer {
  display: block;
  margin-top: clamp(56px, 8vw, 104px);
  padding: 0;
  background:
    linear-gradient(135deg, rgba(99, 62, 44, 0.98), rgba(63, 40, 30, 0.98)),
    url("../patterns/patron-diagonal.svg") repeat;
  border-top: 5px solid var(--earth);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr) minmax(240px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) 0 34px;
}

.footer-brand,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-brand-link {
  display: inline-flex;
  width: fit-content;
}

.footer-brand-link img {
  width: min(190px, 100%);
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 300px;
  margin: 0;
  color: rgba(248, 240, 226, 0.86);
  font-size: 16px;
  line-height: 1.45;
}

.footer-location {
  padding-top: 12px;
  border-top: 1px solid rgba(248, 240, 226, 0.22);
}

.footer-heading {
  display: block;
  margin-bottom: 8px;
  color: var(--category-common);
  font: 800 13px/1.2 var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  align-content: start;
  justify-content: initial;
}

.footer-nav .footer-heading {
  grid-column: 1 / -1;
}

.footer-nav a,
.footer-email {
  color: rgba(248, 240, 226, 0.86);
  text-decoration: none;
  font-size: 16px;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-nav a:hover,
.footer-email:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-contact {
  justify-items: start;
}

.footer-email {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--earth-dark);
  background: var(--paper-light);
  border-radius: 7px;
  text-decoration: none;
  font: 800 14px/1 var(--font-ui);
  transition: background 160ms ease, transform 160ms ease;
}

.footer-cta:hover {
  background: var(--category-common);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(248, 240, 226, 0.22);
  color: rgba(248, 240, 226, 0.68);
  font-size: 13px;
}

.map-embed {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 10px;
  overflow: hidden;
  background: var(--paper-light);
  border: 1px solid rgba(99, 62, 44, 0.32);
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(75, 43, 24, 0.14);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 35vw, 430px);
  min-height: 0;
  aspect-ratio: 16 / 7;
  border: 0;
  border-radius: 5px;
  filter: none;
}

.map-embed.large {
  margin-top: 24px;
}

.map-embed.large iframe {
  height: clamp(320px, 38vw, 460px);
  min-height: 0;
}

.map-embed a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  justify-self: start;
  padding: 4px 2px 5px;
  color: var(--earth-dark);
  font: 800 14px/1.2 var(--font-ui);
  text-decoration: underline;
  text-decoration-color: var(--earth);
  text-underline-offset: 5px;
}

.map-embed a::after {
  content: "↗";
  font-size: 16px;
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .footer-inner {
    grid-template-columns: 1fr;
    width: min(calc(100% - 28px), var(--max));
    padding: 36px 0 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    width: min(calc(100% - 28px), var(--max));
    flex-direction: column;
    align-items: flex-start;
  }

  .map-embed {
    padding: 7px;
    border-radius: 8px;
  }

  .map-embed iframe,
  .map-embed.large iframe {
    height: 280px;
    aspect-ratio: auto;
  }
}

@media (max-width: 620px) {
  .portal-marker {
    width: 38px;
    min-width: 38px;
    height: 42px;
    border-width: 3px;
    box-shadow: 0 6px 12px rgba(99, 62, 44, 0.16);
    font-size: 14px;
  }
}
