:root {
  --ink: #26211d;
  --muted: #6d6258;
  --paper: #faf7ef;
  --surface: #ffffff;
  --line: #e6ded1;
  --teal: #1e6f72;
  --teal-dark: #124c4f;
  --clay: #b85d38;
  --wine: #7d2834;
  --olive: #65713b;
  --shadow: 0 18px 45px rgba(31, 27, 21, 0.14);
  --soft-shadow: 0 10px 26px rgba(31, 27, 21, 0.09);
  --radius: 8px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(250px, auto) 1fr auto;
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
  min-height: 82px;
  padding: 8px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(250, 247, 239, 0.94);
  box-shadow: 0 10px 30px rgba(27, 23, 18, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: min(370px, 36vw);
  min-width: 0;
}

.brand__logo {
  display: block;
  width: 86px;
  height: 70px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.38));
}

.brand__text {
  display: grid;
  min-width: 0;
  gap: 3px;
  line-height: 1.18;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.site-header.is-scrolled .brand__text,
.site-header.is-open .brand__text {
  text-shadow: none;
}

.brand__text strong,
.brand__text small {
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand__text strong {
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.brand__text small {
  max-width: 250px;
  color: currentColor;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.82;
}

.floating-brand {
  position: fixed;
  z-index: 18;
  left: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 30px);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: min(330px, calc(100vw - 32px));
  padding: 10px 14px 10px 8px;
  border: 1px solid rgba(230, 222, 209, 0.78);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(250, 247, 239, 0.9);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.floating-brand.is-hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(16px);
}

.floating-brand img {
  width: 58px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.22));
}

.floating-brand strong,
.floating-brand span,
.floating-brand small {
  display: block;
}

.floating-brand strong {
  margin-bottom: 3px;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1;
}

.floating-brand span,
.floating-brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.floating-whatsapp {
  position: fixed;
  z-index: 19;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 30px);
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  background: #1d8f5a;
  box-shadow: 0 16px 34px rgba(29, 143, 90, 0.36);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.floating-whatsapp::after {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(29, 143, 90, 0.44);
  border-radius: 50%;
  content: "";
  animation: whatsappPulse 1.9s ease-out infinite;
}

.floating-whatsapp.is-hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(16px);
}

.floating-whatsapp:hover {
  transform: scale(1.06);
}

.floating-whatsapp svg {
  position: relative;
  z-index: 1;
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 9px clamp(10px, 1.05vw, 16px);
  font-size: 14px;
  font-weight: 700;
  opacity: 0.86;
  transition: color 0.2s ease, opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled .site-nav a,
.site-header.is-open .site-nav a {
  border-color: rgba(30, 111, 114, 0.16);
}

.site-nav a::after {
  position: absolute;
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--clay);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current="true"] {
  border-color: rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08) 68%),
    rgba(255, 255, 255, 0.04);
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a.is-active,
.site-header.is-scrolled .site-nav a[aria-current="true"],
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a.is-active,
.site-header.is-open .site-nav a[aria-current="true"] {
  border-color: rgba(30, 111, 114, 0.28);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.54) 70%),
    rgba(255, 255, 255, 0.5);
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.72;
    transform: scale(0.86);
  }

  70% {
    opacity: 0;
    transform: scale(1.18);
  }

  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.button:hover,
.icon-button:hover,
.tab:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--teal);
}

.button--primary:hover {
  background: var(--teal-dark);
}

.button--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(20, 18, 15, 0.16);
  cursor: pointer;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  border-color: rgba(30, 111, 114, 0.18);
  color: #fff;
  background: var(--teal);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 86svh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero__slider,
.hero__slide,
.hero__slide img,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__slide {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 6.5s ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

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

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 22, 22, 0.78) 0%, rgba(18, 22, 22, 0.48) 42%, rgba(18, 22, 22, 0.1) 100%),
    linear-gradient(0deg, rgba(18, 22, 22, 0.42), rgba(18, 22, 22, 0.06) 46%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 96px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2d18b;
}

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

p {
  font-family: var(--font-sans);
  font-style: italic;
  text-align: justify;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.04;
}

h1 {
  max-width: none;
  margin-bottom: 22px;
  font-size: 76px;
  white-space: nowrap;
}

h2 {
  margin-bottom: 0;
  font-size: 48px;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  line-height: 1.45;
}

.hero__actions,
.slider-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__dots {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(22px, 5vw, 54px);
  display: flex;
  gap: 9px;
}

