:root {
  --blue: #002b5c;
  --blue-2: #3657a7;
  --red: #3657a7;
  --ink: #0b1830;
  --muted: #5c6575;
  --line: rgba(11, 24, 48, 0.13);
  --soft: #f5f7fb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Avenir, "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

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

h1,
h2,
h3,
.section-label,
.kicker,
.blue-button,
.red-button,
.ghost-button,
.main-nav a,
.header-login,
.destination-card,
.itinerary-duration,
.day-card span,
.day-card h3,
.highlight-panel h3,
.reference-slide strong {
  user-select: none;
}

.top-ribbon {
  display: none;
}

.top-ribbon span {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 clamp(18px, 4vw, 56px);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 178px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-login {
  display: inline-flex;
  justify-self: end;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(54, 87, 167, 0.24);
  border-radius: 4px;
  padding: 0 14px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.language-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.language-menu button {
  min-width: 28px;
  min-height: 30px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.hero {
  position: relative;
  min-height: clamp(460px, 48vw, 620px);
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("./assets/home-hero-destination-management.jpg");
  background-position: center;
  background-size: cover;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-360-player {
  background-image: url("./assets/lucerne-360.jpg");
  background-position: center;
  background-size: cover;
}

.hero-360-player canvas,
.panorama-360-player canvas {
  width: 100%;
  height: 100%;
  opacity: 0.98;
  cursor: grab;
}

.hero-360-player canvas:active,
.panorama-360-player canvas:active {
  cursor: grabbing;
}

.hero-360-player.is-ready,
.panorama-360-player.is-ready {
  background-image: none;
}

/*
  Legacy fallback if WebGL is unavailable: the background still shows Lucerne.
*/
.panorama-360-fallback {
  background-image: url("./assets/lucerne-360.jpg");
  background-position: 0% center;
  background-size: auto 100%;
  animation: slow-panorama 46s ease-in-out infinite alternate;
}

@keyframes slow-panorama {
  from {
    transform: translateX(0);
    background-position: 0% center;
  }

  to {
    transform: translateX(-18%);
    background-position: 100% center;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.13) 38%, rgba(0, 0, 0, 0) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 36px));
  padding: clamp(48px, 6vw, 78px) 0 clamp(42px, 5vw, 64px);
  margin-left: clamp(18px, 6vw, 76px);
}

.kicker,
.section-label,
.red-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero .kicker {
  color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
  margin: 14px 0 14px;
  max-width: 560px;
  font-size: clamp(27px, 2.2vw, 36px);
  line-height: 1.15;
  letter-spacing: 0;
}

.hero p:not(.kicker) {
  max-width: 500px;
  margin: 0;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
}

.red-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 34px;
  padding: 0 24px;
  border-radius: 4px;
  background: var(--blue-2);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.red-button::after {
  margin-left: 12px;
  content: "→";
  font-size: 17px;
}

.blue-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blue-button {
  background: var(--blue-2);
  color: var(--white);
}

.ghost-button {
  border: 1px solid rgba(54, 87, 167, 0.24);
  color: var(--blue);
}

.quick-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 34px max(24px, calc((100vw - 1420px) / 2));
  position: relative;
  z-index: 5;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
  border-bottom: 1px solid var(--line);
}

.quick-services a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 0;
  padding: 8px 34px;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(54, 87, 167, 0.13);
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.quick-services a:first-child {
  border-left: 0;
}

.quick-services a:hover {
  transform: translateY(-2px);
}

.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 2px 0 0;
  border: 1px solid rgba(54, 87, 167, 0.12);
  border-radius: 999px;
  background: rgba(54, 87, 167, 0.045);
  color: var(--blue);
}

.line-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.quick-services strong {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.quick-services p {
  max-width: 230px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.split-section,
.services-section,
.destinations,
.references,
.page-hero,
.content-section,
.news-admin,
.contact {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 4vw, 56px) 0;
}

.content-section + .content-section,
.service-overview + .content-section {
  padding-top: clamp(12px, 2vw, 24px);
}

.service-overview {
  padding-bottom: clamp(28px, 3vw, 40px);
}

.service-overview + .content-section {
  padding-top: clamp(6px, 1vw, 14px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.section-copy h2,
.center-heading h2,
.service-feature h3,
.news-admin h2,
.contact h2 {
  margin: 12px 0 18px;
  color: var(--blue-2);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: none;
}

.section-copy p,
.service-feature p,
.news-admin p,
.contact p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.image-panel {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(0, 43, 92, 0.12);
}

.image-panel img,
.service-feature img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 22px 70px rgba(0, 43, 92, 0.12);
}

.image-panel img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  box-shadow: none;
}

.service-feature img {
  object-fit: cover;
}

.john-message {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.28fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: stretch;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto clamp(34px, 4vw, 56px);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(0, 43, 92, 0.08);
}

.john-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  max-width: none;
}

.john-slides {
  position: relative;
  min-height: 170px;
}

.john-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.john-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.john-slide blockquote {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: Avenir, "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.john-signature {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.john-signature strong {
  color: var(--blue);
}

.john-message .section-label {
  color: var(--blue-2);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: none;
}

.john-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.john-dots button {
  width: 30px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 43, 92, 0.18);
  cursor: pointer;
}

