:root {
  --ink: #554236;
  --paper: #fbf7ef;
  --soft: #f4eee5;
  --clay: #a76c44;
  --gold: #d89c03;
  --green: #6f7f61;
  --line: rgba(85, 66, 54, 0.18);
  --shadow: 0 18px 50px rgba(85, 66, 54, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

a[href],
button:not(:disabled),
summary,
[role="button"],
input[type="checkbox"],
input[type="radio"],
.lead-form fieldset label,
.mini-dots span {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

h1 {
  font-size: clamp(4rem, 13vw, 9rem);
}

h2 {
  font-size: clamp(2.5rem, 7vw, 5.4rem);
}

h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  background: rgba(251, 247, 239, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.language-switcher {
  display: inline-flex;
  border: 1px solid var(--line);
  background: white;
}

.lang-btn {
  min-width: 40px;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.lang-btn:hover {
  background: var(--soft);
}

.lang-btn.active {
  background: var(--ink);
  color: white;
}

.brand img,
.site-footer img {
  width: 150px;
  height: auto;
}

.main-nav,
.site-footer nav {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  font-weight: 600;
}

.main-nav a,
.site-footer a {
  position: relative;
  padding: 0.5rem 0;
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover,
.main-nav a.active,
.site-footer a.active {
  color: var(--clay);
}

.main-nav a.active::after,
.site-footer a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 0.55rem 0.75rem;
  font-weight: 700;
}

.hero {
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: clamp(7rem, 12vw, 10rem) clamp(1rem, 6vw, 6rem);
  color: white;
  background:
    linear-gradient(90deg, rgba(39, 31, 25, 0.28), rgba(39, 31, 25, 0.08)),
    url("http://poreuropa.com.mx/wp-content/uploads/2021/07/massimiliano-morosinotto-YKqJ1ejmX5E-unsplash-scaled.jpg") center/cover;
}

.hero-copy,
.section-copy,
.section-heading {
  max-width: 760px;
}

.hero-copy p {
  max-width: 600px;
  font-size: 1.08rem;
}

.kicker {
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker {
  color: #f0c36b;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.4rem;
  min-height: 46px;
  padding: 0.8rem 1.2rem;
  background: var(--clay);
  color: white;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: #8f5836;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(85, 66, 54, 0.16);
}

section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 6vw, 6rem);
}

.section-grid,
.destinations-hero,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.image-stack img,
.hero-photo,
.category-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img:nth-child(2) {
  margin-top: 3rem;
}

.planning,
.destination-categories {
  background: var(--soft);
}

.steps,
.benefit-grid,
.category-grid,
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.step,
.benefit-grid p,
.stats article,
.accordion-list details,
.map-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  padding: 1.3rem;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  font-weight: 700;
}

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

.benefit-grid p {
  min-height: 110px;
  font-weight: 600;
}

.carousel-section {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.carousel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #2b211b;
}

.carousel-track {
  min-height: 360px;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.1rem;
  padding: clamp(2rem, 6vw, 5rem);
  color: white;
  text-align: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 450ms ease, transform 650ms ease;
  background:
    linear-gradient(0deg, rgba(24, 19, 16, 0.24), rgba(24, 19, 16, 0.24)),
    var(--bg) center/cover;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide p {
  max-width: 840px;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 600;
}

.slide a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 54px;
  margin-top: 0.45rem;
  padding: 0.7rem 1.8rem;
  border: 2px solid currentColor;
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.slide h3 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 3.7rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #d3d3d3;
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  font: inherit;
}

.lead-form textarea {
  min-height: 130px;
  resize: vertical;
}

.legal-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1rem 2.8rem;
}

.legal-page .kicker {
  display: none;
}

.legal-page h1 {
  margin-bottom: 1.2rem;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 500;
}

.legal-copy {
  max-width: 1050px;
  color: #7a6c62;
  font-size: 1rem;
  line-height: 1.62;
}

.legal-copy p + p {
  margin-top: 1.25rem;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2.2rem 4rem;
  padding: 4rem clamp(1rem, 17vw, 18rem);
  background: var(--soft);
  border-top: 0;
}

.site-footer nav {
  justify-content: center;
}

.site-footer p {
  grid-column: 1 / -1;
  color: rgba(85, 66, 54, 0.72);
}

.footer-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 2rem;
  text-align: center;
}

.footer-rule {
  grid-column: 1 / -1;
  width: 100%;
  height: 1px;
  background: rgba(85, 66, 54, 0.42);
}

.destinations-hero {
  background: var(--soft);
}

.hero-photo {
  aspect-ratio: 1 / 1;
}

.stats {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.stats article {
  text-align: center;
}

.stats strong {
  display: block;
  font-size: clamp(2rem, 6vw, 4rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 0.35rem;
  font-weight: 700;
}

.interactive-map,
.destination-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr);
  gap: 1rem;
  margin-top: 2rem;
}

.destination-workspace {
  grid-template-columns: minmax(340px, 1fr) minmax(340px, 0.92fr);
  align-items: start;
}

.destination-workspace.map-only {
  grid-template-columns: minmax(0, 1fr);
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.map-panel,
.itinerary-panel {
  min-width: 0;
}

.trip-builder {
  background: #fff;
}

.map-canvas {
  position: relative;
  min-height: 430px;
  background:
    radial-gradient(circle at 47% 47%, rgba(167, 108, 68, 0.33), transparent 18%),
    radial-gradient(circle at 61% 34%, rgba(111, 127, 97, 0.42), transparent 18%),
    radial-gradient(circle at 50% 64%, rgba(216, 156, 3, 0.35), transparent 16%),
    linear-gradient(135deg, #e7eee8, #cbd9d8);
  border: 1px solid var(--line);
  overflow: hidden;
}

.map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-start;
  max-width: 850px;
  margin: 0 auto 1.2rem;
}

.map-filters button {
  border: 0;
  padding: 0.45rem 0.65rem;
  background: #efefef;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
}

.map-filters button.active,
.map-filters button:hover {
  background: #dedbd6;
}

.real-map {
  position: relative;
  max-width: 852px;
  margin: 0 auto;
  background: #fbf7f0;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}

.real-map:active {
  cursor: grabbing;
}

.map-stage {
  position: relative;
  transform-origin: center;
  will-change: transform;
}

#map-image {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.map-controls {
  position: absolute;
  right: 1rem;
  bottom: 1.1rem;
  display: grid;
  gap: 0.18rem;
  z-index: 4;
}

.map-controls button {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 0;
  background: #ededed;
  color: #222;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.map-controls button:hover {
  background: #dedbd6;
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #d95b55;
  box-shadow: 0 4px 10px rgba(85, 66, 54, 0.24);
  cursor: pointer;
  transform: translate(-50%, -50%) scale(var(--pin-scale, 1));
  transform-origin: center;
}

.map-marker-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.original-map-pin {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: auto;
}

.original-map-pin img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 5px 8px rgba(85, 66, 54, 0.18));
}

