:root {
  --ink: #111719;
  --white: #fffaf1;
  --paper: #f4ebdc;
  --sand: #e8d0a9;
  --teal: #0b5961;
  --blue: #102f4a;
  --wine: #9f2b58;
  --gold: #d99a22;
  --terra: #a94d2c;
  --line: rgba(17, 23, 25, 0.16);
  --light-line: rgba(255, 250, 241, 0.28);
  --shadow: 0 28px 80px rgba(9, 17, 19, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--wine), var(--teal));
}

.topbar {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 90;
  width: min(1120px, calc(100% - 24px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.topbar.is-solid {
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--light-line);
  border-radius: 8px;
  background: rgba(8, 17, 20, 0.78);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.topbar:not(.is-solid) {
  transform: translateX(-50%);
}

.brand,
.topbar a {
  text-decoration: none;
  font-weight: 800;
}

.topbar nav {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
}

.topbar__cta {
  padding: 9px 12px;
  border: 1px solid var(--light-line);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #081114;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 17, 20, 0.72), rgba(8, 17, 20, 0.16)),
    linear-gradient(180deg, rgba(8, 17, 20, 0.28), rgba(8, 17, 20, 0.8));
}

.hero__content {
  position: relative;
  width: min(980px, 100%);
  padding: 112px min(7vw, 96px) 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Marcellus", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 9ch;
  font-size: 6rem;
  line-height: 0.9;
}

.hero__date {
  display: inline-flex;
  margin: 22px 0 0;
  padding: 10px 14px;
  border: 1px solid var(--light-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.hero__text {
  max-width: 620px;
  margin: 22px 0 28px;
  font-family: "Petit Formal Script", cursive;
  font-size: 2.1rem;
  line-height: 1.25;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--outline,
.button--glass {
  color: var(--white);
  border: 1px solid var(--light-line);
  background: rgba(255, 255, 255, 0.08);
}

section {
  position: relative;
}

.story-section,
.discipline-section,
.guides-section,
.experience-section,
.jujuy-section,
.commercial-section {
  padding: 92px min(7vw, 96px);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.section-copy {
  max-width: 720px;
}

.section-copy--wide {
  max-width: 960px;
}

.section-copy h2 {
  font-size: 3.4rem;
  line-height: 1;
}

.section-copy p:not(.eyebrow) {
  color: rgba(17, 23, 25, 0.7);
  font-size: 1.08rem;
  line-height: 1.8;
}

.story-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.manifest-section,
.quote-section,
.contact-section {
  min-height: 86svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #081114;
}

.manifest-section > img,
.quote-section > img,
.contact-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifest-section::after,
.quote-section::after,
.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 17, 20, 0.86), rgba(8, 17, 20, 0.42));
}

.manifest-section div,
.quote-section div,
.contact-section div {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  padding: 92px min(7vw, 96px);
}

.manifest-section h2,
.quote-section p,
.contact-section h2 {
  font-size: 4.5rem;
  line-height: 1;
}

.manifest-line {
  font-family: "Petit Formal Script", cursive;
  color: var(--gold);
  font-size: 2rem;
}

.manifest-section p:not(.eyebrow),
.contact-section p {
  color: rgba(255, 250, 241, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

.guide-grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.guide-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf1;
}

.guide-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.guide-card h3 {
  font-size: 2.4rem;
}

.guide-card p:not(.eyebrow) {
  color: rgba(17, 23, 25, 0.7);
  line-height: 1.7;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.activity-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #081114;
  color: var(--white);
  box-shadow: 0 18px 54px rgba(17, 23, 25, 0.1);
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 700ms ease;
}

.activity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 17, 20, 0.06) 22%, rgba(8, 17, 20, 0.86) 100%),
    linear-gradient(90deg, rgba(8, 17, 20, 0.42), transparent 58%);
}

.activity-card:hover img {
  transform: scale(1.08);
}

.activity-card h3 {
  position: absolute;
  inset: auto 16px 16px;
  z-index: 1;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.activity-card--knowledge {
  grid-column: span 2;
  display: flex;
  align-items: end;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(11, 89, 97, 0.94), rgba(159, 43, 88, 0.88)),
    url("assets/images/activities/espacio-reflexion.png") center/cover;
}

.activity-card--knowledge::after {
  background: linear-gradient(180deg, rgba(8, 17, 20, 0.16), rgba(8, 17, 20, 0.68));
}

.activity-card--knowledge div {
  position: relative;
  z-index: 1;
}

.activity-card--knowledge span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.activity-card--knowledge h3 {
  position: static;
  margin-top: 8px;
  font-family: "Marcellus", serif;
  font-size: 2rem;
  font-weight: 400;
}

.activity-card--knowledge p {
  max-width: 520px;
  margin: 10px 0 0;
  color: rgba(255, 250, 241, 0.84);
  line-height: 1.6;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.destination-grid article {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
}

.destination-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(8, 17, 20, 0.84));
}

.destination-grid div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 20px;
}