.john-dots button.is-active {
  background: var(--blue-2);
}

.john-dots .john-arrow {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(0, 43, 92, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

.john-dots .john-arrow:hover,
.john-dots .john-arrow:focus-visible {
  border-color: var(--blue-2);
  background: rgba(54, 87, 167, 0.08);
}

.john-photo {
  margin: 0;
  min-height: 100%;
}

.john-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 4px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 16px 45px rgba(0, 43, 92, 0.1);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.center-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.destination-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 22px;
  color: var(--white);
}

.destination-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.destination-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 43, 92, 0.08), rgba(0, 43, 92, 0.92));
  content: "";
}

.destination-card:hover img {
  transform: scale(1.04);
}

.destination-card span,
.destination-card p,
.destination-card strong {
  position: relative;
  z-index: 2;
}

.destination-card span {
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
}

.destination-card p {
  min-height: 48px;
  margin: 12px 0 20px;
  line-height: 1.5;
}

.destination-card strong {
  align-self: flex-start;
  padding: 11px 18px;
  border-radius: 4px;
  background: var(--blue-2);
  font-size: 12px;
  text-transform: uppercase;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--blue);
  color: var(--white);
}

.trust-band div {
  min-height: 128px;
  padding: 26px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-band strong {
  display: block;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.trust-band span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.services-section {
  display: grid;
  gap: 28px;
}

.service-feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.service-feature.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.service-feature.reverse img {
  order: 2;
}

.service-feature.reverse > .panorama-360-player {
  order: 2;
}

.service-feature img {
  height: 380px;
}

.service-feature > .panorama-360-player {
  height: 380px;
}

.service-feature h3 {
  font-size: clamp(22px, 2vw, 30px);
  text-transform: none;
}

.itinerary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.itinerary-links a {
  padding: 10px 12px;
  border: 1px solid rgba(0, 43, 92, 0.16);
  border-radius: 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.references {
  width: 100%;
  padding-right: 18px;
  padding-left: 18px;
  background: var(--soft);
}

.references-cta {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 30px auto 0;
}

.reference-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.reference-mini-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(0, 43, 92, 0.12);
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
}

.logo-cloud span {
  min-height: 68px;
  display: grid;
  place-items: center;
  color: rgba(11, 24, 48, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 31px);
  font-weight: 700;
  text-align: center;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 4.5vw, 64px);
  align-items: center;
  padding-bottom: clamp(18px, 2.5vw, 32px);
}

.page-hero h1 {
  margin: 10px 0 14px;
  color: var(--blue-2);
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.16;
  text-transform: none;
}

.page-hero p,
.content-section p,
.service-card p,
.reference-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.page-hero-image {
  overflow: hidden;
  margin: 0;
  border-radius: 4px;
  box-shadow: 0 22px 70px rgba(0, 43, 92, 0.14);
}

.page-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.panorama-360-player {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  aspect-ratio: 16 / 10;
  background-position: center;
  background-size: cover;
}

.service-panorama {
  aspect-ratio: 4 / 3;
}

.itinerary-panorama {
  aspect-ratio: 16 / 11;
}

.service-overview {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas:
    "intro ."
    "media points";
  gap: clamp(18px, 2.5vw, 28px) clamp(22px, 4vw, 52px);
  align-items: start;
  padding-top: clamp(18px, 2.5vw, 32px);
}

.service-intro-text {
  grid-area: intro;
  background: var(--white);
}

.service-overview h2,
.reference-copy h2 {
  margin: 0 0 18px;
  color: var(--blue-2);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
  text-transform: none;
}

.service-overview-image {
  grid-area: media;
  align-self: stretch;
  overflow: hidden;
  margin: 0;
  border-radius: 4px;
  box-shadow: 0 18px 55px rgba(0, 43, 92, 0.1);
}

.service-overview-image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-overview-360 {
  min-height: 0;
  height: 100%;
}

.service-points,
.itinerary-card-grid,
.reference-proof-grid {
  display: grid;
  gap: 16px;
}

.service-points {
  grid-area: points;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  align-self: stretch;
  height: 100%;
}

.service-card,
.reference-proof {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.service-card strong,
.reference-proof strong {
  display: block;
  color: var(--blue-2);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.itinerary-card-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.itinerary-card div {
  padding: 18px;
}

.itinerary-card h3 {
  margin: 0 0 8px;
  color: var(--blue-2);
  font-size: 22px;
}

.itinerary-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.reference-showcase {
  width: 100%;
  padding: clamp(34px, 4vw, 56px) 18px;
  background: var(--blue);
  color: var(--white);
}

.reference-showcase-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(22px, 4vw, 52px);
  width: min(1240px, 100%);
  margin: 0 auto;
  align-items: center;
}

.reference-slider {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.reference-slide {
  position: absolute;
  inset: 0;
  display: grid;
  opacity: 0;
  transition: opacity 420ms ease;
}

.reference-slide.is-active {
  opacity: 1;
}

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

.reference-slide figcaption {
  position: absolute;
  right: auto;
  bottom: 22px;
  left: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 43, 92, 0.42);
  backdrop-filter: blur(10px);
  color: var(--white);
  text-shadow: none;
}

.reference-slide strong {
  display: block;
  font-family: Avenir, "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.reference-copy h1,
.reference-copy h2 {
  margin: 12px 0 18px;
  color: var(--white);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.16;
  text-transform: none;
}

.reference-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.slider-controls {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.slider-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 20px;
}

.reference-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.reference-dots button {
  width: 32px;
  height: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.reference-dots button.is-active {
  background: var(--white);
}

.reference-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

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

.reference-proof-grid {
  grid-template-columns: repeat(3, 1fr);
}

.news-admin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.news-admin article {
  min-height: 330px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  background: var(--white);
}

.admin-preview {
  background:
    linear-gradient(90deg, rgba(0, 43, 92, 0.92), rgba(0, 43, 92, 0.8)),
    url("./assets/hero-360.jpg") center / cover;
  color: var(--white);
}

.admin-preview h2,
.admin-preview p {
  color: var(--white);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.contact address {
  display: grid;
  gap: 10px;
  padding: 32px;
  border-left: 4px solid var(--red);
  background: var(--soft);
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.contact address strong {
  margin-top: 16px;
  color: var(--blue);
}

.contact address strong:first-child {
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(0, 43, 92, 0.08);
}

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

.form-field {
  display: grid;
  gap: 7px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(0, 43, 92, 0.18);
  border-radius: 4px;
  padding: 13px 14px;
  background: #fff;
  color: var(--blue);
  font: inherit;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(54, 87, 167, 0.12);
}

.contact-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--blue-2);
}

.contact-submit {
  width: fit-content;
  border: 0;
  margin-top: 4px;
  cursor: pointer;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.form-status.is-success {
  color: #1f7a42;
}

.form-status.is-error {
  color: #b42318;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 120px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--blue);
  color: var(--white);
}

.site-footer img {
  width: 178px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-footer a {
  font-weight: 800;
}

.footer-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.legal-hero {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px) 0 clamp(24px, 4vw, 42px);
}

.legal-hero h1 {
  margin: 10px 0 12px;
  color: var(--blue-2);
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: none;
}

.legal-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.legal-content {
  display: grid;
  gap: 16px;
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(56px, 7vw, 88px);
}

.legal-content article {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--white);
}

.legal-content h2 {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.2;
  text-transform: none;
}

.legal-content p,
.legal-content address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.legal-content p + p,
.legal-content address + address {
  margin-top: 14px;
}

.legal-content a {
  color: var(--brand-blue);
  font-weight: 800;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(24px, 4.5vw, 64px);
  align-items: center;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 4vw, 56px) 0;
}

.about-hero-copy h1 {
  margin: 10px 0 14px;
  color: var(--blue-2);
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: none;
}

.about-hero-copy p {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
}

.about-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 22px 70px rgba(0, 43, 92, 0.14);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  border: 1px solid var(--line);
}

.about-values article {
  min-height: 220px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  background: var(--white);
}

.about-values article:last-child {
  border-right: 0;
}

.about-values h2 {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: clamp(22px, 2vw, 30px);
  text-transform: none;
}

.about-values p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.team-section {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 4vw, 56px) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.team-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  align-items: start;
  min-height: 260px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.team-card img {
  width: 170px;
  aspect-ratio: 1;
  border-radius: 4px;
  object-fit: cover;
  object-position: center top;
}

.team-card h3 {
  margin: 0;
  color: var(--blue-2);
  font-size: 21px;
}

.team-card span {
  display: block;
  margin-top: 5px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.team-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(54, 87, 167, 0.18), transparent 30%),
    linear-gradient(135deg, #eef3fb, #ffffff 46%, #f6f8fc);
}

.admin-page {
  width: min(1400px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(20px, 3vw, 42px) 0;
}

.admin-login-card,
.admin-shell {
  overflow: hidden;
  border: 1px solid rgba(0, 43, 92, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 80px rgba(0, 43, 92, 0.14);
}

.admin-login-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  width: min(900px, 100%);
  margin: 0 auto;
  min-height: 560px;
}

.login-brand-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(0, 43, 92, 0.94), rgba(54, 87, 167, 0.88)),
    url("./assets/hero-360.jpg") center / cover;
  color: var(--white);
}

.admin-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(280px, 100%);
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
}

