/* Inner pages — navy / orange / white
   Loaded after brand CSS. Scoped to .gti-page so homepage is untouched. */

.gti-page {
  --ink: #5B6472;
  --muted: #5B6472;
  --navy: #052963;
  --navy-deep: #031A42;
  --gold: #E0741E;
  --gold-bright: #E0741E;
  --gold-hover: #C85F12;
  --ivory: #F8FAFC;
  --paper: #FFFFFF;
  --line: #E5EAF0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Outfit, system-ui, sans-serif;
}

.gti-page h1,
.gti-page h2,
.gti-page h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.18;
}

.gti-page-wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.gti-page-wrap--wide {
  width: min(1280px, calc(100% - 2.5rem));
}

.gti-page-wrap--narrow {
  width: min(760px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Inner hero
   -------------------------------------------------------------------------- */
.gti-inner-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(22rem, 42vw, 30rem);
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
}

.gti-inner-hero--center {
  align-items: center;
  text-align: center;
}

.gti-inner-hero__media,
.gti-inner-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gti-inner-hero__media img {
  transform: scale(1.06);
}

.gti-inner-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 41, 99, 0.8) 0%, rgba(5, 41, 99, 0.62) 52%, rgba(5, 41, 99, 0.6) 100%),
    linear-gradient(180deg, rgba(5, 41, 99, 0.55) 0%, rgba(5, 41, 99, 0.78) 100%);
}

.gti-inner-hero--center .gti-inner-hero__veil {
  background:
    linear-gradient(180deg, rgba(5, 41, 99, 0.6) 0%, rgba(5, 41, 99, 0.78) 100%);
}

.gti-inner-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: calc(var(--header-total-h, 7.25rem) + 2.4rem) 0 3.25rem;
}

.gti-inner-hero--center .gti-inner-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gti-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  margin: 0 0 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.68);
}

.gti-crumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gti-crumb a:hover {
  color: #E0741E;
}

.gti-crumb span[aria-current="page"] {
  color: #fff;
}

.gti-inner-hero__kicker {
  margin: 0 0 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E0741E;
}

.gti-inner-hero h1 {
  margin: 0;
  max-width: min(38rem, 100%);
  font-size: clamp(2.15rem, 5vw, 3.55rem);
  font-weight: 700;
  color: #fff;
}

.gti-inner-hero--center h1 {
  max-width: 22ch;
}

