:root {
  --ink: #153936;
  --ink-strong: #0b2b29;
  --teal: #0f5a54;
  --teal-soft: #dcece7;
  --coral: #e56f5c;
  --coral-dark: #b9493c;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --line: #d8e3df;
  --muted: #5f716e;
  --shadow: 0 18px 44px rgba(11, 43, 41, 0.09);
  --radius: 1.1rem;
  --shell: 72rem;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.pt-button {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--coral-dark);
  border: 0;
  border-radius: 0.7rem;
  font: inherit;
  font-weight: 780;
  text-decoration: none;
}

.pt-button:hover {
  color: #fff;
  background: var(--ink-strong);
}

.pt-card {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 7px 22px rgba(11, 43, 41, 0.055);
}

.pt-preview-badge {
  position: relative;
  z-index: 30;
  margin: 0;
  padding: 0.55rem 1rem;
  color: #fff;
  background: var(--coral-dark);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--teal);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral-dark);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--ink-strong);
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 18ch;
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 9vw, 4.65rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.65rem, 5vw, 2.75rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.15rem;
}

.shell {
  width: min(100% - 2rem, var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 0.95rem;
  color: #fff;
  background: var(--ink-strong);
  border-radius: 0.55rem;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  color: #fff;
  background: var(--ink-strong);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-row {
  min-height: 4.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  min-height: 2.75rem;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.brand:hover {
  color: #fff;
}

.brand img {
  width: 7.6rem;
  height: auto;
}

.brand span {
  overflow: hidden;
  max-width: 9rem;
  padding-left: 0.7rem;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-nav {
  display: none;
}

.mobile-nav {
  position: relative;
  flex: 0 0 auto;
}

.mobile-nav summary {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0.6rem;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  min-width: 14rem;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  box-shadow: var(--shadow);
}

.mobile-nav nav a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--ink-strong);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.mobile-nav nav a:last-child {
  border-bottom: 0;
}

.mobile-nav nav a[aria-current="page"] {
  color: var(--coral-dark);
  background: #fff3ee;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 10vw, 6.5rem) 0;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(229, 111, 92, 0.36), transparent 28rem),
    linear-gradient(135deg, var(--ink-strong), var(--teal));
}

.hero::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -9rem;
  width: 20rem;
  height: 20rem;
  border: 2rem solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero h1,
.hero h2 {
  color: #fff;
}

.hero-lead {
  max-width: 46rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 3.6vw, 1.35rem);
}

.eyebrow {
  margin-bottom: 0.55rem;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb4a8;
}

.benefit-grid {
  display: grid;
  gap: 0.75rem;
}

.benefit-grid article {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.9rem;
  backdrop-filter: blur(5px);
}

.benefit-grid h2 {
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
}

.benefit-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
}

.section {
  padding: clamp(3.4rem, 8vw, 6rem) 0;
}

.section-tint {
  background: var(--teal-soft);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.65rem;
}

.section-heading h2 {
  margin-bottom: 0.65rem;
}

.section-heading p:last-child {
  color: var(--muted);
}

.destination-groups {
  display: grid;
  gap: 1rem;
}

.destination-group {
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(11, 43, 41, 0.05);
}

.destination-group h3 {
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.destination-list {
  display: grid;
  gap: 0.5rem;
}

.destination-list a {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.72rem 0.78rem;
  color: var(--ink-strong);
  background: #f5f8f5;
  border-radius: 0.65rem;
  font-weight: 760;
  text-decoration: none;
}

.destination-list a span {
  color: var(--coral-dark);
}

.destination-list a:hover {
  background: #fff0ea;
}

.all-destinations-link {
  margin-top: 1.25rem;
}

.all-destinations-link a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--coral-dark);
  border-radius: 0.7rem;
  font-weight: 780;
  text-decoration: none;
}

.all-destinations-link a:hover {
  background: var(--ink-strong);
}

.destination-groups-full {
  align-items: start;
}

.destination-groups-full .destination-group {
  break-inside: avoid;
}

.service-grid {
  display: grid;
  gap: 0.75rem;
}

.service-grid a {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 90, 84, 0.14);
  border-radius: 0.85rem;
  text-decoration: none;
}

.service-grid a:hover {
  background: #fff;
  border-color: var(--coral);
}

.service-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.compact-info {
  padding-top: 2rem;
}

.info-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  color: #fff;
  background: var(--ink-strong);
  border-radius: var(--radius);
}

.info-panel h2 {
  margin-bottom: 0;
  color: #fff;
}

.info-panel > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumbs {
  padding: 1rem 0 0;
  font-size: 0.86rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.4rem;
  color: #93a29f;
}

.breadcrumbs a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.page-intro {
  padding: clamp(2.4rem, 7vw, 4.5rem) 0 clamp(1.2rem, 4vw, 2.2rem);
}

.page-intro h1 {
  font-size: clamp(2.2rem, 8vw, 4.3rem);
}