.admin-logo-box img,
.admin-logo {
  display: block;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 569 / 181;
  max-height: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  object-fit: contain !important;
}

.login-brand-panel .login-tagline {
  max-width: 260px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.12;
  text-transform: none;
}

.login-form-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 56px);
}

.login-back-link {
  align-self: flex-start;
  margin-bottom: 26px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.login-back-link::before {
  margin-right: 8px;
  content: "←";
}

.admin-login-card h1,
.admin-editor-head h1 {
  margin: 0 0 10px;
  color: var(--blue-2);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.16;
  text-transform: none;
}

.admin-login-card p,
.field-help,
.admin-status {
  color: var(--muted);
  line-height: 1.55;
}

.admin-login-card form,
.employee-form {
  display: grid;
  gap: 16px;
}

.admin-login-card label,
.employee-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.admin-login-card input,
.employee-form input,
.employee-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(0, 43, 92, 0.14);
  border-radius: 12px;
  background: #f8faff;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.admin-login-card input:focus,
.employee-form input:focus,
.employee-form textarea:focus {
  border-color: var(--blue-2);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(54, 87, 167, 0.12);
}

.employee-form textarea {
  resize: vertical;
}

.admin-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: calc(100vh - 56px);
  padding: 0;
}

.admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 26px;
  background: var(--blue);
  color: var(--white);
}

