:root {
  --green: #07381f;
  --green-soft: #0d4a2b;
  --gold: #b98522;
  --ink: #17231d;
  --muted: #68746e;
  --paper: #fbfaf6;
  --white: #ffffff;
  --stone: #e7e1d6;
  --sky: #dce9e4;
  --shadow: 0 24px 70px rgba(7, 56, 31, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.environment-banner {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 6px 14px;
  color: #07381f;
  background: #fff3d2;
  border-bottom: 1px solid #b98522;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-app-env="homolog"],
body[data-app-env="local"] {
  padding-top: 30px;
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 70px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 12px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(12, 28, 19, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  min-height: 78px;
  padding: 8px 34px;
  border: 1px solid rgba(185, 133, 34, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(7, 56, 31, 0.08);
}

.brand img {
  width: 100%;
  max-height: 62px;
  object-fit: contain;
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  background: rgba(255, 255, 255, 0.98);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.header-action {
  color: inherit;
}

.header-tools {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cart-header-link {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
}

.cart-header-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.cart-header-link span {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  color: var(--white);
  background: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
}

.social-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.9);
  transition: transform 180ms ease, filter 180ms ease;
}

.social-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.header-social .social-icon[aria-label="Facebook"] {
  color: #1877f2;
}

.header-social .social-icon[aria-label="Instagram"] {
  color: #ffffff;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.header-social .social-icon[aria-label="TikTok"] {
  color: #ffffff;
  background: #000000;
}

.header-social .social-icon[aria-label="TikTok"] svg {
  width: 15px;
  height: 15px;
}

.social-icon:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.site-header.is-scrolled .social-icon,
.site-header.is-open .social-icon {
  box-shadow: 0 0 0 1px rgba(7, 56, 31, 0.08);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 70px) 80px;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 28, 15, 0.86) 0%, rgba(4, 28, 15, 0.54) 42%, rgba(4, 28, 15, 0.18) 100%),
    url("assets/fotos/site/machu-picchu.jpg") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding-bottom: 38px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.25vw, 3.95rem);
  line-height: 1.04;
  font-weight: 800;
  max-width: 14ch;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--green);
}

h3 {
  color: var(--green);
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  width: fit-content;
  margin: 18px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.button.primary {
  border-color: var(--gold);
  color: var(--white);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 70px);
  bottom: 122px;
  width: min(350px, calc(100% - 40px));
  padding: 20px 22px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.82);
  color: var(--green);
  box-shadow: 0 18px 52px rgba(7, 56, 31, 0.12);
  backdrop-filter: blur(10px);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 8px;
  font-size: 1.02rem;
  font-weight: 800;
}

.hero-panel span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 70px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(260px, 1fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
  margin-bottom: 58px;
}

.section-heading.compact {
  align-items: end;
}

.section-heading h2 {
  max-width: 720px;
  font-size: clamp(1.55rem, 2.25vw, 2.25rem);
  line-height: 1.18;
}

.section-subtitle {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.partners .section-heading,
.intro .section-heading {
  margin-bottom: clamp(30px, 5vw, 44px);
}

.partners .section-heading h2 {
  max-width: 620px;
}

.package-grid,
.tour-grid,
.destination-grid,
.trek-grid,
.departure-grid,
.blog-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tour-grid,
.destination-grid,
.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partners {
  background: var(--white);
  padding-block: clamp(46px, 7vw, 82px);
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.partner-logos img {
  width: 100%;
  height: 92px;
  padding: 18px;
  object-fit: contain;
  border: 1px solid var(--stone);
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.about-grid > img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.feature-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.feature-pair article,
.why-grid article {
  padding: 26px;
  border-top: 1px solid var(--stone);
  background: var(--white);
}

.tour-grid p,
.included-content p,
.trust-copy p,
.contact-content p {
  color: var(--muted);
  line-height: 1.7;
}

.packages {
  background: var(--paper);
}

.package-card {
  display: flex;
  min-height: 492px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--stone);
  background: var(--white);
}

.package-card > a {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: inherit;
}

.package-card img {
  width: 100%;
  height: 270px;
  min-height: 270px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  flex: 0 0 auto;
  transition: transform 240ms ease;
}

.package-card:hover img {
  transform: scale(1.035);
}

.package-card div {
  min-height: 218px;
  display: grid;
  flex: 1;
  align-content: start;
  padding: 22px;
}

.package-card p {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.package-card strong {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--stone);
  background: var(--white);
}

.trust-strip span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--green);
  border-right: 1px solid var(--stone);
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip span:last-child {
  border-right: 0;
}

.featured-packages .package-card {
  min-height: 500px;
}

.packages.is-collapsed .package-card:nth-child(n + 4) {
  display: none;
}

.package-toggle {
  width: min(460px, 100%);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 28px auto 0;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--green);
  background: var(--white);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.package-toggle::after {
  content: "+";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-size: 1.05rem;
  line-height: 1;
}

.package-toggle[aria-expanded="true"]::after {
  content: "-";
}

.package-toggle:hover {
  color: var(--white);
  background: var(--green);
  transform: translateY(-1px);
}

.included {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  background: var(--green);
  color: var(--white);
}

.included-media {
  min-height: 560px;
  background: url("assets/fotos/site/rainbow-mountain.jpg") center / cover;
}

.included h2,
.advisor h2 {
  color: var(--white);
}

.included-content p {
  max-width: 520px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.75);
}

