/*
 * Shared public-site responsive system
 * Loaded after the existing page styles so the public site can share one
 * visual language without changing its packages, destinations or planner.
 */

:root {
  --lt-brand: #2e3485;
  --lt-brand-deep: #101943;
  --lt-gold: #f4a544;
  --lt-gold-dark: #d97918;
  --lt-ink: #212534;
  --lt-muted: #5f6980;
  --lt-paper: #fbfaf6;
  --lt-surface: #ffffff;
  --lt-surface-soft: #f3f6fc;
  --lt-line: #dfe5f0;
  --lt-shadow: 0 16px 38px rgba(15, 29, 82, .12);
  --lt-radius: 22px;
  --lt-radius-sm: 14px;
  --lt-content-max: 1160px;
  --lt-content-width: min(var(--lt-content-max), calc(100% - clamp(32px, 6vw, 88px)));
  --lt-section-space: clamp(64px, 7vw, 104px);
  --lt-card-gap: clamp(16px, 2vw, 24px);
}

html {
  overflow-x: clip;
  scroll-padding-top: 104px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 1px 1px, rgba(46, 52, 133, .055) 1px, transparent 1.1px) 0 0 / 19px 19px,
    var(--lt-paper);
  color: var(--lt-ink);
  font-family: 'Poppins', 'DM Sans', sans-serif;
}

main,
section,
article,
.package,
.catalog-card,
.destination-detail-content,
.package-detail-content,
.activity-detail-content,
.planner-day-copy,
.planner-place-copy {
  min-width: 0;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

button,
input,
select,
textarea {
  max-width: 100%;
  min-width: 0;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lt-gold);
  outline-offset: 3px;
}

.container {
  width: var(--lt-content-width);
}

h1,
h2,
h3,
h4,
.heading h2,
.about-copy h2,
.contact h2,
.reference-content h1 {
  font-family: 'Lora', Georgia, serif;
}

h2,
.heading h2,
.about-copy h2,
.contact h2 {
  color: var(--lt-brand-deep);
}

h2 span,
.heading h2 span,
.about-copy h2 span,
.contact h2 span {
  color: var(--lt-gold-dark);
}