.gti-inner-hero__sub {
  margin: 0.85rem 0 0;
  max-width: 36rem;
  font-family: Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.gti-inner-hero__lead {
  margin: 0.85rem 0 0;
  max-width: 38rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.gti-inner-hero--center .gti-inner-hero__lead,
.gti-inner-hero--center .gti-inner-hero__sub {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Page sections
   -------------------------------------------------------------------------- */
.gti-page-block {
  padding: 4.75rem 0;
  background: var(--paper);
}

.gti-page-block--tight {
  padding: 3rem 0;
}

.gti-page-block--paper {
  background: var(--ivory);
}

.gti-page-block--ivory {
  background: var(--ivory);
}

.gti-page-intro {
  padding: 2.75rem 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.gti-page-intro p,
.gti-page-intro .gti-prose {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  white-space: pre-line;
}

.gti-page-intro .gti-prose p + p {
  margin-top: 1rem;
}

.gti-page-intro .gti-prose--rich {
  white-space: normal;
}

.gti-page-intro .gti-prose--rich h2,
.gti-page-intro .gti-prose--rich h3,
.gti-page-intro .gti-prose--rich h4 {
  margin: 1.35rem 0 0.55rem;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
}

.gti-page-intro .gti-prose--rich h2 { font-size: 1.55rem; }
.gti-page-intro .gti-prose--rich h3 { font-size: 1.28rem; }

.gti-page-intro .gti-prose--rich p {
  margin: 0 0 1rem;
  white-space: normal;
}

.gti-page-intro .gti-prose--rich ul,
.gti-page-intro .gti-prose--rich ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.gti-page-intro .gti-prose--rich li + li {
  margin-top: 0.35rem;
}

.gti-page-intro .gti-prose--rich a {
  color: var(--navy);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.gti-page-intro .gti-prose--rich img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 0.7rem;
}

.gti-page-head {
  margin-bottom: 2.25rem;
}

.gti-page-head--center {
  text-align: center;
}

.gti-page-head--center .gti-page-kicker,
.gti-page-head--center p {
  margin-inline: auto;
}

.gti-page-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.gti-page-head p {
  margin: 0.7rem 0 0;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.7;
}

.gti-page-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.gti-page-split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.gti-page-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.12rem;
  transition: color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.gti-page-more:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Sticky chip nav
   -------------------------------------------------------------------------- */
.gti-chip-nav {
  position: sticky;
  top: var(--header-total-h, 7.25rem);
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gti-chip-nav.gti-page-lift {
  position: sticky;
  top: var(--header-total-h, 7.25rem);
  z-index: 40;
  width: min(1180px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
  margin-top: -2.35rem;
  padding-bottom: 0;
  border-radius: 999px;
  border: 1px solid #E5EAF0;
  box-shadow: 0 18px 40px -24px rgba(5, 41, 99, 0.28);
}

.gti-chip-nav.gti-page-lift .gti-chip-nav__inner {
  width: 100%;
  padding: 0.65rem 0.85rem;
}

.gti-page [id^="category-"] {
  scroll-margin-top: calc(var(--header-total-h, 5.25rem) + 4.5rem);
}

.gti-chip-nav__inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.85rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.gti-chip-nav__inner::-webkit-scrollbar {
  display: none;
}

.gti-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.gti-chip:hover,
.gti-chip.is-active,
.gti-chip.active,
.gti-page .filter-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

@media (min-width: 800px) {
  .gti-chip-nav__inner {
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
  }
}

/* --------------------------------------------------------------------------
   Grids
   -------------------------------------------------------------------------- */
.gti-pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.gti-cover-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.gti-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.gti-dest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 720px) {
  .gti-pkg-grid,
  .gti-story-grid,
  .gti-dest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 1100px) {
  .gti-pkg-grid,
  .gti-story-grid,
  .gti-dest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
  }

  .gti-cover-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   Cover cards (packages index)
   -------------------------------------------------------------------------- */
.gti-cover-card {
  position: relative;
  display: flex;
  min-height: 26rem;
  overflow: hidden;
  border-radius: 1.1rem;
  background: var(--navy-deep);
  box-shadow: 0 18px 40px -22px rgba(5, 41, 99, 0.55);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gti-cover-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px -20px rgba(5, 41, 99, 0.6);
}

.gti-cover-card__bg,
.gti-cover-card__bg img,
.gti-cover-card__bg .img-loader,
.gti-cover-card__ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gti-inner-hero__media .img-loader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gti-cover-card__ph {
  background: linear-gradient(160deg, #031A42, #052963 55%, #1a4a86);
}

.gti-cover-card:hover .gti-cover-card__bg img {
  transform: scale(1.07);
  transition: transform 0.7s ease;
}

.gti-cover-card__bg img {
  transition: transform 0.7s ease;
}

.gti-cover-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 41, 99, 0.08) 0%, rgba(5, 41, 99, 0.2) 38%, rgba(5, 41, 99, 0.92) 100%);
}

.gti-cover-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 1.15rem 1.15rem 1.2rem;
  pointer-events: none;
}

.gti-cover-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.gti-cover-card__off,
.gti-cover-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gti-cover-card__off {
  background: var(--gold);
  color: #fff;
}

.gti-cover-card__tag {
  background: #fff;
  color: var(--navy);
}

.gti-cover-card h3 {
  margin: 0;
  font-size: 1.28rem;
  color: #fff;
}

.gti-cover-card h3 a {
  color: inherit;
  text-decoration: none;
  pointer-events: auto;
}

.gti-cover-card h3 a:hover {
  color: #E0741E;
}

.gti-cover-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}

.gti-cover-card__stars {
  color: var(--gold);
  letter-spacing: 0.06em;
}

.gti-cover-card__rule {
  display: block;
  height: 1px;
  margin: 0.95rem 0;
  background: rgba(255, 255, 255, 0.22);
}

.gti-cover-card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

.gti-cover-card__from {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.gti-cover-card__price {
  margin: 0.2rem 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #E0741E;
  line-height: 1;
}

.gti-cover-card__note {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}

.gti-cover-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.95rem;
  background: var(--gold);
  color: #fff !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  pointer-events: auto;
  transition: background 0.22s ease, transform 0.22s ease;
}

.gti-cover-card__cta:hover {
  background: #C85F12;
  color: #fff !important;
  transform: translateY(-2px);
}

.gti-cover-card__hit {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.gti-cover-card h3 a,
.gti-cover-card__cta {
  position: relative;
  z-index: 3;
}

/* --------------------------------------------------------------------------
   Listing package cards inside inner pages
   -------------------------------------------------------------------------- */
.gti-page .pkg-card:not(.pkg-card-home--split) {
  overflow: visible !important;
  background: #FFFFFF !important;
  border: 1px solid #E5EAF0 !important;
  border-radius: 1.25rem !important;
  box-shadow: 0 18px 44px -22px rgba(5, 41, 99, 0.28) !important;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.gti-page .pkg-card:not(.pkg-card-home--split)::before {
  display: none;
}

.gti-page .pkg-card:not(.pkg-card-home--split):hover {
  transform: translateY(-6px) !important;
  border-color: #E5EAF0 !important;
  box-shadow: 0 28px 52px -22px rgba(5, 41, 99, 0.32) !important;
}

.gti-page .pkg-card:not(.pkg-card-home--split) .pkg-card__title {
  font-size: 1.22rem;
  color: #052963;
}

.gti-page .pkg-card:not(.pkg-card-home--split):hover .pkg-card__title {
  color: #052963;
}

/* --------------------------------------------------------------------------
   Story / destination tiles
   -------------------------------------------------------------------------- */
.gti-tile {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.05rem;
  box-shadow: 0 14px 32px -24px rgba(5, 41, 99, 0.3);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.gti-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 116, 30, 0.4);
  box-shadow: 0 22px 40px -20px rgba(5, 41, 99, 0.35);
}

.gti-tile__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--navy-deep);
}