.original-map-pin.transparent-pin {
  opacity: 0.01;
}

.original-map-pin.attraction-pin::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #d95b55;
  box-shadow: 0 6px 14px rgba(85, 66, 54, 0.22);
}

.original-map-pin.icon-fallback {
  color: var(--clay);
  font-size: 1.25rem;
  line-height: 1;
  text-shadow: 0 3px 8px rgba(85, 66, 54, 0.18);
}


.map-pin::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
}

.map-pin:hover,
.map-pin.active {
  transform: translate(-50%, -50%) scale(calc(var(--pin-scale, 1) * 1.2));
}

.real-map[data-active-category="nature"] .map-pin:not([hidden]) {
  color: #7f9b6b;
}

.real-map[data-active-category="museums"] .map-pin:not([hidden]) {
  color: #d7ad4f;
}

.real-map[data-active-category="castles"] .map-pin:not([hidden]) {
  color: #b88457;
}

.real-map[data-active-category="attractions"] .map-pin:not([hidden]) {
  color: #d95b55;
}

.map-popup {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  width: min(330px, calc(100% - 4rem));
  margin: 0;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(85, 66, 54, 0.2);
}

.map-popup::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.96);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: translateY(-50%) rotate(45deg);
}

.map-popup[data-placement="left"]::before {
  right: -8px;
  left: auto;
  border: 0;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.map-popup[data-placement="center"]::before {
  display: none;
}

.map-popup[hidden] {
  display: none;
}

.map-popup-close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--coffee);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(85, 66, 54, 0.18);
}