.included-content ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.included-content li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.guide-destinations {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.guide-destinations li {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  line-height: 1.45;
}

.traveler-reviews {
  background: linear-gradient(180deg, var(--white) 0%, #f7f4ec 100%);
}

.traveler-reviews .section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.traveler-reviews .section-heading p:last-child {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.review-photo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 0 auto 42px;
  min-height: 116px;
}

.review-photo-strip img {
  width: clamp(72px, 9vw, 118px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 5px solid var(--white);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(7, 56, 31, 0.16);
  transform: rotate(var(--tilt, -5deg));
}

.review-photo-strip img + img {
  margin-left: -18px;
}

.review-photo-strip img:nth-child(2) {
  --tilt: 4deg;
}

.review-photo-strip img:nth-child(3) {
  --tilt: -2deg;
  width: clamp(84px, 10vw, 132px);
}

.review-photo-strip img:nth-child(4) {
  --tilt: 5deg;
}

.review-photo-strip img:nth-child(5) {
  --tilt: -4deg;
}

.reviews-widget-panel {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 30px);
  border: 1px solid rgba(185, 133, 34, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 64px rgba(7, 56, 31, 0.1);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(11, 61, 38, 0.12);
}

.reviews-summary .eyebrow {
  margin-bottom: 8px;
}

.reviews-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--green);
}

.reviews-score strong {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.reviews-score span:last-child {
  color: var(--muted);
  font-weight: 700;
}

.review-stars {
  color: #f6b400;
  letter-spacing: 1px;
  white-space: nowrap;
}

.reviews-tabs {
  display: flex;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  padding: 18px 0 20px;
}

.review-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.review-tab.is-active {
  border-color: rgba(11, 61, 38, 0.14);
  border-bottom-color: var(--gold);
  background: var(--paper);
}

.review-platform {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
}

.review-platform-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--platform-color, var(--green));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.review-platform-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(11, 61, 38, 0.12);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7, 56, 31, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.review-card:hover,
.review-card:focus-visible {
  border-color: rgba(185, 133, 34, 0.42);
  box-shadow: 0 22px 58px rgba(7, 56, 31, 0.13);
  transform: translateY(-2px);
  outline: none;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.review-card h3 {
  margin: 0;
  color: var(--green);
  font-size: 1.08rem;
  line-height: 1.25;
}

.review-card-text {
  display: -webkit-box;
  margin: 0;
  color: var(--ink);
  line-height: 1.65;
  text-align: left;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

.review-author img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid var(--paper);
}

.review-author strong,
.review-author span,
.review-author small {
  display: block;
}

.review-author strong {
  color: var(--green);
}

.review-author span,
.review-author small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.review-original-link {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.review-original-link:hover,
.review-original-link:focus-visible {
  color: var(--green);
}

.review-source-note,
.review-empty {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.55;
}

.reviews-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.review-toggle-more {
  min-width: min(100%, 320px);
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid rgba(185, 133, 34, 0.55);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.review-toggle-more:hover,
.review-toggle-more:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
  outline: none;
}

.review-disclaimer {
  color: var(--muted);
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.6;
}

.day-tours {
  background: var(--paper);
}

.cusco-places {
  background: var(--white);
}

.cusco-places-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.cusco-places-grid .gallery-thumb {
  aspect-ratio: 4 / 3;
}

.cusco-places-grid .gallery-thumb:first-child,
.cusco-places-grid .gallery-thumb:nth-child(2) {
  grid-column: span 2;
}

.cusco-places-grid .gallery-thumb:nth-child(3),
.cusco-places-grid .gallery-thumb:nth-child(4),
.cusco-places-grid .gallery-thumb:nth-child(5),
.cusco-places-grid .gallery-thumb:nth-child(6) {
  grid-column: span 1;
}

.tour-grid article,
.trek-grid article,
.blog-grid a {
  min-height: 360px;
  border: 1px solid var(--stone);
  background: var(--white);
}

.image-cards article a,
.trek-grid article,
.blog-grid a {
  display: grid;
  gap: 12px;
  align-content: start;
  height: 100%;
  padding: 16px;
}

.image-cards img,
.trek-grid img,
.blog-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tour-grid span {
  display: inline-block;
  margin-bottom: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.destinations {
  background: var(--white);
}

.destination-grid a {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 24px;
  color: var(--white);
}

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

.destination-grid a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 56, 31, 0.08), rgba(7, 56, 31, 0.72));
}

.destination-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 800;
}

.advisor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: clamp(46px, 7vw, 78px) clamp(20px, 5vw, 70px);
  background: var(--green);
  color: var(--white);
}

.advisor p:not(.eyebrow) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.trekking,
.group-departures,
.blog {
  background: var(--paper);
}

.trek-grid a,
.departure-grid a {
  width: fit-content;
  color: var(--green);
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
}

.trek-grid p,
.why-grid p,
.departure-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.departure-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.departure-grid article {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(220px, 1fr);
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--stone);
  background: var(--white);
}

.departure-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.departure-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.why {
  background: var(--white);
}

.blog-grid a {
  min-height: auto;
}

.blog-grid h3 {
  margin-bottom: 0;
}

.detail-page {
  background: var(--paper);
}

.detail-hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 70px) 78px;
  overflow: hidden;
  color: var(--white);
}

.detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 28, 15, 0.88), rgba(4, 28, 15, 0.5), rgba(4, 28, 15, 0.18));
}

.detail-hero-copy {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
}

.detail-hero-copy h1 {
  max-width: 18ch;
}

.detail-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  background: var(--white);
}

.detail-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--stone);
  background: var(--paper);
}

.detail-sidebar strong {
  color: var(--green);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.1;
}

.detail-sidebar span {
  color: var(--muted);
  line-height: 1.5;
}

.detail-sidebar .button {
  width: fit-content;
  margin-top: 10px;
}