.gti-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gti-tile:hover .gti-tile__media img {
  transform: scale(1.06);
}

.gti-tile__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.3rem 1.35rem;
}

.gti-tile__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.gti-tile h3 {
  margin: 0.55rem 0 0;
  font-size: 1.2rem;
}

.gti-tile h3 a {
  color: inherit;
  text-decoration: none;
}

.gti-tile h3 a:hover {
  color: var(--gold-bright);
}

.gti-tile p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.gti-tile__cta {
  margin-top: auto;
  padding-top: 1.1rem;
}

.gti-badge-float {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.28rem 0.6rem;
  background: #fff;
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gti-badge-float--gold {
  background: var(--gold);
  color: #fff;
}

.gti-badge-float--right {
  left: auto;
  right: 0.85rem;
  background: rgba(5, 41, 99, 0.78);
  color: #fff;
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.gti-about-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.gti-about-split p {
  margin: 1.15rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.gti-about-split .gti-actions,
.gti-service-card .gti-page-more {
  margin-top: 1.35rem;
}

.gti-about-photo {
  position: relative;
}

.gti-about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.1rem;
}

.gti-about-seal {
  position: absolute;
  right: 1rem;
  bottom: -1.15rem;
  width: 7.25rem;
  height: 7.25rem;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: 4px solid var(--gold);
  box-shadow: 0 12px 28px rgba(5, 41, 99, 0.28);
}

.gti-about-seal strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  color: #E0741E;
  line-height: 1;
}

.gti-about-seal span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gti-check-list {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.gti-check-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.65rem;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--navy);
}

.gti-check-list li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(224, 116, 30, 0.18);
  flex-shrink: 0;
}

.gti-feature-grid {
  display: grid;
  gap: 1.15rem;
}

.gti-feature-card,
.gti-service-card {
  padding: 1.5rem 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.gti-feature-card:hover,
.gti-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 116, 30, 0.4);
  box-shadow: 0 18px 34px -22px rgba(5, 41, 99, 0.32);
}

.gti-feature-card h3,
.gti-service-card h3 {
  margin: 0.85rem 0 0;
  font-size: 1.15rem;
}

.gti-feature-card p,
.gti-service-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.gti-feature-card svg,
.gti-service-card .gti-emoji {
  width: 1.7rem;
  height: 1.7rem;
  color: var(--gold);
}

.gti-emoji {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

.gti-stat-band {
  padding: 3.5rem 0;
  background: var(--navy);
  color: #fff;
}

.gti-stat-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gti-stat-band article {
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid rgba(224, 116, 30, 0.22);
}

.gti-stat-band p:first-child {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #E0741E;
}

.gti-stat-band p:last-child {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
}

.gti-mission-grid {
  display: grid;
  gap: 1.15rem;
}

.gti-mission-card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.7rem;
  background: var(--navy);
  color: #fff;
  border-radius: 1.05rem;
}

.gti-mission-card--alt {
  background: #0B3F8C;
}

.gti-mission-card h3,
.gti-mission-card p {
  position: relative;
  z-index: 1;
}

.gti-mission-card h3 {
  margin: 0;
  color: #fff;
}

.gti-mission-card p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

@media (min-width: 800px) {
  .gti-about-split {
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
  }

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

  .gti-stat-band__grid,
  .gti-mission-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gti-mission-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 700px) {
  .gti-page .gti-service-grid,
  .gti-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.gti-service-grid {
  display: grid;
  gap: 1.15rem;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.gti-contact-grid {
  display: grid;
  gap: 1.5rem;
}

.gti-contact-panel,
.gti-form-card {
  padding: 1.7rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  box-shadow: 0 16px 36px -26px rgba(5, 41, 99, 0.3);
}

.gti-contact-panel h2,
.gti-form-card h2 {
  margin: 0;
  font-size: 1.55rem;
}

.gti-contact-panel > p,
.gti-form-card > p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.gti-info-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.gti-info-list li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.75rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
}

.gti-info-list svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--gold);
}

.gti-info-list span {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.gti-info-list p,
.gti-info-list a {
  margin: 0.2rem 0 0;
  color: var(--navy);
  font-weight: 650;
  text-decoration: none;
  line-height: 1.5;
}

.gti-info-list a:hover {
  color: var(--gold-bright);
}

.gti-quick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.15rem;
}

.gti-hours {
  margin-top: 1.4rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.gti-hours h3 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  font-family: Inter, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gti-hours dl {
  margin: 0;
}

.gti-hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.88rem;
}

.gti-hours dt {
  color: var(--muted);
}

.gti-hours dd {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
}