.map-popup-close:hover,
.map-popup-close:focus-visible {
  background: #fff;
  color: var(--clay);
}

.map-popup img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.map-popup h3 {
  margin-bottom: 0.25rem;
  color: var(--clay);
  font-size: 1.35rem;
}

.map-popup p {
  font-size: 0.85rem;
  line-height: 1.45;
}

.map-canvas::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: rgba(255, 255, 255, 0.28);
  clip-path: polygon(39% 8%, 67% 17%, 76% 39%, 65% 53%, 72% 78%, 51% 91%, 38% 70%, 20% 66%, 28% 43%, 17% 23%);
}

.pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  max-width: 150px;
  border: 0;
  padding: 0.55rem 0.75rem;
  background: white;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(85, 66, 54, 0.2);
  font-weight: 700;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.pin.active,
.pin:hover {
  background: var(--clay);
  color: white;
}

.map-card {
  align-self: stretch;
}

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

.category-grid article {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.category-grid img {
  aspect-ratio: 1 / 0.78;
  box-shadow: none;
  transition: transform 500ms ease;
}

.category-grid article:hover img {
  transform: scale(1.04);
}

.category-grid h3 {
  padding: 1rem;
  background: white;
}

.itineraries {
  background: #fff;
}

.accordion-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 0;
}

.accordion-list summary {
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.accordion-list p {
  margin-top: 0.7rem;
}

.itineraries-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
  background: #fff;
}

.itineraries-section .section-heading {
  max-width: none;
  text-align: left;
}

.itineraries-section h2 {
  font-size: 2rem;
}

.itinerary-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 1.45rem;
  margin-top: 1.6rem;
}

.itinerary-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
}

.itinerary-card summary {
  display: block;
  cursor: pointer;
  transition: background 180ms ease;
  list-style: none;
}

.itinerary-card summary:hover .itinerary-title {
  background: #faf5ee;
}

.itinerary-card summary::-webkit-details-marker {
  display: none;
}

.itinerary-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.54 / 1;
  border-radius: 14px 14px 0 0;
  background: #ddd;
}

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

.days-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  min-width: 92px;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 6px 7px 0 rgba(210, 210, 210, 0.72);
}

.itinerary-title {
  display: grid;
  grid-template-columns: 1fr 20px;
  align-items: center;
  min-height: 68px;
  padding: 0.7rem 1.15rem;
  border-top: 1px solid var(--line);
  color: var(--clay);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.05;
}

.itinerary-title span:last-child {
  grid-column: 1;
  grid-row: 1;
}

.itinerary-title span:first-child {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  place-items: center;
  justify-self: end;
  width: 16px;
  height: 16px;
  color: var(--clay);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0;
  line-height: 1;
}