.kicker,
.heading .kicker {
  color: var(--lt-brand) !important;
  font-family: 'Poppins', 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.button,
.primary,
.outline,
.ghost,
.book-nav {
  border-radius: 999px;
  font-family: 'Poppins', 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.button {
  justify-content: center;
  min-height: 44px;
  padding: 13px 20px;
}

.button.primary,
.primary {
  background: var(--lt-brand);
  color: #fff;
  box-shadow: 0 9px 18px rgba(46, 52, 133, .18);
}

.button.primary:hover,
.primary:hover {
  background: #22286e;
  box-shadow: 0 12px 22px rgba(46, 52, 133, .25);
  transform: translateY(-1px);
}

.button.outline,
.outline {
  border-color: var(--lt-brand);
  color: var(--lt-brand);
}

.button.outline:hover,
.outline:hover {
  background: var(--lt-brand);
  border-color: var(--lt-brand);
  color: #fff;
}

/* Header: transparent over Home, white and unobstructed on every other route. */
.header,
body[data-site-view="home"] .header {
  height: 90px;
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  background: rgba(10, 15, 44, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.header.is-scrolled {
  position: fixed;
  background: rgba(255, 255, 255, .97);
  border-bottom-color: rgba(28, 37, 91, .1);
  box-shadow: 0 4px 18px rgba(12, 22, 67, .12);
}

.header.is-scrolled .nav-links > a {
  color: var(--lt-ink);
}

.header.is-scrolled .nav-links > a:hover,
.header.is-scrolled .nav-links > .active {
  color: var(--lt-brand);
}

body[data-site-view]:not([data-site-view="home"]) .header {
  position: sticky;
  background: rgba(255, 255, 255, .98);
  border-bottom-color: rgba(28, 37, 91, .1);
  box-shadow: 0 4px 17px rgba(12, 22, 67, .08);
}

body[data-site-view]:not([data-site-view="home"]) .nav-links > a {
  color: var(--lt-ink);
}

body[data-site-view]:not([data-site-view="home"]) .nav-links > a:hover,
body[data-site-view]:not([data-site-view="home"]) .nav-links > .active {
  color: var(--lt-brand);
}

.nav {
  gap: 22px;
}

.official-logo.logo,
.logo {
  flex: 0 0 auto;
}

.nav-links {
  gap: clamp(14px, 1.6vw, 24px);
}

.nav-links > a {
  font-family: 'Poppins', 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links > a:hover,
.nav-links > .active {
  color: #ffe1a9;
}

.book-nav,
.nav-links .book-nav {
  padding: 12px 19px !important;
  background: var(--lt-brand);
  color: #fff !important;
  box-shadow: 0 8px 16px rgba(12, 22, 77, .22);
}

.book-nav:hover {
  background: #22286e;
  transform: translateY(-1px);
}

.menu-button {
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  color: #fff;
  font-size: 23px;
  line-height: 1;
}

body[data-site-view]:not([data-site-view="home"]) .menu-button,
.header.is-scrolled .menu-button {
  border-color: #d9dfef;
  color: var(--lt-brand);
}

/* Hero */
.reference-hero {
  height: clamp(570px, 55vw, 700px);
  min-height: 0;
  background-position: center 57%;
}

.reference-hero .hero-shade {
  background: linear-gradient(180deg, rgba(6, 10, 37, .64) 0%, rgba(7, 13, 46, .18) 43%, rgba(7, 12, 42, .76) 100%);
}

.reference-content {
  padding: clamp(148px, 15vw, 196px) 0 66px;
}

.reference-content .welcome-label {
  color: #fff4df;
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(17px, 2vw, 22px);
}

.reference-content h1 {
  color: #fff;
  font-size: clamp(58px, 6.5vw, 82px);
  font-weight: 500;
  line-height: 1;
}

.reference-content > p:not(.welcome-label) {
  max-width: 560px;
  font-size: clamp(14px, 1.4vw, 17px);
}

.reference-content .hero-buttons {
  gap: 13px;
}

.reference-content .ghost {
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.reference-content .ghost:hover {
  background: rgba(255, 255, 255, .18);
}

/* Reusable public-page rhythm. */
body[data-site-view]:not([data-site-view="home"]) main {
  min-height: calc(100vh - 90px);
  background: radial-gradient(circle at 8% 2%, rgba(244, 165, 68, .12), transparent 19%), radial-gradient(circle at 95% 3%, rgba(46, 52, 133, .1), transparent 20%), var(--lt-paper);
}

body[data-site-view]:not([data-site-view="home"]) .catalog,
body[data-site-view]:not([data-site-view="home"]) .trip-planner,
body[data-site-view]:not([data-site-view="home"]) .package-guide,
body[data-site-view]:not([data-site-view="home"]) .destination-guide,
body[data-site-view]:not([data-site-view="home"]) .activity-guide {
  padding-block: var(--lt-section-space);
}

body[data-site-view]:not([data-site-view="home"]) .catalog {
  background: transparent;
}

/* A detail URL should show its detail only, not detail + catalogue. */
body[data-site-view="tours"][data-detail-open="true"] main > .catalog-page--tours:not(.catalog-detail-page),
body[data-site-view="activities"][data-detail-open="true"] main > .catalog-page--activities:not(.catalog-detail-page),
body[data-site-view="destinations"][data-detail-open="true"] main > .catalog-page--destinations:not(.catalog-detail-page) {
  display: none !important;
}

.catalog-page-toolbar {
  gap: 14px;
  margin-bottom: clamp(24px, 3vw, 34px);
  color: var(--lt-muted);
}

.catalog-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--lt-brand);
}

.catalog-back-link:hover {
  color: var(--lt-gold-dark);
}

.catalog .heading,
.trip-planner > .container > .heading {
  max-width: 710px;
  margin-inline: auto;
  margin-bottom: clamp(30px, 4vw, 46px);
}

.heading h2,
.about-copy h2,
.contact h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.13;
  letter-spacing: -.045em;
}

.heading > p:not(.kicker) {
  max-width: 680px;
  margin-inline: auto;
  color: var(--lt-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Home page: softly patterned image-led bands without the old repeated
   285px placeholder banners. */
body[data-site-view="home"] {
  background: var(--lt-paper);
}

body[data-site-view="home"] main {
  overflow: clip;
}

body[data-site-view="home"] .destinations,
body[data-site-view="home"] .packages,
body[data-site-view="home"] .activities,
body[data-site-view="home"] .about {
  padding-block: var(--lt-section-space) !important;
}

body[data-site-view="home"] .destinations {
  background: radial-gradient(circle at 12% 6%, rgba(244, 165, 68, .16), transparent 24%), radial-gradient(circle at 1px 1px, rgba(46, 52, 133, .055) 1px, transparent 1.1px) 0 0 / 19px 19px, #fbfaf6;
}

body[data-site-view="home"] .packages {
  background: radial-gradient(circle at 90% 12%, rgba(46, 52, 133, .15), transparent 24%), #f1f4fb;
}

body[data-site-view="home"] .activities {
  background: radial-gradient(circle at 10% 88%, rgba(244, 165, 68, .15), transparent 24%), radial-gradient(circle at 1px 1px, rgba(46, 52, 133, .045) 1px, transparent 1.1px) 0 0 / 19px 19px, #fbfaf6;
}

body[data-site-view="home"] .about {
  background: radial-gradient(circle at 88% 14%, rgba(244, 165, 68, .18), transparent 24%), #edf1fa;
}

body[data-site-view="home"] .heading {
  margin-bottom: clamp(28px, 4vw, 38px);
}

body[data-site-view="home"] .heading .kicker {
  display: block;
}

body[data-site-view="home"] .destination-grid,
body[data-site-view="home"] .package-grid,
body[data-site-view="home"] .activity-grid {
  gap: var(--lt-card-gap);
}

.destination-grid {
  grid-template-rows: 235px 235px;
}

.destination-card {
  border: 4px solid rgba(255, 255, 255, .95);
  border-radius: var(--lt-radius);
  box-shadow: 0 12px 27px rgba(20, 35, 85, .13);
}

.destination-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(24px, 2vw, 30px);
}

.destination-card:hover {
  box-shadow: 0 18px 34px rgba(20, 35, 85, .2);
}

.package {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 0;
  border-radius: var(--lt-radius);
  background: #fff;
  box-shadow: var(--lt-shadow);
  overflow: hidden;
}

.package > img {
  height: clamp(205px, 19vw, 230px);
  border-radius: 0;
}

.package-body {
  display: flex;
  min-height: 180px;
  flex: 1;
  flex-direction: column;
  padding: 20px;
  border-radius: 0;
}

.package-meta {
  color: var(--lt-gold-dark);
}

.package h3 {
  color: var(--lt-brand-deep);
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(19px, 1.7vw, 22px);
}

.package-body > p {
  overflow-wrap: anywhere;
}

.package-bottom {
  margin-top: auto;
}

.package-bottom a {
  color: var(--lt-brand);
}

.activity-grid a {
  height: clamp(238px, 22vw, 285px);
  border: 4px solid rgba(255, 255, 255, .95);
  border-radius: var(--lt-radius);
  box-shadow: 0 12px 27px rgba(20, 35, 85, .13);
}

.activity-grid span {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(18px, 1.7vw, 22px);
}

.center-action {
  margin-top: clamp(26px, 3vw, 36px);
}

.home-proof-band {
  padding-bottom: clamp(30px, 4vw, 46px);
}

.home-proof-inner {
  border-radius: var(--lt-radius);
}

.home-proof-intro > p:last-child {
  font-family: 'Lora', Georgia, serif;
}

body[data-site-view="home"] .about-grid {
  align-items: stretch;
  gap: clamp(26px, 4vw, 50px);
  padding-bottom: 0;
}

body[data-site-view="home"] .about-images {
  min-height: 470px;
  border-radius: var(--lt-radius);
}

body[data-site-view="home"] .about-main {
  width: 100%;
}

body[data-site-view="home"] .about-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--lt-radius);
}

.about-copy h2,
.about-copy h2 span {
  color: inherit;
}

.mission-vision {
  min-width: 0;
}

/* Cards generated by the 30-entry catalogues. */
.catalog-grid {
  gap: var(--lt-card-gap);
}

.catalog-card {
  min-height: clamp(205px, 18vw, 245px);
  border-radius: var(--lt-radius);
  box-shadow: 0 12px 26px rgba(20, 35, 85, .13);
}

.package-catalog .catalog-card,
.package-catalog-card {
  min-height: clamp(250px, 21vw, 290px) !important;
}

.catalog-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(19px, 1.7vw, 23px);
}

.catalog-card .catalog-copy {
  left: 20px;
  right: 20px;
  bottom: 19px;
}

/* Detail routes use the same quietly rounded surface language. */
.destination-detail-shell,
.package-detail-shell,
.activity-detail-shell,
.planner-map-panel,
.planner-summary-panel {
  border: 1px solid var(--lt-line);
  border-radius: var(--lt-radius);
  box-shadow: var(--lt-shadow);
}

.destination-detail-shell,
.package-detail-shell,
.activity-detail-shell {
  overflow: hidden;
  background: #fff;
}

.destination-detail-visual {
  min-height: clamp(360px, 40vw, 520px);
}

.destination-detail-content {
  padding: clamp(28px, 4vw, 50px);
}

.destination-detail-title,
.package-detail-title,
.activity-detail-title {
  font-family: 'Lora', Georgia, serif;
  letter-spacing: -.04em;
}

.destination-summary,
.package-detail-hero-copy > p:last-child,
.activity-detail-hero-copy > p:last-child {
  overflow-wrap: anywhere;
}

.package-detail-hero,
.activity-detail-hero {
  min-height: clamp(360px, 38vw, 455px);
}

.package-detail-hero-copy,
.activity-detail-hero-copy {
  padding: clamp(34px, 5vw, 58px);
}

.package-detail-content,
.activity-detail-content {
  padding-inline: clamp(24px, 5vw, 58px);
  padding-bottom: clamp(28px, 5vw, 58px);
}

.package-facts,
.activity-facts {
  border-radius: var(--lt-radius-sm);
  overflow: hidden;
}

.package-route-card,
.activity-detail-section,
.activity-ready-grid,
.package-detail-cta,
.activity-detail-cta {
  border-radius: var(--lt-radius-sm);
}

.package-day,
.activity-detail-section,
.planner-place-copy,
.planner-day-copy {
  overflow-wrap: anywhere;
}

/* Planner: labels, map and generated route text stay inside their cards. */
.trip-planner {
  overflow: clip;
}

.trip-planner-shell {
  gap: clamp(18px, 3vw, 30px);
}

.planner-map-panel,
.planner-summary-panel {
  padding: clamp(20px, 3vw, 30px);
}

.planner-map-heading,
.planner-route-heading,
.planner-route-day,
.planner-place-grid,
.planner-form-grid,
.planner-contact-method {
  min-width: 0;
}

.planner-map-heading > p {
  white-space: normal;
  text-align: right;
}

.planner-map-stage {
  overflow: clip;
  border-radius: 14px;
}

.planner-route-day,
.planner-booking,
.planner-selected-place,
.planner-route-empty,
.planner-arrival-airports {
  border-radius: var(--lt-radius-sm);
}

.planner-booking {
  border-radius: var(--lt-radius);
}

.planner-booking .button.primary {
  background: var(--lt-gold);
  box-shadow: none;
}

.planner-booking .button.primary:hover {
  background: #dc8a2e;
}

.trip-planner-form input,
.trip-planner-form select,
.trip-planner-form textarea,
.contact input,
.contact select,
.contact textarea {
  border-radius: 10px;
}

/* Footer gives every public route the same strong ending as the reference. */
footer {
  position: relative;
  overflow: hidden;
  padding-top: clamp(56px, 7vw, 86px);
  background: linear-gradient(rgba(5, 10, 35, .87), rgba(5, 10, 35, .91)), url('assets/galle-fort.avif') center / cover;
}

footer::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(46, 52, 133, .26), transparent 58%);
  content: "";
  pointer-events: none;
}