.gti-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.35rem;
}

.gti-form-row {
  display: grid;
  gap: 0.95rem;
}

.gti-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.gti-field input,
.gti-field select,
.gti-field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.gti-field input:focus,
.gti-field select:focus,
.gti-field textarea:focus {
  outline: 2px solid rgba(224, 116, 30, 0.45);
  border-color: var(--gold);
}

.gti-field .is-error {
  border-color: #b42318;
}

.gti-error {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: #b42318;
}

.gti-alert {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: #eef8f0;
  border: 1px solid #b7e0c2;
  color: #146c2e;
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

.gti-map {
  margin-top: 2.5rem;
}

.gti-map iframe,
.gti-map > div iframe {
  display: block;
  width: 100%;
  min-height: 18rem;
  border: 0;
  border-radius: 1rem;
}

.gti-map-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

@media (min-width: 900px) {
  .gti-contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.75rem;
    align-items: start;
  }

  .gti-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gti-masonry {
  columns: 1;
  column-gap: 1rem;
}

.gti-masonry article {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.9rem;
}

.gti-masonry .gti-gallery-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.gti-masonry .gti-gallery-link:hover .gti-masonry-cap {
  color: #E0741E;
}

.gti-masonry figcaption,
.gti-masonry .gti-masonry-cap {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(5, 41, 99, 0.82));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 650;
}

@media (min-width: 700px) {
  .gti-masonry {
    columns: 2;
  }
}

@media (min-width: 1100px) {
  .gti-masonry {
    columns: 3;
  }
}

/* --------------------------------------------------------------------------
   FAQ / empty / CTA
   -------------------------------------------------------------------------- */
.gti-faq {
  display: grid;
  gap: 0.65rem;
}

.gti-faq details,
.gti-page .faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
}

.gti-faq summary,
.gti-page .faq-item [data-faq-trigger] {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.gti-faq p,
.gti-page .faq-answer p {
  margin: 0;
  padding: 0 1.15rem 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.gti-empty {
  padding: 3.5rem 1.5rem;
  text-align: center;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 1rem;
}

.gti-empty p {
  margin: 0;
  color: var(--muted);
}

.gti-empty p:first-child {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}

.gti-empty p + p {
  margin-top: 0.45rem;
}

.gti-page-cta {
  padding: 4.5rem 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(224, 116, 30, 0.18), transparent 42%),
    var(--navy);
  color: #fff;
  text-align: center;
}

.gti-page-cta h2,
.gti-page-cta .gti-page-kicker {
  color: #fff;
}

.gti-page-cta .gti-page-kicker {
  color: #E0741E;
}

.gti-page-cta p {
  margin: 0.8rem auto 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.gti-page-cta .gti-actions {
  margin-top: 1.6rem;
}

.gti-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.gti-actions--center {
  justify-content: center;
  margin-top: 2.5rem;
}

.gti-empty .gti-btn {
  margin-top: 1.25rem;
}

.gti-inner-hero--center + * .gti-actions,
.gti-page-cta .gti-actions,
.gti-page-head--center + .gti-actions {
  justify-content: center;
}

.gti-page .gti-btn,
.gti-page .contact-submit,
.gti-page .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.9rem;
  padding: 0.7rem 1.3rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.gti-page .gti-btn,
.gti-page .contact-submit {
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
}

.gti-page .gti-btn:hover,
.gti-page .contact-submit:hover {
  background: #031A42;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.gti-page .gti-btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.gti-page .gti-btn--gold:hover {
  background: #C85F12;
  border-color: #C85F12;
  color: #fff;
}

.gti-page .gti-btn--ghost,
.gti-page .contact-btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.gti-page .gti-btn--ghost:hover {
  background: var(--navy);
  color: #fff;
}

.gti-page .gti-btn--on-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.gti-page .gti-btn--on-dark:hover {
  border-color: var(--gold);
  color: #E0741E;
}

.gti-page .contact-btn--whatsapp {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
}

.gti-page .gti-cta-band {
  background: var(--navy);
}

/* Destination overlapping stats */
.gti-float-stats {
  position: relative;
  z-index: 3;
  margin-top: -2.4rem;
}

.gti-float-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.gti-float-stats article {
  padding: 1rem 0.85rem;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  box-shadow: 0 14px 28px -20px rgba(5, 41, 99, 0.35);
}

.gti-float-stats p:first-child {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  color: var(--navy);
}

.gti-float-stats p:last-child {
  margin: 0.15rem 0 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (min-width: 800px) {
  .gti-float-stats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Plan tour */
.gti-plan-layout {
  display: grid;
  gap: 2rem;
  padding: 3.5rem 0 4.5rem;
}

.gti-plan-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gti-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px -22px rgba(5, 41, 99, 0.3);
}

.gti-plan-card img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
}

.gti-plan-card__body {
  padding: 1.2rem 1.2rem 1.3rem;
}

.gti-plan-cards {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 800px) {
  .gti-plan-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gti-plan-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.75fr);
    align-items: start;
  }
}