.itinerary-title span:first-child::before {
  content: "▾";
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.itinerary-card[open] .itinerary-title span:first-child::before {
  content: "▴";
}

.itinerary-card p {
  margin: 0;
  padding: 1.1rem 1.2rem 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.45;
}

.itinerary-card:not([open]) p {
  display: none;
}

.itinerary-card[open] > p {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    display: none;
    min-width: 210px;
    padding: 1rem;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: flex;
  }

  .section-grid,
  .destinations-hero,
  .contact,
  .interactive-map,
  .destination-workspace {
    grid-template-columns: 1fr;
  }

  .steps,
  .benefit-grid,
  .category-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 76vh;
  }

  .carousel,
  .carousel-track {
    min-height: 340px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .brand img,
  .site-footer img {
    width: 122px;
  }

  h1 {
    font-size: 4rem;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:nth-child(2) {
    margin-top: 0;
  }

  .map-canvas {
    min-height: 360px;
  }

  .pin {
    max-width: 116px;
    font-size: 0.78rem;
  }
}

/* Home redesign based on the original landing page reference */
:root {
  --paper: #ffffff;
  --card: #f1f1f1;
}

.site-header {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  min-height: 86px;
  padding: 0 clamp(1rem, 16vw, 18rem);
  background: var(--soft);
  border-bottom: 0;
  backdrop-filter: none;
}

.brand img,
.site-footer img {
  display: block;
  width: 132px;
  height: auto;
  object-fit: contain;
}

.main-nav,
.site-footer nav {
  justify-content: center;
  gap: 2rem;
  font-size: 0.95rem;
}

.language-switcher {
  justify-self: end;
  gap: 0.45rem;
  border: 0;
  background: transparent;
}

.lang-btn {
  min-width: auto;
  min-height: auto;
  padding: 0;
  background: transparent;
  font-size: 1rem;
  filter: saturate(0.8);
}

.lang-btn.active {
  background: transparent;
  filter: none;
}

.home-container {
  max-width: 1000px;
  margin: 0 auto;
}

.home-hero {
  min-height: 520px;
  place-items: center;
  padding: 7rem 1rem;
  background:
    linear-gradient(0deg, rgba(46, 40, 35, 0.24), rgba(46, 40, 35, 0.24)),
    url("http://poreuropa.com.mx/wp-content/uploads/2021/07/massimiliano-morosinotto-YKqJ1ejmX5E-unsplash-scaled.jpg") center/cover;
  text-align: center;
}

.home-hero .hero-copy {
  max-width: 900px;
}

.home-hero h1 {
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  text-transform: none;
}

.home-hero h1 span {
  display: inline-block;
  padding: 0 0.55rem 0.12rem;
  border: 4px solid rgba(238, 195, 100, 0.9);
  border-radius: 50%;
  font-style: italic;
  font-weight: 500;
}

.home-hero p {
  max-width: 780px;
  margin: 1.35rem auto 0;
  font-size: 0.98rem;
  font-weight: 700;
}

.intro.home-container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 5rem;
  align-items: center;
  padding: 4rem 1rem 2rem;
}

.intro h2,
.contact h2 {
  margin-bottom: 0.65rem;
  font-size: 2.1rem;
}

.intro h3 {
  margin-bottom: 1.35rem;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 700;
}

.intro p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.soft-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 0.6rem;
  padding: 0.65rem 1.15rem;
  border: 0;
  border-radius: 22px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.soft-button:hover {
  background: var(--clay);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(85, 66, 54, 0.14);
}

.mini-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #e9e9e9;
}

.mini-carousel-track {
  position: relative;
  aspect-ratio: 540 / 420;
}

.mini-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 420ms ease;
}

.mini-carousel img.active {
  opacity: 1;
}

.mini-carousel button {
  position: absolute;
  top: 50%;
  z-index: 2;
  border: 0;
  background: transparent;
  color: white;
  font-size: 2.4rem;
  transform: translateY(-50%);
  cursor: pointer;
}

.mini-carousel .mini-prev {
  left: 1rem;
}

.mini-carousel .mini-next {
  right: 1rem;
}

.mini-dots {
  position: absolute;
  right: 0;
  bottom: 0.85rem;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.mini-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

.mini-dots span.active {
  background: #fff;
}

.planning.home-container {
  padding: 2rem 1rem;
  background: white;
}

.planning .section-heading {
  max-width: none;
}

.planning h2 {
  font-size: 2rem;
}

.planning .steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 1.25rem;
  margin-top: 1.6rem;
}

.planning .step {
  display: block;
  overflow: hidden;
  min-height: 112px;
  padding: 0;
  background: var(--card);
  border: 0;
  border-radius: 16px;
}

.planning .step summary {
  display: grid;
  grid-template-columns: 92px 1fr 84px;
  align-items: center;
  min-height: 112px;
  padding: 1rem 1.2rem;
  cursor: pointer;
  list-style: none;
}

.planning .step summary::-webkit-details-marker {
  display: none;
}

.planning .step span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0;
  background: #e7b82d;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.planning .step h3 {
  justify-self: center;
  max-width: 210px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.step-icon {
  display: block;
  width: 84px;
  height: 84px;
  border: 0;
  border-radius: 50%;
  object-fit: contain;
}

.planning .step p {
  margin: 0;
  padding: 0.15rem 2rem 2rem;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
}

.planning .step:not([open]) p {
  display: none;
}

.planning .step[open] > p {
  display: block;
  opacity: 1;
  visibility: visible;
}

.planning .step[open] {
  min-height: 0;
}

.support.home-container {
  padding: 1.5rem 1rem 4rem;
}

.testimonial-strip {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 1rem;
}