.admin-sidebar .admin-logo-box {
  width: min(206px, 100%);
  padding: 10px 12px;
  background: var(--white);
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar nav a,
.sidebar-logout {
  display: flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 0 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-sidebar nav a.active {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.sidebar-logout {
  margin-top: auto;
}

.admin-workspace {
  padding: clamp(20px, 3vw, 36px);
}

.admin-editor-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.admin-editor-head p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.admin-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-editor-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.32fr) minmax(0, 0.68fr);
  gap: 24px;
  align-items: start;
}

.employee-list-panel {
  display: grid;
  gap: 14px;
  max-height: calc(100vh - 210px);
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(0, 43, 92, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.employee-list {
  display: grid;
  gap: 10px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-heading strong {
  color: var(--blue-2);
  font-size: 15px;
  text-transform: uppercase;
}

.panel-heading button {
  min-height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(54, 87, 167, 0.1);
  color: var(--blue-2);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.employee-list button {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  border: 1px solid rgba(0, 43, 92, 0.08);
  border-radius: 14px;
  background: var(--white);
  padding: 10px;
  color: var(--ink);
  font: inherit;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 43, 92, 0.05);
}

.employee-list button.active {
  border-color: var(--blue-2);
  background: rgba(54, 87, 167, 0.09);
}

.employee-list img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
}

.employee-list-copy,
.employee-list-copy strong,
.employee-list-copy small {
  display: block;
}

.employee-list-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.visibility-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #33b679;
}

.visibility-dot.is-hidden {
  background: #b8c0ce;
}

.editor-card {
  overflow: hidden;
  border: 1px solid rgba(0, 43, 92, 0.1);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(0, 43, 92, 0.09);
}

.profile-preview {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(0, 43, 92, 0.92), rgba(54, 87, 167, 0.82)),
    url("./assets/about-hero.jpg") center / cover;
  color: var(--white);
}

.profile-photo-button {
  position: relative;
  overflow: hidden;
  width: 180px;
  height: 180px;
  border: 0;
  border-radius: 24px;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
}

.profile-photo-button img {
  display: block;
  width: 180px;
  height: 180px;
  border: 5px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  object-fit: cover;
  object-position: center top;
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

.profile-photo-button > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0, 43, 92, 0.84);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.profile-photo-button:hover img,
.profile-photo-button:focus-visible img {
  filter: brightness(0.82);
  transform: scale(1.02);
}

.profile-preview span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-preview .profile-photo-button > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 34px;
  justify-content: center;
  background: rgba(0, 43, 92, 0.84);
  color: var(--white);
  line-height: 1;
}