.booking-widget {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.booking-widget label,
.checkout-form label,
.cart-item label {
  display: grid;
  gap: 7px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
}

.booking-widget input,
.booking-widget textarea,
.checkout-form input,
.checkout-form textarea,
.cart-item input,
.cart-item textarea {
  width: 100%;
  border: 1px solid var(--stone);
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.booking-widget .button {
  width: 100%;
  margin-top: 0;
}

.booking-widget .button.secondary {
  color: var(--green);
  background: var(--white);
}

.custom-plan-action {
  display: grid;
  gap: 12px;
}

.custom-plan-action .button {
  width: 100%;
  margin-top: 0;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  min-height: 72svh;
  align-items: end;
  gap: clamp(28px, 5vw, 70px);
  padding: 150px clamp(20px, 5vw, 70px) 70px;
  background: var(--white);
}

.about-hero h1 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.96;
}

.about-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.about-hero img {
  width: 100%;
  height: min(62svh, 620px);
  object-fit: cover;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-hero-actions .button {
  margin-top: 0;
}

.about-intro-section,
.about-destinations-section,
.about-culture-section,
.about-values,
.passengers-section,
.about-team-section,
.about-gallery-section {
  background: var(--white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.about-rich-text {
  display: grid;
  gap: 16px;
}

.about-rich-text p,
.about-destination-band p,
.about-culture-lead p,
.team-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  text-align: justify;
}

.about-highlight-panel {
  padding: clamp(24px, 3vw, 36px);
  border-left: 3px solid var(--gold);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.about-highlight-panel h3 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.about-highlight-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-highlight-panel li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 0;
  color: var(--muted);
  line-height: 1.55;
}

.why-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: rgba(185, 133, 34, 0.1);
  font-size: 1rem;
  line-height: 1;
}

.about-destination-band {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(185, 133, 34, 0.24);
  background: linear-gradient(135deg, rgba(246, 242, 232, 0.96), rgba(255, 255, 255, 0.92));
}

.about-destination-band h2,
.about-values-block > h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 1.08;
}

.about-destination-band p {
  max-width: 980px;
}

.about-culture-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
}

.about-culture-card {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(185, 133, 34, 0.22);
  background: var(--paper);
  box-shadow: 0 22px 54px rgba(0, 48, 32, 0.07);
}

.about-culture-lead {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.72);
}

.about-culture-lead p {
  color: var(--muted);
}

.about-culture-lead p:first-child {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--stone);
  background: var(--stone);
}

.about-pillars article {
  padding: clamp(24px, 3vw, 34px);
  background: var(--paper);
}

.about-pillars h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.about-pillars p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  text-align: justify;
}

.about-values-block {
  display: grid;
  gap: 20px;
  margin-top: 0;
}

.about-columns,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
}

.about-columns article,
.value-grid article {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
}

.about-columns h3,
.value-grid h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.about-columns p,
.value-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  text-align: justify;
}

.value-grid strong {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.team-departments {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
}

.team-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: -8px 0 clamp(22px, 4vw, 36px);
}

.team-tabs button {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(7, 56, 31, 0.06);
  font-weight: 800;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.team-tabs button:hover,
.team-tabs button:focus-visible {
  color: var(--green);
  transform: translateY(-1px);
}

.team-tabs button.is-active {
  color: var(--white);
  background: #2f8b75;
  box-shadow: 0 14px 28px rgba(47, 139, 117, 0.2);
}

.team-department {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 44px);
  background: var(--white);
  box-shadow: 0 24px 56px rgba(0, 48, 32, 0.08);
}

.team-department > h3 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.team-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  min-height: 260px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(185, 133, 34, 0.22);
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(0, 48, 32, 0.06);
}

.team-photo {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.team-photo img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  border-radius: 999px;
  filter: drop-shadow(0 12px 20px rgba(0, 48, 32, 0.12));
  transition: transform 180ms ease;
}

.team-photo:hover img,
.team-photo:focus-visible img {
  transform: translateY(-2px) scale(1.03);
}

.team-photo-placeholder {
  background: var(--green);
  color: var(--white);
  cursor: default;
}

.team-photo-placeholder span {
  font-size: 2.4rem;
  font-weight: 800;
}

.team-card .eyebrow {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.72rem;
}

.team-card h4 {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.12;
}

.team-card strong {
  display: block;
  margin: 7px 0 12px;
  color: var(--ink);
  font-size: 0.92rem;
}

.institutional-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.institutional-gallery button {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  background: var(--stone);
  cursor: pointer;
  overflow: hidden;
}

.institutional-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}

.institutional-gallery button:hover img {
  transform: scale(1.04);
}

.passengers-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.passengers-showcase video,
.tiktok-embed-frame {
  width: 100%;
  background: var(--green);
}

.tiktok-embed-frame {
  justify-self: center;
  width: min(100%, 420px);
  min-height: 720px;
  overflow: visible;
  border: 1px solid rgba(185, 133, 34, 0.22);
  border-radius: 8px;
  background: #ffffff;
}

.tiktok-embed-frame .tiktok-embed {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0 auto !important;
  border: 0;
}

.passengers-showcase video {
  aspect-ratio: 9 / 16;
  max-height: 640px;
  object-fit: cover;
}

.passengers-showcase p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.8;
  text-align: justify;
}

.passengers-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.passengers-gallery button {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  background: var(--stone);
  cursor: pointer;
  overflow: hidden;
}

.passengers-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}

.passengers-gallery button:hover img {
  transform: scale(1.04);
}

.detail-gallery {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--stone);
}

.detail-gallery h3 {
  margin: 0;
  font-size: 0.96rem;
}