/* Blog article */
.gti-article {
  padding: 3.5rem 0 4.5rem;
}

.gti-article .prose,
.gti-article .blog-body,
.gti-page .blog-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
}

.gti-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
}

.gti-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gti-btn-full {
  width: 100%;
}

.gti-tile__meta {
  margin-top: 0.85rem;
}

.gti-search {
  position: relative;
  width: min(20rem, 100%);
}

.gti-search input {
  width: 100%;
  padding: 0.7rem 0.9rem 0.7rem 2.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font: inherit;
}

.gti-search svg {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  color: var(--muted);
}

.gti-page .plan-tour-section {
  margin-bottom: 2.25rem;
  padding: 1.6rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.gti-page .plan-tour-section-title {
  margin: 0;
  font-size: 1.55rem;
}

.gti-page .plan-tour-section-intro,
.gti-page .plan-tour-text {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.gti-page .plan-tour-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.gti-page .plan-tour-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gti-page .plan-tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px -22px rgba(5, 41, 99, 0.32);
}

.gti-page .plan-tour-card-image {
  width: 100%;
  height: 11rem;
  object-fit: cover;
}

.gti-page .plan-tour-card-body {
  padding: 1.1rem 1.15rem 1.2rem;
}

.gti-page .plan-tour-card-title {
  margin: 0;
  font-size: 1.15rem;
}

.gti-page .plan-tour-card-text {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.gti-page .plan-tour-card-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

.gti-page .plan-tour-form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.05rem;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 16px 36px -24px rgba(5, 41, 99, 0.32);
}

.gti-page .plan-tour-form-card-title {
  margin: 0;
  font-size: 1.25rem;
}

.gti-page .plan-tour-form-card-sub {
  margin: 0.4rem 0 1rem;
  color: var(--muted);
}

.gti-page .plan-tour-checklist,
.gti-page .plan-tour-help-grid,
.gti-page .plan-tour-bullet-grid {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.gti-page .plan-tour-checklist li,
.gti-page .plan-tour-help-grid li,
.gti-page .plan-tour-bullet-grid li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--navy);
  font-weight: 550;
}

.gti-page .plan-tour-checklist li::before,
.gti-page .plan-tour-bullet-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.gti-page .plan-tour-features {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.gti-page .plan-tour-section--muted,
.gti-page .plan-tour-feature {
  background: #F8FAFC;
}

.gti-page .plan-tour-feature {
  padding: 1rem 1.05rem;
  border-radius: 0.75rem;
}

.gti-page .plan-tour-section--process {
  background: #052963;
  color: #fff;
}

.gti-page .plan-tour-section--process .plan-tour-section-title,
.gti-page .plan-tour-section--process .plan-tour-step-title {
  color: #fff;
}

.gti-page .plan-tour-section--process .plan-tour-step-text {
  color: rgba(255, 255, 255, 0.78);
}

.gti-page .plan-tour-steps {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.gti-page .plan-tour-step {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.85rem;
  align-items: start;
}

.gti-page .plan-tour-step-num {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--navy);
  color: #E0741E;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

@media (min-width: 800px) {
  .gti-page .plan-tour-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .gti-chip-nav {
    top: var(--header-total-h, 6.5rem);
  }

  .gti-page-wrap,
  .gti-inner-hero__inner {
    width: min(1180px, calc(100% - 1.5rem));
  }
}

/* --------------------------------------------------------------------------
   Overlapping lift + premium inner surfaces
   -------------------------------------------------------------------------- */
.gti-page-lift {
  position: relative;
  z-index: 4;
  margin-top: -4.75rem;
  padding-bottom: 0.5rem;
}

.gti-chip-nav.gti-page-lift {
  position: sticky;
  z-index: 40;
}

.gti-surface {
  background: #FFFFFF;
  border: 1px solid #E5EAF0;
  border-radius: 1.35rem;
  box-shadow: 0 28px 60px -28px rgba(5, 41, 99, 0.28);
}

.gti-surface--pad {
  padding: 1.75rem 1.5rem 1.85rem;
}

.gti-icon-orb {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(224, 116, 30, 0.12);
  color: #E0741E;
}

.gti-icon-orb svg {
  width: 1.25rem;
  height: 1.25rem;
}

.gti-feature-card,
.gti-service-card,
.gti-tile,
.gti-form-card,
.gti-contact-panel {
  box-shadow: 0 22px 48px -28px rgba(5, 41, 99, 0.22);
}

.gti-feature-card,
.gti-service-card {
  border-radius: 1.25rem;
  padding: 1.7rem 1.5rem 1.75rem;
}

.gti-stat-band article {
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.04);
}

.gti-about-photo img {
  box-shadow: 0 28px 50px -22px rgba(5, 41, 99, 0.45);
}

.gti-page .gti-btn--gold {
  box-shadow: 0 12px 24px -14px rgba(224, 116, 30, 0.7);
}

/* --------------------------------------------------------------------------
   Status / booking confirmation
   -------------------------------------------------------------------------- */
.gti-status {
  padding: 5.5rem 0 4.5rem;
  background: #F8FAFC;
}

.gti-status__card {
  width: min(42rem, calc(100% - 2rem));
  margin: -5.5rem auto 0;
  position: relative;
  z-index: 3;
  padding: 2.25rem 1.6rem 1.85rem;
  background: #fff;
  border: 1px solid #E5EAF0;
  border-radius: 1.4rem;
  box-shadow: 0 32px 64px -30px rgba(5, 41, 99, 0.3);
  text-align: center;
}

.gti-status__mark {
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1.15rem;
  border-radius: 999px;
  background: rgba(224, 116, 30, 0.12);
  color: #E0741E;
  font-size: 1.7rem;
  font-weight: 800;
}

.gti-status__mark--fail {
  background: #fde8e8;
  color: #b42318;
}

.gti-status__card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.gti-status__card > p {
  margin: 0.55rem 0 0;
  color: #5B6472;
}

.gti-status__rows {
  margin: 1.6rem 0 0;
  padding: 1.35rem 0 0;
  border-top: 1px solid #E5EAF0;
  text-align: left;
  display: grid;
  gap: 0.85rem;
}

.gti-status__rows div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
}