.prose-wide {
  max-width: var(--shell);
}

.lead {
  max-width: 52rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 3vw, 1.3rem);
}

.tours-section {
  padding-top: 1.25rem;
}

.tour-grid {
  display: grid;
  gap: 1rem;
}

.tour-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 7px 22px rgba(11, 43, 41, 0.055);
}

.tour-card:hover {
  border-color: #b7cdc6;
  box-shadow: var(--shadow);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  color: var(--coral-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-context {
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.tour-card h3 {
  margin-bottom: 0.7rem;
  overflow-wrap: anywhere;
}

.tour-card h3 a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--ink-strong);
}

.tour-card h3 span {
  color: var(--ink-strong);
}

.card-note {
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.card-included {
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.card-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: auto 0 0.85rem;
}

.card-facts div {
  min-width: 0;
  padding: 0.6rem;
  background: #f3f7f4;
  border-radius: 0.55rem;
}

.card-facts dt {
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-facts dd {
  margin: 0.1rem 0 0;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.card-price {
  margin-bottom: 0;
  color: var(--coral-dark);
  font-size: 1.45rem;
  font-weight: 850;
}

.card-price span {
  font-size: 0.85rem;
}

.card-price .card-price-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  line-height: 1.3;
}

.content-state {
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  color: #422f13;
  background: #fff3d6;
  border: 1px solid #e6c77c;
  border-left: 0.35rem solid #b66a19;
  border-radius: 0.75rem;
}

.content-state strong {
  display: block;
  margin-bottom: 0.25rem;
}

.content-state p {
  margin: 0;
}

.pagination {
  margin-top: 2rem;
}

.pagination-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  min-width: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  text-decoration: none;
}

.pagination span[aria-current="page"] {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.country-seo-copy {
  max-width: 50rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.country-seo-copy h2 {
  font-size: clamp(1.55rem, 4vw, 2.3rem);
}

.country-seo-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.tour-detail {
  padding-top: 2.25rem;
}

.tour-layout {
  display: grid;
  gap: 1.3rem;
}

.tour-main,
.tour-facts {
  min-width: 0;
  padding: clamp(1.1rem, 4vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tour-main h1 {
  font-size: clamp(2rem, 7vw, 3.8rem);
  overflow-wrap: anywhere;
}

.tour-summary {
  color: var(--muted);
  font-size: 1.1rem;
}

.tour-story {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.tour-story h2,
.tour-facts h2 {
  font-size: clamp(1.45rem, 4vw, 2.1rem);
}

.tour-story p:last-child {
  margin-bottom: 0;
}

.tour-facts {
  align-self: start;
  background: var(--teal-soft);
}

.tour-facts dl {
  margin: 0 0 1.5rem;
}

.tour-facts dl div {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 0.65rem;
  padding: 0.68rem 0;
  border-bottom: 1px solid rgba(15, 90, 84, 0.16);
}

.tour-facts dt {
  color: var(--muted);
}

.tour-facts dd {
  min-width: 0;
  margin: 0;
  font-weight: 780;
  overflow-wrap: anywhere;
}

.tour-facts h3 {
  margin-bottom: 0.65rem;
}

.tour-facts ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

@media (max-width: 33.99rem) {
  .tour-facts dl div {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.2rem;
  }
}

.site-footer {
  margin-top: clamp(3rem, 8vw, 6rem);
  padding: 2.5rem 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink-strong);
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
}

.footer-brand img {
  width: 8.6rem;
  height: auto;
  margin-bottom: 0.8rem;
}

.footer-brand p,
.footer-legal p {
  margin-bottom: 0.55rem;
}

.site-footer nav {
  display: grid;
  gap: 0.75rem;
}

.site-footer a {
  color: #fff;
}

.site-footer nav a {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
}

.footer-legal {
  font-size: 0.84rem;
}

.footer-legal a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  margin: 0.15rem 0.4rem 0.15rem 0;
  padding: 0.25rem 0.2rem;
}

@media (min-width: 34rem) {
  .benefit-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (min-width: 48rem) {
  .shell {
    width: min(100% - 3rem, var(--shell));
  }

  .brand img {
    width: 8.8rem;
  }

  .brand span {
    max-width: 14rem;
  }

  .mobile-nav {
    display: none;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }

  .desktop-nav a {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.72rem;
    color: rgba(255, 255, 255, 0.82);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 720;
    text-decoration: none;
  }

  .desktop-nav a:hover,
  .desktop-nav a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 58rem;
  }

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

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

  .info-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: end;
  }

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

  .footer-grid {
    grid-template-columns: 1.1fr 0.7fr 1.2fr;
    align-items: start;
  }

  .footer-legal {
    grid-column: auto;
  }
}

@media (min-width: 64rem) {
  .tour-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tour-layout {
    grid-template-columns: minmax(0, 1.7fr) minmax(18rem, 0.8fr);
  }

  .tour-facts {
    position: sticky;
    top: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