.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(185, 133, 34, 0.22);
  border-radius: 6px;
  background: var(--white);
  cursor: zoom-in;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.gallery-thumb:focus-visible {
  outline: 3px solid rgba(185, 133, 34, 0.28);
  outline-offset: 2px;
}

.detail-content {
  max-width: 860px;
}

.detail-content > p {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
  text-align: justify;
  text-justify: inter-word;
}

.detail-content h2 {
  margin: 44px 0 18px;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.detail-content ul,
.detail-content ol {
  display: grid;
  gap: 12px;
  padding-left: 22px;
  color: var(--ink);
  line-height: 1.7;
}

.detail-content li::marker {
  color: var(--gold);
  font-weight: 900;
}

.page-fact {
  display: inline-grid;
  grid-template-columns: 28px auto auto;
  align-items: center;
  gap: 8px;
  margin: 20px 14px 0 0;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(188, 133, 43, 0.26);
  border-radius: 8px;
  background: rgba(188, 133, 43, 0.08);
  color: var(--green);
}

.page-fact span {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(188, 133, 43, 0.7);
  border-radius: 50%;
  background: #fff;
}

.page-fact.pin span::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 5px 0 1px var(--forest);
}

.page-fact.clock span::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--forest);
  border-radius: 50%;
}

.page-fact.clock span::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  width: 1px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  transform-origin: bottom;
}

.page-fact strong,
.page-fact em {
  font-size: 0.94rem;
  line-height: 1.2;
}

.page-fact em {
  color: var(--muted);
  font-style: normal;
}

.itinerary-lead {
  margin: 24px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

.itinerary-detail {
  margin-top: 8px;
  padding: 26px;
  border: 1px solid rgba(3, 43, 31, 0.12);
  border-radius: 8px;
  background: #fff;
}

.itinerary-detail h3 {
  margin: 0 0 10px;
  font-size: 1.26rem;
}

.itinerary-detail h4 {
  margin: 18px 0 8px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest);
}

.itinerary-detail p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

.itinerary-detail .itinerary-summary {
  color: var(--ink);
  font-weight: 700;
  text-align: left;
}

.itinerary-detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 4px;
}

.itinerary-detail-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(185, 133, 34, 0.26);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(185, 133, 34, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.itinerary-detail-facts span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 133, 34, 0.18);
}

.include-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 34px;
}

.include-group {
  padding: 20px;
  border: 1px solid rgba(3, 43, 31, 0.12);
  border-radius: 8px;
  background: #fff;
}

.include-group h3 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tour-grid h3 {
  min-height: 2.6em;
  margin-bottom: 0;
}

.tour-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

[data-page-extra] p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.related-section {
  background: var(--paper);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--stone);
  background: var(--white);
}

.related-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.related-card h3 {
  margin-bottom: 0;
}

.advisor h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
}

.trust {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(220px, 0.6fr) minmax(280px, 0.85fr);
  gap: clamp(34px, 8vw, 110px);
  align-items: center;
  background: linear-gradient(135deg, var(--sky), var(--paper));
}

.trust-copy p {
  max-width: 660px;
  margin-top: 24px;
  font-size: 1.05rem;
}

.logo-feature {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(185, 133, 34, 0.28);
  background: var(--green);
  box-shadow: 0 24px 60px rgba(7, 56, 31, 0.12);
}

.logo-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.metrics {
  display: grid;
  gap: 14px;
}

.metrics div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(7, 56, 31, 0.16);
}

.metrics strong {
  color: var(--gold);
  font-size: 1.85rem;
  font-weight: 800;
}

.metrics span {
  color: var(--green);
  font-weight: 700;
  line-height: 1.35;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 70px);
  background: var(--green);
  color: var(--white);
}

.contact h2 {
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  padding: 15px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.checkout-form .form-note,
.cart-panel .form-note {
  color: var(--muted);
}

.complaints-hero {
  padding: 160px clamp(20px, 5vw, 70px) 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 28, 15, 0.9), rgba(4, 28, 15, 0.66)),
    url("assets/fotos/site/cusco-city.jpg") center / cover;
}

.error-hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 160px clamp(20px, 5vw, 70px) 84px;
  background:
    linear-gradient(90deg, rgba(4, 28, 15, 0.92), rgba(4, 28, 15, 0.58)),
    url("assets/fotos/site/machu-picchu.jpg") center / cover;
}

.error-card {
  max-width: 760px;
  color: var(--white);
}

.error-card strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--gold);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  font-weight: 900;
}

.error-card h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(2.3rem, 6vw, 5.2rem);
  line-height: 0.98;
}

.error-card p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.complaints-hero.compact {
  padding-bottom: 56px;
}

.complaints-hero h1 {
  max-width: 720px;
}

.complaints-hero p:not(.eyebrow) {
  max-width: 820px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.75;
}

.complaint-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  background: var(--white);
}

.complaint-notice,
.complaint-admin-card {
  border: 1px solid var(--stone);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(7, 56, 31, 0.08);
}

.complaint-notice {
  position: sticky;
  top: 112px;
  padding: 28px;
}

.complaint-notice h2 {
  margin-bottom: 16px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.complaint-notice p,
.complaint-summary p {
  color: var(--muted);
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

.complaint-form {
  display: grid;
  gap: 22px;
}

.complaint-form fieldset {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--stone);
  background: var(--white);
}

.complaint-form legend {
  padding: 0 8px;
  color: var(--green);
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.complaint-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.complaint-form input,
.complaint-form select,
.complaint-form textarea {
  width: 100%;
  border: 1px solid var(--stone);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  outline: none;
}

.complaint-form textarea {
  resize: vertical;
}

.complaint-form input:focus,
.complaint-form select:focus,
.complaint-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 133, 34, 0.13);
}