.destination-grid span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.destination-grid h3 {
  margin-top: 8px;
  font-size: 2rem;
}

.quote-section span {
  display: block;
  margin-top: 24px;
  color: var(--gold);
  font-weight: 800;
}

.included-panel,
.price-card,
.optional-prices,
.insurance-card,
.transparent-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: 0 18px 54px rgba(17, 23, 25, 0.08);
}

.included-panel {
  margin-top: 34px;
  padding: 24px;
}

.hotel-reference {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: 0 18px 54px rgba(17, 23, 25, 0.08);
}

.hotel-reference img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.hotel-reference h3 {
  font-size: 2.6rem;
}

.hotel-reference p:not(.eyebrow) {
  color: rgba(17, 23, 25, 0.7);
  line-height: 1.7;
}

.included-panel ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.included-panel li {
  padding: 14px;
  border-radius: 8px;
  background: rgba(11, 89, 97, 0.08);
  font-weight: 800;
  line-height: 1.35;
}

.price-options,
.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.price-card,
.optional-prices,
.insurance-card,
.transparent-summary {
  padding: 24px;
}

.price-card h3,
.insurance-card h3 {
  font-size: 4rem;
}

.price-card ul {
  padding-left: 20px;
  color: rgba(17, 23, 25, 0.72);
  line-height: 1.7;
}

.price-card a {
  display: inline-flex;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.price-card--basic {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 17, 20, 0.18), rgba(8, 17, 20, 0.9)),
    url("assets/images/real/purmamarca.jpeg") center/cover;
}

.price-card--basic .eyebrow,
.price-card--basic p,
.price-card--basic li {
  color: rgba(255, 250, 241, 0.86);
}

.price-card--basic a {
  color: var(--ink);
  background: var(--white);
}

.price-card--highlight {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 17, 20, 0.28), rgba(8, 17, 20, 0.92)),
    url("assets/images/paisaje-colorado.jpeg") center/cover;
}

.price-card--highlight .eyebrow,
.price-card--highlight p,
.price-card--highlight li {
  color: rgba(255, 250, 241, 0.84);
}

.price-card--highlight a {
  color: var(--ink);
  background: var(--white);
}

.line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.line--total {
  color: var(--teal);
  font-weight: 800;
}

.transparent-summary {
  margin-top: 18px;
}

.transparent-summary h3,
.optional-prices h3 {
  font-size: 2.4rem;
}

.landscape-carousel {
  position: relative;
  margin-top: 18px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: 0 18px 54px rgba(17, 23, 25, 0.08);
}