.gti-status__rows dt {
  color: #5B6472;
  font-weight: 600;
}

.gti-status__rows dd {
  margin: 0;
  color: #052963;
  font-weight: 700;
  text-align: right;
}

.gti-status__card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  text-align: left;
}

.gti-status-list {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
  text-align: left;
  color: #5B6472;
  line-height: 1.7;
}

.gti-status-list li + li {
  margin-top: 0.45rem;
}

.gti-status__rows em {
  color: #E0741E;
  font-style: normal;
  font-weight: 700;
}

.gti-status__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

/* --------------------------------------------------------------------------
   Booking flow (preserve JS class names)
   -------------------------------------------------------------------------- */
.gti-page.booking-flow-page,
.booking-flow-page.gti-page {
  background: #F8FAFC;
}

.gti-booking-hero {
  padding: calc(var(--header-total-h, 7.25rem) + 2.4rem) 0 5.5rem;
  background:
    linear-gradient(180deg, rgba(5, 41, 99, 0.92), rgba(5, 41, 99, 0.86)),
    url("https://images.unsplash.com/photo-1548013146-72479768bada?auto=format&fit=crop&w=1600&q=70") center / cover;
  color: #fff;
}

.gti-booking-hero h1,
.gti-page .booking-page-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.gti-page .booking-page-sub,
.gti-page .booking-page-eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.gti-page .booking-page-eyebrow {
  color: #E0741E;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.gti-page .booking-flow-stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.gti-page .booking-flow-step {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.gti-page .booking-flow-step.is-current,
.gti-page .booking-flow-step.is-complete {
  background: #E0741E;
  border-color: #E0741E;
  color: #fff;
}

.gti-booking-body {
  position: relative;
  z-index: 3;
  margin-top: -3.75rem;
  padding: 0 0 4.5rem;
}

.gti-page .booking-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.gti-page .booking-form-card,
.gti-page .booking-summary-v2-card {
  background: #fff;
  border: 1px solid #E5EAF0;
  border-radius: 1.3rem;
  box-shadow: 0 28px 56px -30px rgba(5, 41, 99, 0.28);
}

.gti-page .booking-form-card {
  padding: 1.7rem 1.45rem 1.8rem;
}

.gti-page .booking-flow-form-title,
.gti-page .booking-summary-v2-heading,
.gti-page .booking-summary-v2-title {
  color: #052963;
}

.gti-page .booking-flow-label,
.gti-page .booking-summary-v2-row-label,
.gti-page .booking-summary-v2-section-title {
  color: #052963;
}

.gti-page .booking-flow-input,
.gti-page .booking-flow-select,
.gti-page .booking-flow-textarea {
  border: 1px solid #E5EAF0;
  border-radius: 0.7rem;
  color: #5B6472;
}

.gti-page .booking-flow-input:focus {
  outline: 2px solid rgba(224, 116, 30, 0.35);
  border-color: #E0741E;
}

.gti-page .booking-btn-success,
.gti-page .booking-btn-primary {
  background: #E0741E !important;
  border-color: #E0741E !important;
  color: #fff !important;
  border-radius: 0.55rem;
}

.gti-page .booking-btn-success:hover,
.gti-page .booking-btn-primary:hover {
  background: #C85F12 !important;
}

.gti-page .booking-summary-v2-price,
.gti-page .booking-payment-plan-price strong,
.gti-page .booking-summary-v2-savings {
  color: #E0741E;
}

.gti-page .booking-payment-plan.is-selected,
.gti-page .booking-payment-currency-option.is-selected,
.gti-page .booking-payment-method:has(input:checked) {
  border-color: #E0741E;
  box-shadow: 0 0 0 3px rgba(224, 116, 30, 0.14);
}

@media (min-width: 980px) {
  .gti-page .booking-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  }

  .gti-page .booking-summary-v2--aside {
    position: sticky;
    top: calc(var(--header-total-h, 7.25rem) + 1rem);
  }
}