.hero__dots button {
  width: 42px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
}

.hero__dots button.is-active {
  background: #fff;
}

.section-pad {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.section-image {
  position: relative;
  overflow: hidden;
  margin: 28px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

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

.section-image--wide {
  margin-top: 26px;
}

.section-image--wide img {
  aspect-ratio: 16 / 9;
}

.section-image--dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.intro__text {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.intro__text p {
  margin-bottom: 0;
}

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

.services .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}

.service-card,
.trip-card,
.timeline__item,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.service-card {
  min-height: 258px;
  padding: 28px;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--wine);
}

.service-card:nth-child(2) .service-card__icon {
  background: var(--teal);
}

.service-card:nth-child(3) .service-card__icon {
  background: var(--olive);
}

.service-card svg,
.icon-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card p,
.trip-card p,
.timeline__item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.destinations {
  background: #fff;
}

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

.section-heading--split {
  display: flex;
  max-width: none;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tab {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.tab.is-active {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.destination-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr);
  gap: clamp(22px, 5vw, 68px);
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--clay);
  border-radius: var(--radius);
  background: #f4efe5;
  box-shadow: var(--soft-shadow);
}

.destination-panel--media {
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.48fr);
}

.destination-panel.is-active {
  display: grid;
}

.destination-panel p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-content: start;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
}

.benefit-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.benefit-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(30, 111, 114, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 20px rgba(31, 27, 21, 0.06);
}

.benefit-item__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
}

.benefit-item:nth-child(2) .benefit-item__icon {
  background: var(--clay);
}

.benefit-item:nth-child(3) .benefit-item__icon {
  background: var(--olive);
}

.benefit-item:nth-child(4) .benefit-item__icon {
  background: var(--wine);
}

.benefit-item__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.benefit-item h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.benefit-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.groups {
  background: #fff;
}

.groups .section-heading--split p:not(.section-kicker) {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.groups-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.groups-intro {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.groups-intro__image {
  margin: 0;
  overflow: hidden;
}

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

.groups-intro > div {
  padding: clamp(22px, 4vw, 32px);
}

.groups-intro h3 {
  font-family: var(--font-serif);
  font-size: 34px;
}

.groups-intro p,
.groups-note p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.group-steps {
  display: grid;
  gap: 12px;
}

.group-step {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(30, 111, 114, 0.14);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 20px rgba(31, 27, 21, 0.06);
}

.group-step__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
}

.group-step:nth-child(2n) .group-step__icon {
  background: var(--clay);
}

.group-step:nth-child(3n) .group-step__icon {
  background: var(--olive);
}

.group-step__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.group-step h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.group-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.groups-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--clay);
  border-radius: var(--radius);
  background: #f4efe5;
  box-shadow: var(--soft-shadow);
}