.complaint-form [aria-invalid="true"],
.checkout-form [aria-invalid="true"] {
  border-color: #b33a2d;
  background: #fff8f6;
  box-shadow: 0 0 0 3px rgba(179, 58, 45, 0.1);
}

.complaint-form label.is-invalid,
.checkout-form label.is-invalid {
  color: #8c281f;
}

.field-error {
  color: #8c281f;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
}

.span-2 {
  grid-column: 1 / -1;
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--ink);
  line-height: 1.6;
}

.checkbox-label input {
  width: auto;
  margin-top: 5px;
}

.complaint-form .button {
  width: fit-content;
  border: 0;
  color: var(--white);
  background: var(--gold);
  cursor: pointer;
}

.complaint-form .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.complaint-form .form-note,
.complaint-admin-card .form-note {
  color: var(--muted);
}

.form-note[data-tone="success"] {
  color: var(--green);
  font-weight: 800;
}

.form-note[data-tone="warning"] {
  color: var(--gold);
  font-weight: 800;
}

.form-note[data-tone="error"] {
  color: #9a2f22;
  font-weight: 800;
}

.complaint-result {
  background: var(--green);
  color: var(--white);
}

.complaint-result h2 {
  color: var(--white);
}

.complaint-result .complaint-summary {
  max-width: 860px;
  margin: 22px 0;
  padding: 26px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.complaint-result .complaint-summary p {
  color: rgba(255, 255, 255, 0.86);
}

.complaint-admin {
  background: var(--white);
}

.complaint-admin-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 42px);
}

.admin-detail {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}

.admin-detail h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.admin-detail h3 {
  margin: 22px 0 0;
}

.admin-response-state {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
  padding: 22px;
  border-left: 4px solid var(--green);
  background: rgba(7, 56, 31, 0.08);
}

.admin-response-state[data-tone="warning"] {
  border-left-color: var(--gold);
  background: rgba(185, 133, 34, 0.1);
}

.admin-response-state h2 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.admin-response-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.admin-response-state dl {
  display: grid;
  gap: 8px;
  margin: 6px 0 0;
}

.admin-response-state div {
  display: grid;
  grid-template-columns: minmax(130px, 0.3fr) 1fr;
  gap: 12px;
}

.admin-response-state dt {
  color: var(--green);
  font-weight: 900;
}

.admin-response-state dd {
  margin: 0;
  color: var(--ink);
}

.admin-response-form.is-locked {
  display: none !important;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(220px, 1fr) minmax(260px, 1fr);
  align-items: start;
  gap: clamp(24px, 4vw, 54px);
  padding: 34px clamp(20px, 5vw, 70px);
  color: var(--green);
  background: var(--white);
}

.site-footer img {
  width: 180px;
  max-height: 105px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer a {
  font-weight: 800;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.95rem;
}

.footer-company {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-company span {
  display: block;
}

.footer-company strong {
  color: var(--green);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.footer-social strong {
  margin-right: 2px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(185, 133, 34, 0.28);
  border-radius: 999px;
  color: var(--green);
  background: rgba(185, 133, 34, 0.06);
  font-size: 0.82rem;
}

.footer-social a::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-social a[href*="facebook.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='12' fill='%231877f2'/%3E%3Cpath fill='%23fff' d='M14.7 12.8h-1.9v6.9h-2.9v-6.9H8.5v-2.5h1.4V8.7c0-1.2.6-3.1 3.1-3.1h2.3v2.5h-1.7c-.3 0-.7.1-.7.7v1.5h2.4l-.3 2.5Z'/%3E%3C/svg%3E");
}

.footer-social a[href*="instagram.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3CradialGradient id='g' cx='30%25' cy='107%25' r='130%25'%3E%3Cstop offset='0%25' stop-color='%23fdf497'/%3E%3Cstop offset='5%25' stop-color='%23fdf497'/%3E%3Cstop offset='45%25' stop-color='%23fd5949'/%3E%3Cstop offset='60%25' stop-color='%23d6249f'/%3E%3Cstop offset='90%25' stop-color='%23285aeb'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='24' height='24' rx='6' fill='url(%23g)'/%3E%3Cpath fill='%23fff' d='M8.1 5.2h7.8a2.9 2.9 0 0 1 2.9 2.9v7.8a2.9 2.9 0 0 1-2.9 2.9H8.1a2.9 2.9 0 0 1-2.9-2.9V8.1a2.9 2.9 0 0 1 2.9-2.9Zm0 1.8a1.1 1.1 0 0 0-1.1 1.1v7.8A1.1 1.1 0 0 0 8.1 17h7.8a1.1 1.1 0 0 0 1.1-1.1V8.1A1.1 1.1 0 0 0 15.9 7Zm3.9 2a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm0 1.8a1.2 1.2 0 1 0 0 2.4 1.2 1.2 0 0 0 0-2.4Zm3.2-2.5a.7.7 0 1 1 0 1.4.7.7 0 0 1 0-1.4Z'/%3E%3C/svg%3E");
}

.footer-social a[href*="tiktok.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='24' rx='12' fill='%23000'/%3E%3Cpath fill='%2325f4ee' d='M13.1 4.6h2.2c.2 1.4 1 2.7 2.5 3.3v2.4c-.9 0-1.7-.3-2.5-.8v4.7c0 2.7-1.8 4.7-4.5 4.7-2.4 0-4.3-1.7-4.3-4.1 0-2.7 2.1-4.3 4.7-4.1v2.5c-1.2-.2-2 .4-2 1.5 0 .9.7 1.5 1.6 1.5 1 0 1.7-.6 1.7-2V4.6h.6Z'/%3E%3Cpath fill='%23fe2c55' d='M14.3 4.6h2.1c.2 1.4 1 2.7 2.5 3.3v2.4c-.9 0-1.8-.3-2.6-.8v4.7c0 2.7-1.8 4.7-4.5 4.7-1.2 0-2.3-.4-3-1.1.7.4 1.4.6 2.3.6 2.7 0 4.5-2 4.5-4.7V9c.8.5 1.6.8 2.5.8V8.7c-1.5-.6-2.4-1.9-2.6-3.3h-1.2v-.8Z'/%3E%3Cpath fill='%23fff' d='M12.3 4.6h2.1c.2 1.4 1 2.7 2.5 3.3v2.4c-.9 0-1.8-.3-2.5-.8v4.7c0 2.7-1.8 4.7-4.5 4.7-2.4 0-4.3-1.7-4.3-4.1 0-2.7 2.1-4.3 4.7-4.1v2.5c-1.2-.2-2 .4-2 1.5 0 .9.7 1.5 1.6 1.5 1 0 1.7-.6 1.7-2V4.6h.7Z'/%3E%3C/svg%3E");
}