.profile-preview h2 {
  margin: 14px 0 8px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
}

.profile-preview p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.employee-form {
  padding: 24px;
}

.advanced-photo {
  border: 1px solid rgba(0, 43, 92, 0.1);
  border-radius: 14px;
  background: #f8faff;
  padding: 12px;
}

.advanced-photo summary {
  color: var(--blue-2);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.advanced-photo label {
  margin-top: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.editor-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
}

.switch-field {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: none;
}

.switch-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
}

.switch-field span {
  position: relative;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: #c9d1df;
  transition: background 160ms ease;
}

.switch-field span::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--white);
  content: "";
  transition: transform 160ms ease;
}

.switch-field input:checked + span {
  background: var(--blue-2);
}

.switch-field input:checked + span::after {
  transform: translateX(20px);
}

.danger-button {
  color: #a63838;
  border-color: rgba(166, 56, 56, 0.24);
}

.checkbox-field input {
  width: auto;
  min-height: auto;
}

.itinerary-page {
  background: var(--white);
}

.itinerary-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 4.5vw, 64px);
  align-items: center;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 4vw, 56px) 0;
}

.itinerary-hero h1 {
  margin: 10px 0 14px;
  color: var(--blue-2);
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: none;
}

.itinerary-hero p {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
}

.itinerary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.itinerary-cover {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 22px 70px rgba(0, 43, 92, 0.14);
}

.itinerary-cover img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.itinerary-content {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto clamp(42px, 5vw, 72px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 22px 70px rgba(0, 43, 92, 0.1);
}

.viewer-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.55fr);
  gap: 20px;
  align-items: end;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.viewer-head h2 {
  margin: 8px 0 0;
  color: var(--blue-2);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
  text-transform: none;
}

.viewer-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.itinerary-duration {
  display: inline-flex;
  margin: 0 0 6px;
  padding: 9px 12px;
  border-radius: 4px;
  background: rgba(54, 87, 167, 0.1);
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.itinerary-detail-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 28px;
  padding: 26px;
}