.itinerary {
  overflow: hidden;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.slider {
  display: grid;
  grid-auto-columns: minmax(280px, 380px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.trip-card {
  min-height: 250px;
  padding: 28px;
  scroll-snap-align: start;
}

.trip-card.is-current {
  border-color: rgba(30, 111, 114, 0.35);
  box-shadow: var(--shadow);
}

.trip-card span,
.timeline__item span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.process {
  background: #293b36;
  color: #fff;
}

.process .section-kicker {
  color: #f2d18b;
}

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

.timeline__item {
  min-height: 260px;
  padding: 28px;
  color: var(--ink);
}

.payments {
  background: #fff;
}

.payments .section-heading--split p:not(.section-kicker) {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

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

.payment-card,
.payment-proof,
.payment-terms {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.payment-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  background: var(--paper);
}

.payment-card__badge {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.payment-card__badge--usd {
  background: var(--wine);
}

.payment-card__badge--muted {
  background: var(--olive);
  font-size: 24px;
}

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

.payment-card dl {
  display: grid;
  gap: 11px;
  margin: 0;
}

.payment-card dl div {
  display: grid;
  gap: 3px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(230, 222, 209, 0.85);
}

.payment-card dl div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.payment-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.payment-card code {
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
}

.payment-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-card__actions button {
  min-height: 38px;
  border: 1px solid rgba(30, 111, 114, 0.22);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--teal-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.payment-card__actions button.is-copied {
  color: #fff;
  background: var(--teal);
}

.payment-card--pending p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.payment-card--pending .button {
  justify-self: start;
  margin-top: 4px;
}

.payment-proof {
  margin-top: 18px;
  overflow: hidden;
  border-left: 5px solid var(--clay);
  background: #f4efe5;
}

.payment-proof summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 18px 58px 18px 22px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.payment-proof summary::-webkit-details-marker {
  display: none;
}

.payment-proof summary::after {
  position: absolute;
  right: 22px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(30, 111, 114, 0.22);
  border-radius: 50%;
  color: var(--teal);
  content: "+";
  font-size: 20px;
  line-height: 1;
}

.payment-proof[open] summary::after {
  color: #fff;
  background: var(--teal);
  content: "−";
}

.payment-proof__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 0 22px 22px;
}

.payment-proof p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  text-align: justify;
}

.payment-proof a:not(.button) {
  color: var(--teal-dark);
  font-weight: 900;
}

.payment-terms {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  background: var(--paper);
}

.payment-terms .faq-item {
  box-shadow: none;
  background: #fff;
}

.payment-terms .faq-item p,
.modal__body p {
  font-family: Georgia, serif;
  font-style: normal;
  text-align: justify;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(310px, 0.75fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: start;
  background:
    linear-gradient(rgba(250, 247, 239, 0.92), rgba(250, 247, 239, 0.92)),
    url("assets/images/hero-raices.png") center / cover;
}

.contact__copy p:not(.section-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-line {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(30, 111, 114, 0.14);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-line:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 111, 114, 0.34);
  background: #fff;
}

.contact-line__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
}

.contact-line__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.contact-line strong,
.contact-line small {
  display: block;
}

.contact-line strong {
  margin-bottom: 3px;
  font-size: 14px;
}

.contact-line small {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.contact-line--whatsapp .contact-line__icon {
  background: #1d8f5a;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(30, 111, 114, 0.12);
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  padding: clamp(34px, 5vw, 56px) clamp(18px, 5vw, 72px) 24px;
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(180px, 0.75fr) minmax(170px, 0.55fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 430px;
}

.footer-brand__logo {
  display: block;
  width: 82px;
  height: 76px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
}

.footer-brand strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1;
}

.footer-brand p:not(:first-child) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.quote-band {
  padding: clamp(36px, 5vw, 58px) clamp(18px, 7vw, 92px);
  background: var(--paper);
}

.quote-band p {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(125, 40, 52, 0.18);
  border-radius: var(--radius);
  color: #fff;
  background: var(--wine);
  box-shadow: var(--soft-shadow);
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.proof {
  padding-top: 0;
}

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

.proof-item {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.proof-item:nth-child(2) {
  border-color: var(--clay);
}

.proof-item:nth-child(3) {
  border-color: var(--olive);
}

.proof-item:nth-child(4) {
  border-color: var(--wine);
}

.proof-item span,
.modular__steps span {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.modular {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(26px, 6vw, 76px);
  color: #fff;
  background: #263632;
}

.pending {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 6vw, 70px);
  align-items: center;
  background: #fff;
}

.pending p:last-child {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--clay);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
  background: #f4efe5;
  box-shadow: var(--soft-shadow);
}

.modular .section-kicker {
  color: #f2d18b;
}

.modular__copy p:not(.section-kicker) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

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

.modular__steps article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.modular__steps span {
  color: #f2d18b;
}

.modular__steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.faq {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 18px 58px 18px 22px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  right: 22px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(30, 111, 114, 0.22);
  border-radius: 50%;
  color: var(--teal);
  content: "+";
  font-size: 20px;
  line-height: 1;
}

.faq-item[open] summary {
  color: var(--teal-dark);
}

.faq-item[open] summary::after {
  color: #fff;
  background: var(--teal);
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.68;
}

.faq-visual {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

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

.faq-visual div {
  padding: 22px;
}

.faq-visual span {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-visual p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.testimonials {
  background: #fff;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dots button {
  width: 36px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #d8ccbb;
  cursor: pointer;
}

.testimonial-dots button.is-active {
  background: var(--teal);
}

.testimonial-list {
  position: relative;
  min-height: clamp(360px, 36vw, 440px);
}

.testimonial {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  max-width: 980px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--clay);
  border-radius: var(--radius);
  background: #f4efe5;
  box-shadow: var(--soft-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonial.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.testimonial p {
  margin-bottom: 22px;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.stars {
  margin-bottom: 18px;
  color: #c68a22;
  font-size: 24px;
  line-height: 1;
}

.testimonial span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

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

.agency-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(18, 76, 79, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  background: var(--teal-dark);
  color: #fff;
}

.agency-card__image {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

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

.agency-card__copy {
  padding: clamp(28px, 5vw, 58px);
}

.agency .section-kicker {
  color: #f2d18b;
}

.agency-card__copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.72;
}

.agency-card__copy p:last-child {
  margin-bottom: 0;
}

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

.contact-form__full,
.check-field {
  grid-column: 1 / -1;
}

.check-field {
  display: flex;
  grid-template-columns: none;
  align-items: start;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.check-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--teal);
}

.footer-column {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footer-column > strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-column a,
.footer-link-button {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-link-button {
  border: 0;
  padding: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.footer-column a:hover,
.footer-link-button:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 22px;
  margin-top: clamp(28px, 5vw, 48px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.footer-credit a:hover {
  color: #fff;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(14px, 4vw, 42px);
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(21, 18, 16, 0.62);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(980px, 100%);
  max-height: min(86vh, 840px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.modal__header h2 {
  font-size: 42px;
}

.modal__close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.modal__close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.9;
}

.modal__body {
  overflow-y: auto;
  padding: clamp(22px, 4vw, 40px);
  color: var(--muted);
  line-height: 1.68;
}

.modal__body h3 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 20px;
}

.modal__body h3:first-child {
  margin-top: 0;
}

.modal__body p {
  margin-bottom: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 25;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(18, 76, 79, 0.22);
    color: var(--teal-dark);
    background: #fff;
    box-shadow: 0 10px 24px rgba(20, 18, 15, 0.22);
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header.is-open .nav-toggle {
    border-color: rgba(18, 76, 79, 0.22);
    color: #fff;
    background: var(--teal);
  }

  .site-nav {
    display: none;
  }

  .brand {
    width: min(310px, calc(100vw - 96px));
  }

  .brand__text small {
    display: none;
  }

  .site-nav.is-open {
    position: fixed;
    top: 82px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    position: relative;
    border: 0;
    border-radius: 0;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: transparent;
  }

  .site-nav.is-open a:hover,
  .site-nav.is-open a.is-active,
  .site-nav.is-open a[aria-current="true"] {
    background: rgba(30, 111, 114, 0.06);
  }

  .site-nav.is-open a::after {
    top: 14px;
    right: auto;
    bottom: 14px;
    left: 0;
    width: 4px;
    height: auto;
    background: var(--clay);
    transform: scaleY(0.35);
  }

  .site-nav.is-open a:hover::after,
  .site-nav.is-open a.is-active::after,
  .site-nav.is-open a[aria-current="true"]::after {
    transform: scaleY(1);
  }

  .site-nav.is-open a:last-child {
    border-bottom: 0;
  }

  .floating-brand {
    display: none;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 82svh;
  }

  .hero__content {
    margin-right: 18px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  .hero__lead {
    font-size: 19px;
  }

  .quote-band p,
  .testimonial p,
  .modal__header h2 {
    font-size: 34px;
  }

  .intro,
  .destination-panel,
  .contact,
  .modular,
  .agency,
  .pending {
    grid-template-columns: 1fr;
  }

  .services,
  .timeline,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    align-items: start;
  }

  .contact-form--wide {
    grid-template-columns: 1fr;
  }

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

  .agency-card__image img {
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

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

  .faq-visual {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    display: grid;
  }

  .groups-layout,
  .groups-note {
    grid-template-columns: 1fr;
  }

  .groups-intro {
    position: static;
  }

  .groups-note .button {
    width: 100%;
  }

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

  .payment-proof .button,
  .payment-card--pending .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 74px;
    padding: 8px 14px;
  }

  .brand {
    width: 74px;
  }

  .brand__text {
    display: none;
  }

  .brand__logo {
    width: 74px;
    height: 58px;
  }

  .site-nav.is-open {
    top: 74px;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(18, 22, 22, 0.78), rgba(18, 22, 22, 0.18));
  }

  .hero__content {
    align-self: end;
    padding: 120px 0 84px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .quote-band p,
  .testimonial p,
  .modal__header h2 {
    font-size: 28px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__dots {
    right: auto;
    left: 18px;
  }

  .section-heading--split {
    display: grid;
  }

  .slider {
    grid-auto-columns: minmax(260px, 86vw);
  }

  .destination-panel {
    padding: 24px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 36px;
  }
}