.footer-grid,
.copyright {
  position: relative;
  z-index: 1;
}

.footer-grid {
  gap: clamp(28px, 6vw, 78px);
}

.footer-brand.official-logo,
.footer-brand.official-logo img {
  max-width: 154px;
}

.footer-grid h4 {
  font-family: 'Lora', Georgia, serif;
}

.footer-grid a:hover {
  color: #ffe0a4;
}

.contact {
  padding-block: var(--lt-section-space);
}

.contact-box {
  gap: clamp(26px, 5vw, 68px);
  padding: clamp(24px, 5vw, 55px);
  border-radius: var(--lt-radius);
}

.contact form {
  min-width: 0;
}

.whatsapp-float {
  border-radius: 999px;
  box-shadow: 0 9px 20px rgba(0, 0, 0, .22);
}

@media (max-width: 1100px) {
  .header,
  body[data-site-view="home"] .header,
  body[data-site-view]:not([data-site-view="home"]) .header {
    height: 78px;
  }

  .nav {
    position: relative;
  }

  .logo {
    width: 124px;
    height: 56px;
  }

  .logo img {
    width: 124px;
    height: 124px;
  }

  .menu-button {
    display: grid;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    gap: 0;
    padding: 10px;
    border: 1px solid #dfe4ef;
    border-radius: 18px;
    background: #fff !important;
    box-shadow: 0 18px 38px rgba(12, 22, 67, .18);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links > a,
  body[data-site-view="home"] .nav-links > a,
  .header.is-scrolled .nav-links > a {
    min-height: 43px;
    display: flex;
    align-items: center;
    padding: 10px 13px;
    border-radius: 10px;
    color: var(--lt-ink);
  }

  .nav-links > a:hover,
  .nav-links > .active,
  body[data-site-view="home"] .nav-links > a:hover,
  body[data-site-view="home"] .nav-links > .active {
    background: #f0f3fb;
    color: var(--lt-brand);
  }

  .nav-links .book-nav {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    color: #fff !important;
  }

  body[data-site-view="home"] .header {
    background: rgba(255, 255, 255, .97);
    border-bottom-color: rgba(28, 37, 91, .1);
    box-shadow: 0 4px 17px rgba(12, 22, 67, .08);
  }

  body[data-site-view="home"] .menu-button {
    border-color: #d9dfef;
    color: var(--lt-brand);
  }

  .reference-hero {
    height: clamp(570px, 76vw, 660px);
  }

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

@media (max-width: 900px) {
  body[data-site-view]:not([data-site-view="home"]) main {
    min-height: calc(100vh - 78px);
  }

  .trip-planner-shell,
  .planner-booking {
    grid-template-columns: 1fr;
  }

  .planner-booking-intro > p:last-child {
    max-width: 680px;
  }

  .destination-detail-shell,
  .package-intro-grid,
  .package-itinerary-heading,
  .activity-detail-grid,
  .activity-ready-grid {
    grid-template-columns: 1fr;
  }

  .destination-detail-visual {
    min-height: 340px;
  }

  .activity-ready-grid > div + div {
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid #d9e0ed;
    border-left: 0;
  }
}

@media (min-width: 480px) and (max-width: 900px) {
  /* Tablet cards remain comfortably sized instead of becoming a long
     single-column feed. The smaller 360px/390px layouts still stack. */
  body[data-site-view="home"] .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  :root {
    --lt-content-width: min(var(--lt-content-max), calc(100% - 32px));
    --lt-section-space: clamp(58px, 15vw, 74px);
    --lt-radius: 18px;
  }

  html {
    scroll-padding-top: 88px;
  }

  .reference-hero {
    height: min(680px, 100svh);
    min-height: 555px;
  }

  .reference-content {
    padding-top: 150px;
    padding-bottom: 48px;
  }

  .reference-content h1 {
    font-size: clamp(42px, 11vw, 55px);
    letter-spacing: -.055em;
  }

  .reference-content .hero-buttons {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 290px);
    margin-inline: auto;
  }

  .reference-content .button {
    width: 100%;
  }

  .home-proof-band {
    margin-top: -28px;
  }

  .home-proof-intro {
    padding: 22px 22px 18px;
  }

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

  .home-proof-item {
    min-height: 94px;
    padding: 15px 12px;
  }

  .home-proof-item strong {
    font-size: 27px;
  }

  .home-proof-item span {
    font-size: 10px;
  }

  .home-proof-item b {
    display: none;
  }

  body[data-site-view="home"] .destination-grid,
  body[data-site-view="home"] .package-grid,
  body[data-site-view="home"] .activity-grid,
  .catalog-grid,
  .package-catalog,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .destination-grid {
    display: grid;
    grid-template-rows: none;
  }

  .destination-card,
  .destination-card.large {
    min-height: 250px;
    grid-row: auto;
  }

  .destination-card:nth-child(4),
  .destination-card:nth-child(5) {
    display: block;
  }

  .package > img {
    height: 230px;
  }

  .activity-grid a {
    height: 245px;
  }

  body[data-site-view="home"] .about-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  body[data-site-view="home"] .about-images {
    min-height: 310px;
  }

  .about-logo-overlay {
    width: min(56%, 280px);
  }

  .contact-box {
    padding: 24px 20px;
  }

  .form-row,
  .planner-place-grid,
  .planner-form-grid,
  .planner-contact-method {
    grid-template-columns: 1fr;
  }

  .form-row {
    gap: 12px;
  }

  .planner-map-heading,
  .planner-route-heading {
    flex-wrap: wrap;
  }

  .planner-map-heading > p {
    width: 100%;
    text-align: left;
  }

  .planner-map-stage {
    max-width: 100%;
  }

  .planner-marker-label {
    display: none !important;
  }

  .planner-map-panel,
  .planner-summary-panel {
    padding: 20px 16px;
  }

  .planner-selected-place {
    padding: 20px;
  }

  .planner-place-image {
    width: 82px;
    height: 82px;
    margin-left: 12px;
  }

  .planner-route-day {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .planner-day-controls {
    grid-column: 2;
  }

  .planner-booking {
    gap: 26px;
    padding: 26px 20px;
  }

  .planner-contact-method label {
    min-height: 0;
  }

  .package-guide,
  .destination-guide,
  .activity-guide {
    padding-bottom: var(--lt-section-space);
  }

  .destination-detail-content,
  .package-detail-content,
  .activity-detail-content {
    padding-inline: 20px;
  }

  .package-detail-hero-copy,
  .activity-detail-hero-copy {
    padding: 34px 22px;
  }

  .package-facts,
  .activity-facts,
  .destination-facts,
  .destination-list-grid {
    grid-template-columns: 1fr;
  }

  .package-facts > div + div,
  .activity-facts > div + div,
  .destination-facts > div + div {
    border-top: 1px solid #e0e4ef;
    border-left: 0;
  }

  .package-day {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .package-detail-cta,
  .activity-detail-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 21px;
  }

  .package-detail-cta .button,
  .activity-detail-cta .button {
    width: 100%;
  }

  footer {
    padding-top: 56px;
  }

  .footer-grid {
    gap: 26px;
    padding-bottom: 35px;
  }
}

@media (max-width: 430px) {
  :root {
    --lt-content-width: min(var(--lt-content-max), calc(100% - 28px));
  }

  .header,
  body[data-site-view="home"] .header,
  body[data-site-view]:not([data-site-view="home"]) .header {
    height: 72px;
  }

  .logo {
    width: 112px;
    height: 50px;
  }

  .logo img {
    width: 112px;
    height: 112px;
  }

  .menu-button {
    width: 39px;
    height: 39px;
    font-size: 21px;
  }

  .reference-hero {
    min-height: 535px;
  }

  .reference-content {
    padding-top: 136px;
  }

  .reference-content .welcome-label {
    font-size: 16px;
  }

  .heading h2,
  .about-copy h2,
  .contact h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .home-proof-items {
    grid-template-columns: 1fr;
  }

  .home-proof-item {
    min-height: 66px;
    grid-template-columns: 55px minmax(0, 1fr);
    align-items: center;
    padding: 11px 16px;
  }

  .home-proof-item strong {
    grid-row: span 2;
    align-self: center;
  }

  .home-proof-item span {
    font-size: 12px;
  }

  .destination-card,
  .destination-card.large {
    min-height: 230px;
  }

  .package-body {
    padding: 18px;
  }

  .planner-place-image {
    width: 72px;
    height: 72px;
  }

  .planner-map-legend {
    justify-content: flex-start;
    gap: 8px 13px;
  }

  .planner-arrival-link {
    padding: 8px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