/* --------------------------------------------------------------------------
   Package details
   -------------------------------------------------------------------------- */
.gti-pkg-detail {
  background: #F8FAFC;
  padding: calc(var(--header-total-h, 7.25rem) + 1.4rem) 0 4.5rem;
}

.gti-pkg-detail__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5B6472;
}

.gti-pkg-detail__crumbs a {
  color: #5B6472;
  text-decoration: none;
}

.gti-pkg-detail__crumbs a:hover {
  color: #E0741E;
}

.gti-pkg-detail__crumbs span[aria-hidden="true"] {
  color: #E5EAF0;
}

.gti-pkg-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin: 1rem 0 1.5rem;
  color: #5B6472;
  font-size: 0.92rem;
}

.gti-pkg-detail__rating span:first-child {
  color: #E0741E;
  letter-spacing: 0.08em;
}

.gti-pkg-detail__rating strong {
  color: #052963;
}

.gti-pkg-detail header h1 {
  margin: 0;
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
}

.gti-page-intro.gti-page-lift .gti-page-wrap--narrow {
  background: #fff;
  border: 1px solid #E5EAF0;
  border-radius: 1.3rem;
  padding: 1.85rem 1.6rem;
  box-shadow: 0 28px 60px -28px rgba(5, 41, 99, 0.28);
}

.gti-pkg-detail .pkg-detail-gallery {
  margin: 0 0 2rem;
  overflow: hidden;
  border-radius: 1.35rem;
  box-shadow: 0 28px 56px -28px rgba(5, 41, 99, 0.35);
}

.gti-pkg-detail h1,
.gti-pkg-detail h2,
.gti-pkg-detail .pkg-booking-panel-title,
.gti-pkg-detail .pkg-booking-option-title {
  color: #052963;
}

.gti-pkg-detail .pkg-sidebar-card,
.gti-pkg-detail .pkg-quote-card,
.gti-pkg-detail .pkg-booking-panel-inner,
.gti-pkg-detail .pkg-booking-option-card {
  background: #fff;
  border: 1px solid #E5EAF0;
  border-radius: 1.2rem;
  box-shadow: 0 22px 48px -28px rgba(5, 41, 99, 0.22);
}

.gti-pkg-detail .pkg-sidebar-current,
.gti-pkg-detail .pkg-booking-option-total,
.gti-pkg-detail .pkg-sidebar-badge,
.gti-pkg-detail .pkg-booking-option-badge {
  color: #E0741E;
}

.gti-pkg-detail .pkg-sidebar-cta,
.gti-pkg-detail .pkg-detail-booking-submit,
.gti-pkg-detail .pkg-booking-option-cta {
  background: #E0741E !important;
  border-color: #E0741E !important;
  color: #fff !important;
}

.gti-pkg-detail .pkg-sidebar-cta:hover,
.gti-pkg-detail .pkg-detail-booking-submit:hover,
.gti-pkg-detail .pkg-booking-option-cta:hover {
  background: #C85F12 !important;
}

.gti-pkg-detail .pkg-activity-icon,
.gti-pkg-detail .text-brand-teal,
.gti-pkg-detail .text-sky-600 {
  color: #E0741E !important;
}

.gti-pkg-detail .pkg-activity-item {
  border-color: #E5EAF0;
}

.gti-pkg-detail .text-slate-900,
.gti-pkg-detail .text-slate-800,
.gti-pkg-detail .font-semibold.text-slate-900 {
  color: #052963;
}

.gti-pkg-detail .text-slate-600,
.gti-pkg-detail .text-slate-500 {
  color: #5B6472;
}

/* Package detail accordions */
.gti-pkg-detail .pkg-detail-accordions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gti-pkg-detail .pkg-detail-accordion,
.gti-pkg-detail .pkg-detail-accordion:last-child {
  background: #fff;
  border: 1px solid #E5EAF0;
  border-radius: 1rem;
  box-shadow: 0 14px 32px -24px rgba(5, 41, 99, 0.22);
  overflow: hidden;
}

.gti-pkg-detail .pkg-detail-accordion.open {
  border-color: #E5EAF0;
  box-shadow: 0 18px 36px -22px rgba(5, 41, 99, 0.28);
}

.gti-pkg-detail .pkg-detail-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.05rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #052963;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
}

.gti-pkg-detail .pkg-detail-accordion-trigger:hover .pkg-detail-accordion-icon {
  color: #C85F12;
}

.gti-pkg-detail .pkg-detail-accordion-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.gti-pkg-detail .pkg-detail-accordion-label::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #E0741E;
  flex-shrink: 0;
}

.gti-pkg-detail .pkg-detail-accordion-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #E0741E;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s ease;
}

.gti-pkg-detail .pkg-detail-accordion.open .pkg-detail-accordion-icon {
  transform: rotate(180deg);
}