.testimonial-strip button {
  border: 0;
  background: transparent;
  color: var(--clay);
  font-size: 2rem;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.carousel-btn:hover,
.mini-carousel button:hover,
.testimonial-strip button:hover {
  opacity: 0.78;
}

.testimonial-strip button:hover {
  transform: scale(1.08);
}

.testimonial-strip blockquote {
  position: relative;
  margin: 0;
  padding: 1.65rem 2.2rem;
  border-radius: 12px;
  background: #f7f3ee;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.25;
  text-align: center;
}

.testimonial-strip blockquote::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 24px;
  height: 24px;
  background: #f7f3ee;
  transform: translateX(-50%) rotate(45deg);
}

.help-title {
  margin-top: 1.8rem;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 800;
  text-align: center;
}

.support .benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem 6rem;
  max-width: 760px;
  margin: 3rem auto 0;
}

.support .benefit-grid p {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 500;
}

.support .benefit-grid img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.carousel-section {
  padding-top: 0;
}

.carousel,
.carousel-track {
  min-height: 325px;
}

.contact.home-container {
  display: block;
  max-width: 1000px;
  padding: 4rem 1rem 4.4rem;
}

.contact.home-container h2,
.destination-contact h2 {
  margin-bottom: 1.1rem;
  font-size: 1.9rem;
}

.lead-form {
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.6rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: 0.42rem;
  margin: 0;
  border: 0;
  padding: 0;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
}

.lead-form fieldset label {
  display: flex;
  align-items: center;
  gap: 0.34rem;
  min-height: 17px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 500;
}

.lead-form legend {
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.lead-form input:not([type="checkbox"]),
.lead-form textarea {
  padding: 0.62rem 0.72rem;
  min-height: 40px;
  font-size: 0.78rem;
}

.lead-form textarea {
  min-height: 112px;
}

.lead-form input[type="checkbox"] {
  width: 11px;
  height: 11px;
  margin: 0;
  accent-color: var(--clay);
}

.lead-form .submit {
  justify-self: end;
  grid-column: 2;
  min-height: 48px;
  margin-top: 0.25rem;
  padding-right: 1.35rem;
  padding-left: 1.35rem;
  border-radius: 0;
  font-size: 0.82rem;
}

.lead-form .submit:hover {
  background: var(--ink);
  color: white;
}

.lead-form .submit:disabled {
  opacity: 0.62;
  transform: none;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1rem;
  margin: -0.45rem 0 0;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 700;
}

.form-status a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.toast {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 80;
  max-width: min(360px, calc(100vw - 2rem));
  padding: 0.95rem 1.1rem;
  border-left: 4px solid var(--gold);
  background: rgba(251, 247, 239, 0.98);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(85, 66, 54, 0.2);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto auto;
    padding: 0 1rem;
  }

  .intro.home-container,
  .planning .steps,
  .support .benefit-grid,
  .itinerary-card-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-form .submit {
    grid-column: 1;
  }
}

/* Destinos reference pass */
.destinos-page {
  background: #fff;
}

.destinos-page section {
  padding-right: 1rem;
  padding-left: 1rem;
}

.destinos-page .destinations-hero,
.destinos-page .stats,
.destinos-page .trip-builder,
.destinos-page .destination-categories,
.destinos-page .destination-quote,
.destinos-page .itineraries-section,
.destinos-page .destination-contact {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
}

.destinos-page .destinations-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 4.5rem;
  padding-top: 4.2rem;
  padding-bottom: 2rem;
  background: #fff;
}

.destinos-page .destinations-hero .section-copy {
  max-width: 410px;
}

.destinos-page .destinations-hero h1 {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 4.8vw, 4.15rem);
  font-weight: 600;
  line-height: 0.95;
  text-transform: none;
}

.destinos-page .destinations-hero .hero-subtitle {
  margin-bottom: 1rem;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1.25;
}

.destinos-page .destinations-hero p {
  margin-bottom: 0.7rem;
  color: #66584f;
  font-size: 0.79rem;
  line-height: 1.55;
}

.destinos-page .button {
  min-height: 40px;
  margin-top: 1rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-size: 0.78rem;
}

.destinos-page .hero-photo {
  aspect-ratio: 1.62 / 1;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 15px 9px 27px -6px rgba(190, 190, 190, 0.5);
}

.destinos-page .stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 0;
  padding-top: 2rem;
  padding-bottom: 1.6rem;
}