.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(185, 133, 34, 0.12);
}

.footer-top-link {
  justify-self: end;
  width: fit-content;
}

.legal-hero {
  padding: 150px clamp(20px, 5vw, 70px) 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 28, 15, 0.9), rgba(4, 28, 15, 0.62)),
    url("assets/fotos/site/cusco-city.jpg") center / cover;
}

.legal-hero h1 {
  max-width: 860px;
}

.legal-content {
  display: grid;
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
}

.legal-content section {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--stone);
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.protegeme-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
}

.protegeme-poster {
  position: sticky;
  top: 110px;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(185, 133, 34, 0.22);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(0, 48, 32, 0.08);
}

.protegeme-poster img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--white);
}

.protegeme-poster-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.protegeme-poster-button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.protegeme-poster a {
  display: inline-flex;
  margin-top: 14px;
}

.gallery-lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  color: var(--white);
  background: rgba(3, 18, 11, 0.92);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox img {
  max-width: min(1120px, 96vw);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  text-align: center;
}

.gallery-lightbox-close {
  position: absolute;
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.gallery-lightbox-close::before,
.gallery-lightbox-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--white);
}

.gallery-lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.gallery-lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.has-lightbox {
  overflow: hidden;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--white);
}

.cart-panel,
.checkout-form,
.reservation-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--stone);
  background: var(--paper);
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--stone);
}

.cart-item h3 {
  margin-bottom: 6px;
}

.cart-item p {
  color: var(--muted);
}

.cart-item-total {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 12px;
}

.cart-item-total button {
  border: 0;
  color: #9a2f22;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--stone);
  color: var(--green);
}

.checkout-success-modal[hidden] {
  display: none;
}

.checkout-success-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 35, 24, 0.72);
}

.checkout-success-panel {
  display: grid;
  gap: 16px;
  width: min(520px, 100%);
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid rgba(195, 141, 29, 0.35);
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(0, 35, 24, 0.28);
}

.checkout-success-panel h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.checkout-success-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-success-panel strong {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(195, 141, 29, 0.3);
  color: var(--green);
  background: rgba(195, 141, 29, 0.08);
  font-size: 1.1rem;
}

.coupon-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(195, 141, 29, 0.28);
  background: rgba(195, 141, 29, 0.07);
}

.coupon-box label {
  display: grid;
  gap: 8px;
}

.cart-discount {
  color: #8a5f0d;
}

.payment-options {
  display: grid;
  gap: 10px;
}

.payment-options label {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.payment-options input {
  width: auto;
}

.retry-payment-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(7, 56, 31, 0.18);
  background: var(--white);
  cursor: pointer;
}

.payment-choice span {
  color: var(--green);
  font-weight: 900;
}

.payment-choice.is-selected,
.payment-choice:has(input:checked) {
  border-color: var(--gold);
  background: #fff8e8;
  box-shadow: 0 12px 28px rgba(34, 23, 9, 0.08);
}

.manual-payment {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(185, 133, 34, 0.28);
  background: rgba(185, 133, 34, 0.06);
}

.other-payment {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(0, 63, 42, 0.18);
  background: #f8fbf7;
}

.other-payment[hidden] {
  display: none;
}

.other-payment h3 {
  margin: 0;
  color: var(--green);
}

.other-payment p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.other-payment .button {
  width: fit-content;
}

.payment-trust-box {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(0, 63, 42, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.payment-trust-box img {
  width: min(190px, 100%);
  height: auto;
  object-fit: contain;
}

.payment-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 63, 42, 0.14);
  background: #fffaf0;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.payment-trust-badges span::before {
  content: "OK";
  color: var(--gold);
  font-weight: 900;
}

.reservation-payment-alert {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(185, 133, 34, 0.34);
  border-left: 5px solid var(--gold);
  background: #fff8e8;
  color: var(--green);
}

.reservation-payment-alert p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.reservation-payment-list {
  display: grid;
  gap: 10px;
  margin: 10px 0 18px;
}

.reservation-payment-item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(7, 56, 31, 0.12);
  background: #fffdfa;
}

.reservation-payment-item[data-status="ERROR_CULQI"] {
  border-color: rgba(154, 47, 34, 0.28);
  background: #fff5f3;
}

.reservation-payment-item small {
  color: var(--muted);
  line-height: 1.45;
}