.gti-pkg-detail .pkg-detail-accordion-body {
  overflow: hidden;
  max-height: 0;
  padding: 0 1.25rem;
  color: #5B6472;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.gti-pkg-detail .pkg-detail-accordion.open .pkg-detail-accordion-body {
  max-height: max-content;
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid #E5EAF0;
}

.gti-pkg-detail .pkg-detail-accordion-copy {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #5B6472;
}

.gti-pkg-detail .pkg-detail-accordion-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.gti-pkg-detail .pkg-detail-accordion-list li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5B6472;
}

.gti-pkg-detail .pkg-detail-accordion-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #E0741E;
}

.gti-pkg-detail .pkg-detail-itinerary {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.gti-pkg-detail .pkg-detail-itinerary-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #E5EAF0;
}

.gti-pkg-detail .pkg-detail-itinerary-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.gti-pkg-detail .pkg-detail-itinerary-thumb {
  width: 4rem;
  height: 4rem;
  border-radius: 0.7rem;
  object-fit: cover;
  flex-shrink: 0;
}

.gti-pkg-detail .pkg-detail-itinerary-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #052963;
}

.gti-pkg-detail .pkg-detail-itinerary-title + .pkg-detail-accordion-copy {
  margin-top: 0.3rem;
}

.gti-pkg-detail .pkg-detail-inclexcl {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .gti-pkg-detail .pkg-detail-inclexcl {
    grid-template-columns: 1fr 1fr;
  }
}

.gti-pkg-detail .pkg-detail-inclexcl-title {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #052963;
}

.gti-pkg-detail .pkg-detail-inclexcl-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gti-pkg-detail .pkg-detail-inclexcl-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #5B6472;
}

.gti-pkg-detail .pkg-detail-inclexcl-list--in li::before {
  content: "✓";
  color: #E0741E;
  font-weight: 700;
  flex-shrink: 0;
}

.gti-pkg-detail .pkg-detail-inclexcl-list--out li::before {
  content: "✕";
  color: #8A93A0;
  font-weight: 700;
  flex-shrink: 0;
}

/* Package detail FAQ */
.gti-pkg-detail .pkg-detail-faq h2 {
  margin: 0 0 1.15rem;
  color: #052963;
}

.gti-pkg-detail .pkg-detail-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gti-pkg-detail .pkg-detail-faq-item.faq-item,
.gti-pkg-detail .pkg-detail-faq-item.faq-item.open {
  background: #fff;
  border: 1px solid #E5EAF0;
  border-radius: 1rem;
  box-shadow: 0 14px 32px -24px rgba(5, 41, 99, 0.22);
  overflow: hidden;
}

.gti-pkg-detail .pkg-detail-faq-item.faq-item.open {
  box-shadow: 0 18px 36px -22px rgba(5, 41, 99, 0.28);
}

.gti-pkg-detail .pkg-detail-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.05rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #052963;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
}

.gti-pkg-detail .pkg-detail-faq-trigger:hover .pkg-detail-faq-icon {
  color: #C85F12;
}

.gti-pkg-detail .pkg-detail-faq-question {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.gti-pkg-detail .pkg-detail-faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #E0741E;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s ease;
}

.gti-pkg-detail .pkg-detail-faq-item.faq-item.open .pkg-detail-faq-icon,
.gti-pkg-detail .pkg-detail-faq-item.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.gti-pkg-detail .pkg-detail-faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  border-top: 0 solid #E5EAF0;
  transition: max-height 0.35s ease, border-width 0.2s ease;
}

.gti-pkg-detail .pkg-detail-faq-item.open .faq-answer {
  max-height: 24rem;
  border-top-width: 1px;
}

.gti-pkg-detail .pkg-detail-faq-item .faq-answer p {
  margin: 0;
  padding: 0.95rem 1.25rem 1.15rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #5B6472;
}

/* Related tours */
.gti-pkg-detail .pkg-detail-related {
  margin-top: 0.5rem;
}

.gti-pkg-detail .pkg-detail-related h2 {
  margin: 0;
  color: #052963;
}

.gti-pkg-detail .related-tours-track {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.75rem 0.15rem 1.15rem;
  scrollbar-width: none;
}

.gti-pkg-detail .related-tours-track::-webkit-scrollbar {
  display: none;
}

.gti-pkg-detail .related-tour-card {
  flex: 0 0 min(100%, 23.5rem);
  scroll-snap-align: start;
}

@media (min-width: 640px) {
  .gti-pkg-detail .related-tour-card {
    flex: 0 0 24.5rem;
  }
}

.gti-pkg-detail .related-carousel-btn {
  width: 2.6rem;
  height: 2.6rem;
  border: 1.5px solid #052963;
  background: #fff;
  color: #052963;
  border-radius: 999px;
}

.gti-pkg-detail .related-carousel-btn:hover {
  background: #E0741E;
  border-color: #E0741E;
  color: #fff;
}