.highlight-panel {
  align-self: start;
  padding: 26px;
  background: var(--blue);
  color: var(--white);
}

.highlight-panel h3 {
  margin: 0 0 16px;
  font-size: 21px;
  text-transform: uppercase;
}

.highlight-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  line-height: 1.55;
}

.day-list > div {
  display: grid;
  gap: 12px;
}

.day-card {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.day-card span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.day-card h3 {
  margin: 6px 0 10px;
  color: var(--blue-2);
  font-size: 21px;
}

.day-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-login {
    justify-self: start;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .quick-services,
  .destination-grid,
  .trust-band,
  .logo-cloud,
  .reference-mini-gallery,
  .service-points,
  .itinerary-card-grid,
  .reference-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reference-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .john-message,
  .service-feature,
  .service-feature.reverse,
  .page-hero,
  .service-overview,
  .reference-showcase-inner,
  .news-admin,
  .contact,
  .itinerary-hero,
  .viewer-head,
  .about-hero,
  .admin-shell,
  .admin-editor-grid,
  .admin-login-card {
    grid-template-columns: 1fr;
  }

  .service-overview {
    grid-template-areas:
      "intro"
      "media"
      "points";
  }

  .service-points {
    grid-template-rows: auto;
    height: auto;
  }

  .about-values,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-values article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-values article:last-child {
    border-bottom: 0;
  }

  .john-message {
    grid-template-columns: 1fr;
  }

  .john-photo {
    order: -1;
  }

  .john-photo img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 320px;
  }

  .admin-editor-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-sidebar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

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

  .service-feature.reverse img {
    order: 0;
  }
}

@media (max-width: 640px) {
  .top-ribbon {
    height: 36px;
  }

  .top-ribbon span {
    font-size: 12px;
  }

  .site-header {
    gap: 14px;
    padding: 12px;
  }

  .admin-page {
    width: min(100% - 16px, 1400px);
    padding: 8px 0;
  }

  .login-brand-panel {
    min-height: 220px;
  }

  .admin-workspace,
  .admin-sidebar,
  .employee-form {
    padding: 16px;
  }

  .admin-sidebar {
    grid-template-columns: 1fr;
  }

  .employee-list-panel {
    max-height: none;
  }

  .profile-preview,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .profile-preview img {
    width: 140px;
    height: 140px;
  }

  .profile-photo-button,
  .profile-photo-button img {
    width: 140px;
    height: 140px;
  }

  .editor-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions,
  .admin-actions {
    width: 100%;
  }

  .form-actions > *,
  .admin-actions > * {
    flex: 1;
  }

  .brand img,
  .site-footer img {
    width: 150px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
  }

  .main-nav {
    gap: 10px 16px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-content {
    width: calc(100% - 24px);
    margin-left: 12px;
    padding-top: 92px;
  }

  .quick-services,
  .destination-grid,
  .trust-band,
  .logo-cloud,
  .reference-mini-gallery,
  .service-points,
  .itinerary-card-grid,
  .reference-proof-grid,
  .reference-gallery {
    grid-template-columns: 1fr;
  }

  .quick-services {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 18px 0;
    gap: 12px;
  }

  .quick-services a {
    min-height: auto;
    padding: 14px 8px;
    border-left: 0;
    border-bottom: 1px solid rgba(54, 87, 167, 0.12);
  }

  .quick-services a:last-child {
    border-bottom: 0;
  }

  .destination-card {
    min-height: 360px;
  }

  .service-feature {
    padding: 12px;
  }

  .service-feature img {
    height: 280px;
  }

  .service-feature > .panorama-360-player {
    height: 280px;
  }

  .page-hero {
    padding-top: 44px;
  }

  .page-hero-image img {
    aspect-ratio: 4 / 3;
  }

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

  .contact-submit {
    width: 100%;
  }

  .reference-showcase {
    padding-right: 12px;
    padding-left: 12px;
  }

  .reference-slider {
    min-height: 420px;
  }

  .reference-slide figcaption {
    bottom: 18px;
    left: 18px;
    padding: 0;
  }

  .itinerary-detail-grid {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .team-card img {
    width: 100%;
    max-height: 360px;
  }
}