.destinos-page .stats article {
  display: grid;
  justify-items: center;
  gap: 0.18rem;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.destinos-page .stats article::before {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.destinos-page .stats article:nth-child(1)::before {
  content: "♜";
}

.destinos-page .stats article:nth-child(2)::before {
  content: "♣";
}

.destinos-page .stats article:nth-child(3)::before {
  content: "✎";
}

.destinos-page .stats strong {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
}

.destinos-page .stats span {
  margin: 0;
  font-size: 0.76rem;
  font-style: italic;
  font-weight: 700;
}

.destinos-page .trip-builder {
  padding-top: 0;
  padding-bottom: 2.2rem;
  background: #fff;
}

.destinos-page .trip-builder .section-heading {
  display: none;
}

.destinos-page .destination-workspace.map-only {
  max-width: 860px;
  margin-top: 0;
}

.destinos-page .map-filters {
  justify-content: flex-start;
  margin-bottom: 0.65rem;
}

.destinos-page .map-filters button {
  padding: 0.42rem 0.58rem;
  font-size: 0.68rem;
  font-weight: 600;
}

.destinos-page .real-map {
  max-width: 820px;
  background: #fff;
}

.destinos-page #map-image {
  width: 100%;
}

.destinos-page .destination-categories {
  padding-top: 0.8rem;
  padding-bottom: 1.8rem;
  background: #fff;
}

.destinos-page .destination-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 1.2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.12rem;
}

.destinos-page .destination-tabs button {
  position: relative;
  border: 0;
  padding: 0 0 0.45rem;
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease;
}

.destinos-page .destination-tabs button:hover {
  color: var(--clay);
}

.destinos-page .destination-tabs button.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--clay);
}

.destinos-page .category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
  margin-top: 0;
}

.destinos-page .category-grid article {
  overflow: hidden;
  border-radius: 10px;
  background: #ddd;
}

.destinos-page .category-grid img {
  aspect-ratio: 1.55 / 1;
  border-radius: 10px;
  object-fit: cover;
}

.destinos-page .category-grid h3 {
  display: none;
}

.destinos-page .destination-quote {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 2.5rem;
  align-items: center;
  padding-top: 1.2rem;
  padding-bottom: 1.5rem;
}

.destinos-page .destination-quote img,
.destinos-page .destination-quote video {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 12px 10px 20px rgba(85, 66, 54, 0.12);
}

.destinos-page .destination-quote blockquote {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1.55;
}

.destinos-page .destination-quote cite {
  display: block;
  margin-top: 1.2rem;
  color: var(--clay);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-style: normal;
}

.destinos-page .itineraries-section {
  padding-top: 0.7rem;
  padding-bottom: 3rem;
}

.destinos-page .itineraries-section h2,
.destinos-page .destination-contact h2 {
  margin-bottom: 0.8rem;
  font-size: 1.7rem;
}

.destinos-page .itineraries-section .section-heading p {
  max-width: none;
  font-size: 0.78rem;
  line-height: 1.5;
}

.destinos-page .itinerary-card-grid {
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.destinos-page .itinerary-media {
  aspect-ratio: 1.55 / 1;
  border-radius: 10px 10px 0 0;
}

.destinos-page .days-badge {
  top: 8px;
  left: 8px;
  min-width: 82px;
  padding: 0.18rem 0.65rem;
  font-size: 0.88rem;
}

.destinos-page .itinerary-title {
  grid-template-columns: 1fr 20px;
  min-height: 54px;
  padding: 0.65rem 0.95rem;
  font-size: 1.2rem;
}

.destinos-page .itinerary-card p {
  padding: 1rem;
  font-size: 0.86rem;
}

.destinos-page .destination-contact {
  display: block;
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}

.destinos-page .destination-contact .lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 860px) {
  .destinos-page .destinations-hero,
  .destinos-page .destination-quote,
  .destinos-page .destination-contact .lead-form {
    grid-template-columns: 1fr;
  }

  .destinos-page .category-grid,
  .destinos-page .itinerary-card-grid,
  .destinos-page .stats {
    grid-template-columns: 1fr;
  }

  .destinos-page .destinations-hero {
    gap: 1.8rem;
    padding-top: 2.5rem;
  }
}