.landscape-carousel::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217, 154, 34, 0.22), transparent 68%);
  animation: floatGlow 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.carousel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.carousel-heading h3 {
  font-size: 2.4rem;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.carousel-track {
  display: grid;
  grid-auto-columns: minmax(260px, 32%);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.carousel-slide {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #081114;
  color: var(--white);
  scroll-snap-align: start;
  transform: translateZ(0);
  transition: transform 500ms ease, filter 500ms ease, box-shadow 500ms ease;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(8, 17, 20, 0.82));
}

.carousel-slide:hover img {
  transform: scale(1.06);
}

.carousel-slide:hover {
  box-shadow: 0 28px 80px rgba(17, 23, 25, 0.22);
  filter: saturate(1.08) contrast(1.04);
  transform: translateY(-6px);
}

.carousel-slide span {
  position: absolute;
  inset: auto 16px 16px;
  z-index: 1;
  font-weight: 800;
  transform: translateY(0);
  transition: transform 500ms ease;
}

.carousel-slide:hover span {
  transform: translateY(-4px);
}

.carousel-progress {
  height: 3px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 23, 25, 0.12);
}

.carousel-progress span {
  display: block;
  width: 14%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--wine), var(--teal));
  transition: width 220ms ease;
}

@keyframes floatGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-26px, 30px, 0) scale(1.18);
  }
}

.contact-actions,
.phone-list,
.agency-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.phone-list span,
.agency-list span {
  padding: 10px 12px;
  border: 1px solid var(--light-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.about-jmv-section {
  padding: 92px min(7vw, 96px) 120px;
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 154, 34, 0.18), transparent 34%),
    radial-gradient(circle at 88% 42%, rgba(11, 89, 97, 0.16), transparent 36%),
    var(--paper);
}

.about-jmv-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.86);
  box-shadow: var(--shadow);
}

.about-jmv-card img {
  width: 100%;
  border-radius: 8px;
  background: var(--white);
}

.about-jmv-card p:not(.eyebrow) {
  margin: 0;
  color: rgba(17, 23, 25, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-jmv-card .seo-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 88;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  text-decoration: none;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.audio-widget {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 88;
}

.audio-widget button {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--light-line);
  border-radius: 8px;
  color: var(--white);
  background: rgba(8, 17, 20, 0.76);
  backdrop-filter: blur(16px);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.audio-widget.is-playing button {
  color: var(--ink);
  background: var(--gold);
  border-color: transparent;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .topbar {
    width: calc(100% - 20px);
  }

  .topbar nav {
    display: none;
  }

  .topbar__cta {
    display: none;
  }

  .hero__content,
  .story-section,
  .discipline-section,
  .guides-section,
  .experience-section,
  .jujuy-section,
  .commercial-section,
  .manifest-section div,
  .quote-section div,
  .contact-section div {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__content {
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: 3.9rem;
  }

  .hero__text {
    font-size: 1.55rem;
    max-width: 340px;
  }

  .story-section,
  .guide-card,
  .hotel-reference,
  .about-jmv-card,
  .price-options,
  .extras-grid {
    grid-template-columns: 1fr;
  }

  .about-jmv-card {
    padding: 22px;
  }

  .about-jmv-card img {
    width: min(180px, 80%);
  }

  .section-copy h2,
  .manifest-section h2,
  .quote-section p,
  .contact-section h2 {
    font-size: 2.55rem;
  }

  .activity-grid,
  .destination-grid,
  .included-panel ul {
    grid-template-columns: 1fr;
  }

  .activity-card,
  .activity-card--knowledge {
    grid-column: auto;
    min-height: 230px;
  }

  .destination-grid article {
    min-height: 360px;
  }

  .line {
    display: grid;
  }

  .carousel-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .carousel-controls button {
    flex: 1;
  }

  .carousel-track {
    grid-auto-columns: minmax(238px, 82%);
  }

  .carousel-slide {
    min-height: 320px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 3.25rem;
  }

  .hero__text {
    max-width: 310px;
    font-size: 1.32rem;
  }

  .button,
  .contact-actions a {
    width: 100%;
  }

  .audio-widget {
    left: 12px;
    bottom: 12px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }
}