.culqi-order-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(7, 56, 31, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.culqi-order-box img {
  width: 112px;
  max-width: 34vw;
  height: auto;
  border: 1px solid var(--stone);
  background: white;
}

.culqi-order-box div {
  display: grid;
  gap: 7px;
}

.culqi-order-box .button {
  width: fit-content;
  min-height: 0;
  padding: 8px 12px;
  font-size: 13px;
}

.manual-payment .form-note {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.manual-payment .button.secondary {
  border-color: rgba(185, 133, 34, 0.72);
  color: var(--green);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(34, 23, 9, 0.08);
  backdrop-filter: none;
}

.manual-payment .button.secondary:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.manual-payment label {
  color: var(--green);
  font-weight: 800;
}

.retry-manual-payment {
  gap: 16px;
  border-color: rgba(185, 133, 34, 0.34);
  background: #fffaf0;
}

.retry-pix-layout {
  display: grid;
  grid-template-columns: minmax(170px, 220px) 1fr;
  gap: 16px;
  align-items: start;
}

.retry-qr-card {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 14px;
  border: 1px solid var(--stone);
  background: var(--white);
}

.manual-payment img {
  width: 180px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--white);
}

.pix-copy-wrap {
  display: grid;
  gap: 10px;
}

.pix-copy-wrap label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-weight: 800;
}

.pix-copy-wrap textarea {
  width: 100%;
  min-height: 92px;
  padding: 12px;
  border: 1px solid rgba(7, 56, 31, 0.18);
  color: var(--green);
  background: var(--white);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.84rem;
  line-height: 1.45;
  resize: vertical;
}

.pix-copy-wrap.is-copied textarea {
  border-color: #1d7a43;
  background: #f3fff7;
  box-shadow: 0 0 0 3px rgba(29, 122, 67, 0.1);
}

.pix-copy-wrap .form-note {
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  color: var(--green);
  background: rgba(255, 255, 255, 0.68);
}

.checkout-recaptcha {
  min-height: 78px;
}

.manual-payment input[type="file"] {
  padding: 10px;
  border: 1px solid var(--stone);
  color: var(--green);
  background: var(--white);
  font-weight: 700;
}

.retry-proof-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(7, 56, 31, 0.14);
  background: rgba(255, 255, 255, 0.74);
}

.card-payment-disabled,
.card-payment-live,
.retry-payment-form {
  display: grid;
  gap: 14px;
}

.card-payment-disabled,
.card-payment-live {
  padding: 16px;
  border: 1px solid rgba(7, 56, 31, 0.16);
  background: rgba(7, 56, 31, 0.04);
}

.card-payment-disabled [data-card-payment-message],
.card-payment-live [data-card-payment-message] {
  position: relative;
  margin: 0;
  padding: 16px 18px 16px 52px;
  border: 1px solid rgba(185, 133, 34, 0.42);
  border-left: 6px solid var(--gold);
  color: var(--green);
  background: #fff8e8;
  box-shadow: 0 12px 28px rgba(34, 23, 9, 0.08);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.55;
}

.card-payment-disabled [data-card-payment-message]::before,
.card-payment-live [data-card-payment-message]::before {
  position: absolute;
  top: 16px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--white);
  background: var(--gold);
  content: "!";
  font-size: 0.92rem;
  font-weight: 900;
}

.fake-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fake-card-grid input:disabled {
  color: rgba(7, 56, 31, 0.62);
  -webkit-text-fill-color: rgba(7, 56, 31, 0.62);
  background: rgba(255, 255, 255, 0.72);
  opacity: 1;
  cursor: not-allowed;
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reservation-actions .danger {
  color: #9a2f22;
  border-color: #9a2f22;
  background: transparent;
}

.customer-payment-help {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(185, 133, 34, 0.28);
  background: rgba(185, 133, 34, 0.06);
}

.customer-payment-help h3,
.customer-payment-help h4,
.customer-payment-help p {
  margin: 0;
}

.customer-payment-help .button.secondary {
  border-color: rgba(185, 133, 34, 0.68);
  color: var(--green);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(34, 23, 9, 0.08);
  backdrop-filter: none;
}

.customer-payment-help .button.secondary:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.customer-payment-help > .form-note {
  padding: 14px 16px;
  border: 1px solid rgba(7, 56, 31, 0.12);
  border-left: 4px solid var(--green);
  color: var(--green);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  line-height: 1.55;
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.payment-method-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--stone);
  background: var(--white);
}

.payment-method-grid img {
  width: 180px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--white);
}

.payment-method-grid textarea {
  min-height: 104px;
  resize: vertical;
}

.payment-method-grid .button {
  width: fit-content;
}

.admin-proof-list {
  display: grid;
  gap: 14px;
}

.proof-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(185, 133, 34, 0.24);
  background: var(--white);
}

.proof-card h4,
.proof-card p {
  margin: 0;
}

.proof-card img,
.proof-card iframe {
  width: 100%;
  border: 1px solid var(--stone);
  background: #ffffff;
}

.proof-card img {
  max-height: 640px;
  object-fit: contain;
}

.proof-card iframe {
  min-height: min(74vh, 780px);
}

.proof-card .button {
  width: fit-content;
}

.reservation-portal {
  background: var(--white);
}

.reservation-card {
  max-width: 920px;
  margin: 0 auto;
}

.whatsapp-button {
  position: fixed;
  z-index: 30;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px 0 12px;
  border-radius: 999px;
  color: var(--white);
  background: #1f8f4d;
  box-shadow: 0 18px 38px rgba(7, 56, 31, 0.24);
  font-size: 0.92rem;
  font-weight: 800;
}

.whatsapp-button span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #1f8f4d;
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.language-switcher {
  position: fixed;
  z-index: 31;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(7, 56, 31, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(7, 56, 31, 0.14);
  backdrop-filter: blur(10px);
}

.language-switcher a {
  min-width: 44px;
  padding: 10px 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  border-right: 1px solid rgba(7, 56, 31, 0.12);
}

.language-switcher a:last-child {
  border-right: 0;
}

.language-switcher a.is-active {
  color: var(--white);
  background: var(--green);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    width: 142px;
    min-height: 62px;
    padding: 7px 26px;
  }

  .brand img {
    max-height: 50px;
  }

  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .site-nav,
  .header-tools {
    display: none;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 16px 20px 24px;
    color: var(--green);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 34px rgba(12, 28, 19, 0.08);
  }

  .site-header.is-open .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--stone);
  }

  .hero {
    min-height: 92svh;
    padding-top: 120px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 24px;
  }

  .section-heading,
  .package-grid,
  .tour-grid,
  .destination-grid,
  .trek-grid,
  .departure-grid,
  .blog-grid,
  .why-grid,
  .partner-logos,
  .about-grid,
  .feature-pair,
  .included,
  .trust,
  .contact,
  .detail-layout,
  .checkout-layout,
  .complaint-layout,
  .form-grid,
  .include-groups,
  .related-grid,
  .about-hero,
  .about-intro-grid,
  .about-culture-grid,
  .about-pillars,
  .about-columns,
  .value-grid,
  .team-grid,
  .passengers-showcase,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-subtitle {
    max-width: none;
  }

  .tour-grid article {
    min-height: auto;
  }

  .guide-destinations {
    grid-template-columns: 1fr;
  }

  .detail-content > p,
  .itinerary-lead,
  .itinerary-detail p {
    text-align: left;
  }

  .package-card {
    min-height: auto;
  }

  .package-card > a {
    min-height: auto;
  }

  .package-card img {
    height: 220px;
    min-height: 220px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip span:nth-child(2) {
    border-right: 0;
  }

  .included-media {
    min-height: 340px;
  }

  .advisor {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-self: start;
    justify-content: flex-start;
  }

  .footer-top-link {
    justify-self: start;
  }

  .departure-grid article {
    grid-template-columns: 1fr;
  }

  .detail-hero {
    min-height: 70svh;
    padding-top: 126px;
  }

  .detail-sidebar {
    position: static;
  }

  .about-hero {
    min-height: auto;
  }

  .about-hero img {
    height: 420px;
  }

  .about-highlight-panel {
    border-left: 0;
    border-top: 3px solid var(--gold);
  }

  .team-card {
    grid-template-columns: 98px minmax(0, 1fr);
    min-height: auto;
  }

  .team-tabs {
    justify-content: flex-start;
  }

  .reviews-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-photo,
  .team-photo img {
    width: 98px;
    height: 98px;
  }

  .institutional-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .passengers-showcase video {
    max-height: 560px;
  }

  .tiktok-embed-frame {
    width: min(100%, 420px);
  }

  .passengers-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cusco-places-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cusco-places-grid .gallery-thumb:first-child,
  .cusco-places-grid .gallery-thumb:nth-child(2),
  .cusco-places-grid .gallery-thumb:nth-child(3),
  .cusco-places-grid .gallery-thumb:nth-child(4),
  .cusco-places-grid .gallery-thumb:nth-child(5),
  .cusco-places-grid .gallery-thumb:nth-child(6) {
    grid-column: span 1;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-total {
    justify-items: start;
  }

  .payment-method-grid {
    grid-template-columns: 1fr;
  }

  .retry-payment-options,
  .retry-pix-layout {
    grid-template-columns: 1fr;
  }

  .retry-qr-card {
    min-height: auto;
  }

  .fake-card-grid {
    grid-template-columns: 1fr;
  }

  .legal-content p,
  .legal-content li {
    text-align: left;
  }

  .protegeme-layout {
    grid-template-columns: 1fr;
  }

  .protegeme-poster {
    position: static;
  }

  .complaints-hero {
    padding-top: 132px;
  }

  .complaint-notice {
    position: static;
  }

  .span-2 {
    grid-column: auto;
  }

  .complaint-form .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .hero {
    padding-bottom: 42px;
  }

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

  .whatsapp-button {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding-right: 14px;
    font-size: 0.84rem;
  }

  .language-switcher {
    left: 14px;
    bottom: 76px;
  }

  .about-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-hero-actions .button {
    width: 100%;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-photo {
    justify-self: start;
  }

  .team-photo,
  .team-photo img {
    width: 132px;
    height: 132px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .review-photo-strip {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 6px 8px 16px;
    scroll-snap-type: x mandatory;
  }

  .review-photo-strip img {
    width: 96px;
    flex: 0 0 96px;
    scroll-snap-align: center;
  }

  .review-photo-strip img + img {
    margin-left: -10px;
  }

  .reviews-widget-panel {
    padding: 14px;
  }

  .reviews-tabs {
    padding-bottom: 14px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip span {
    min-height: 58px;
    border-right: 0;
  }

  .destination-grid a {
    min-height: 300px;
  }

  .institutional-gallery {
    grid-template-columns: 1fr;
  }

  .passengers-gallery {
    grid-template-columns: 1fr;
  }

  .cusco-places-grid {
    grid-template-columns: 1fr;
  }

  .institutional-gallery button {
    aspect-ratio: 4 / 3;
  }

  .passengers-gallery button {
    aspect-ratio: 4 / 3;
  }

  .metrics div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
