:root {
  --ink: #142235;
  --text: #27384b;
  --muted: #667789;
  --muted-soft: #8a9aaa;
  --navy-dark: #0c1b31;
  --navy: #182f54;
  --purple: #34327c;
  --blue: #0f6f8e;
  --blue-deep: #074e68;
  --blue-soft: #e8f4f8;
  --gold: #b88935;
  --gold-soft: #f3e5c8;
  --site-bg: #edf4f7;
  --surface: #ffffff;
  --surface-soft: #f8fbfd;
  --surface-warm: #fbf7ef;
  --line: #d9e3ea;
  --line-strong: #b9cbd6;
  --danger: #9d271f;
  --shadow: 0 22px 52px rgba(12, 27, 49, 0.14);
  --shadow-soft: 0 12px 30px rgba(12, 27, 49, 0.08);
  --shadow-subtle: 0 8px 18px rgba(12, 27, 49, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--site-bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(11, 51, 73, 0.12), rgba(11, 51, 73, 0.02) 360px, rgba(11, 51, 73, 0) 760px),
    linear-gradient(135deg, rgba(15, 111, 142, 0.105) 0 18%, rgba(255, 255, 255, 0) 18% 100%),
    linear-gradient(315deg, rgba(184, 137, 53, 0.08) 0 15%, rgba(255, 255, 255, 0) 15% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(237, 244, 247, 0.72)),
    var(--site-bg);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(15, 111, 142, 0.28);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 13px 40px;
  border-bottom: 1px solid rgba(217, 227, 234, 0.72);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 10px 28px rgba(12, 27, 49, 0.075);
  backdrop-filter: blur(14px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.03rem;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: var(--surface);
  background: #050505;
  box-shadow: 0 10px 20px rgba(24, 47, 84, 0.22);
  font-size: 0.82rem;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.site-nav a {
  padding: 8px 11px;
  border-radius: 6px;
  color: #334454;
  text-decoration: none;
  font-weight: 500;
  transition: color 140ms ease, background 140ms ease;
}

.site-nav a:hover {
  color: var(--blue);
  background: var(--blue-soft);
  text-decoration: none;
}

.language-switcher {
  display: flex;
  gap: 8px;
}

.language-switcher a {
  min-width: 40px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #334454;
  text-align: center;
  text-decoration: none;
  background: var(--surface);
}

.language-switcher a[aria-current="true"] {
  border-color: var(--ink);
  color: var(--surface);
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.page-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 86px;
}

.page-shell-wide {
  width: min(1180px, calc(100% - 36px));
}

.hero-shell,
.page-hero {
  max-width: 780px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 44px;
  border: 1px solid rgba(199, 214, 224, 0.82);
  border-left: 4px solid rgba(184, 137, 53, 0.9);
  border-top: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 253, 0.92) 54%, rgba(232, 244, 248, 0.84)),
    linear-gradient(90deg, rgba(15, 111, 142, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--surface);
  box-shadow: 0 24px 58px rgba(12, 27, 49, 0.11);
}

.page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  height: 8px;
  background: linear-gradient(90deg, rgba(15, 111, 142, 0), rgba(15, 111, 142, 0.32), rgba(184, 137, 53, 0.32));
  content: "";
  pointer-events: none;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.hero-carousel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--surface);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.package-list-hero {
  max-width: none;
  min-height: 455px;
}

.hero-carousel-viewport,
.hero-carousel-slide {
  position: absolute;
  inset: 0;
}

.hero-carousel-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 760ms ease;
}

.hero-carousel-slide.is-active {
  opacity: 1;
}

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

.hero-carousel::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 20, 37, 0.84), rgba(8, 20, 37, 0.5) 48%, rgba(8, 20, 37, 0.16)),
    linear-gradient(0deg, rgba(8, 20, 37, 0.42), rgba(8, 20, 37, 0.03) 48%);
  content: "";
}

.hero-carousel-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(780px, calc(100% - 108px));
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0;
  margin-left: 56px;
}

.hero-carousel h1,
.hero-carousel p {
  color: var(--surface);
}

.hero-carousel .eyebrow {
  color: #f3c974;
}

.hero-carousel .button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--surface);
  background: rgba(255, 255, 255, 0.1);
}

.hero-carousel .button-secondary:hover {
  border-color: var(--surface);
  color: var(--surface);
  background: rgba(255, 255, 255, 0.18);
}

.hero-carousel-control {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  color: var(--surface);
  background: rgba(10, 25, 44, 0.48);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-carousel-control:hover {
  background: rgba(10, 25, 44, 0.68);
}

.hero-carousel-control-prev {
  left: 18px;
}

.hero-carousel-control-next {
  right: 18px;
}

.hero-carousel-dots {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  display: flex;
  gap: 8px;
}

.hero-carousel-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.hero-carousel-dot.is-active {
  width: 26px;
  background: var(--surface);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.hero-shell h1,
.page-hero h1,
.home-hero h1,
.detail-hero h1,
.status-panel h1 {
  margin: 0;
  font-size: 3.1rem;
  line-height: 1.04;
}

.hero-shell p,
.page-hero p,
.home-hero p,
.detail-hero p,
.empty-state p,
.status-panel p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease, background 140ms ease, color 140ms ease;
}

.button-primary {
  border: 1px solid var(--blue);
  color: var(--surface);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 12px 22px rgba(15, 111, 142, 0.2);
}

.button-primary:hover {
  border-color: #0c5e77;
  background: #0c5e77;
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: var(--surface);
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.content-section {
  margin-top: 56px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.75rem;
}

.section-heading h2::before {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(15, 111, 142, 0.65));
  content: "";
}

.section-heading a,
.content-card a {
  color: var(--blue);
  font-weight: 700;
}

.section-heading a:hover,
.content-card a:hover {
  text-decoration: underline;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
  gap: 24px;
  margin-top: 30px;
}

.content-card,
.empty-state,
.contact-panel,
.form-panel,
.filter-panel,
.price-option-card,
.status-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

.content-card {
  min-height: 160px;
  overflow: hidden;
}

.content-card-media {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  color: var(--surface);
  text-decoration: none;
  background: var(--navy);
}

.content-card-media img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.content-card:hover .content-card-media img {
  transform: scale(1.012);
}

.content-card-placeholder {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 22px;
  background:
    linear-gradient(140deg, rgba(52, 50, 124, 0.32), rgba(15, 111, 142, 0.2) 52%, rgba(184, 137, 53, 0.18)),
    var(--navy);
}

.content-card-placeholder span {
  color: #c9e7f0;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.content-card-placeholder strong {
  max-width: 260px;
  color: var(--surface);
  font-size: 1.3rem;
  line-height: 1.18;
}

.content-card-body {
  padding: 24px;
}

.content-card:not(.package-card) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.96)),
    var(--surface);
}

.content-card:not(.package-card):not(:has(.content-card-media)) {
  padding: 26px;
}

.content-card h2,
.content-card h3 {
  margin: 0 0 12px;
}

.content-card p {
  line-height: 1.65;
}

.package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-color: rgba(199, 214, 224, 0.86);
  background: rgba(255, 255, 255, 0.96);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.package-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.package-card-media {
  display: block;
  position: relative;
  overflow: hidden;
  color: var(--surface);
  text-decoration: none;
  background: var(--navy);
}

.package-card-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(20, 34, 53, 0.34), rgba(20, 34, 53, 0));
  content: "";
  pointer-events: none;
}

.package-card-media img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.package-card:hover .package-card-media img {
  transform: scale(1.015);
}

.package-card-placeholder {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(52, 50, 124, 0.26), rgba(15, 111, 142, 0.22) 46%, rgba(184, 137, 53, 0.15)),
    var(--navy);
  box-shadow: inset 0 -72px 0 rgba(15, 111, 142, 0.34);
}

.placeholder-kicker {
  color: #c9e7f0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.placeholder-title {
  max-width: 250px;
  color: var(--surface);
  font-size: 1.36rem;
  font-weight: 800;
  line-height: 1.16;
}

.package-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.package-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.package-card h2 a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.chip-list li {
  padding: 5px 10px;
  border: 1px solid #cae0e7;
  border-radius: 6px;
  color: #18586b;
  background: var(--blue-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 12px;
}

.card-facts div {
  min-width: 72px;
}

.card-facts dt,
.fact-list dt,
.contact-list dt {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.card-facts dd,
.fact-list dd,
.contact-list dd {
  margin: 4px 0 0;
}

.card-facts dd,
.fact-list dd {
  color: var(--ink);
  font-weight: 800;
}

.card-summary {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #405065;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.detail-layout {
  max-width: none;
}

.detail-layout::before {
  position: fixed;
  z-index: -1;
  inset: 190px 0 auto;
  height: 360px;
  background:
    linear-gradient(90deg, rgba(15, 111, 142, 0.1), rgba(184, 137, 53, 0.07)),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(244, 247, 250, 0.86));
  content: "";
  pointer-events: none;
}

.destination-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

.destination-hero-media {
  overflow: hidden;
  min-height: 280px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow-subtle);
}

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

.destination-hero-placeholder {
  display: grid;
  place-items: center;
  color: #d7edf4;
  font-weight: 800;
  text-transform: uppercase;
  background:
    linear-gradient(145deg, rgba(52, 50, 124, 0.28), rgba(15, 111, 142, 0.28)),
    var(--navy);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.06fr) minmax(0, 0.94fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.94)),
    var(--surface);
  box-shadow: var(--shadow);
}

.detail-hero-copy {
  align-self: center;
  padding: 48px;
}

.detail-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
}

.detail-summary {
  margin-bottom: 22px;
  color: #263b50;
  font-size: 1.08rem;
  line-height: 1.68;
}

.detail-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.detail-anchor-nav a {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #30465b;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.detail-anchor-nav a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.detail-hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--navy);
}

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

.detail-hero-placeholder {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 32px;
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(15, 111, 142, 0.18), rgba(184, 137, 53, 0.14)),
    var(--navy);
  box-shadow: inset 0 -120px 0 rgba(15, 111, 142, 0.34);
}

.detail-chip-list {
  margin-bottom: 22px;
}

.fact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}

.fact-list div {
  min-width: 128px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 248, 0.58)),
    var(--surface-soft);
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 36px;
  align-items: start;
  margin-top: 40px;
}

.detail-main-column {
  min-width: 0;
}

.detail-section {
  margin-top: 0;
}

.detail-main-column .detail-section + .detail-section,
.detail-main-column .empty-state {
  margin-top: 30px;
}

.detail-section-heading {
  margin-bottom: 16px;
}

.detail-section-heading h2 {
  margin: 0;
}

.detail-action-panel {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.96)),
    var(--surface);
  box-shadow: var(--shadow);
  scrollbar-gutter: stable;
}

.detail-action-panel h2 {
  margin: 0 0 12px;
}

.detail-action-panel p {
  line-height: 1.65;
}

.action-price {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid #cae0e7;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(232, 244, 248, 0.95), rgba(243, 229, 200, 0.44)),
    var(--blue-soft);
}

.action-price span {
  display: block;
  color: #476477;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.action-price strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.45rem;
}

.compact-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.compact-form .form-field {
  margin-bottom: 0;
}

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

.action-extra-fields {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.action-extra-fields summary {
  padding: 13px 14px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.action-extra-fields-body {
  display: grid;
  gap: 14px;
  padding: 0 14px 14px;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.image-gallery figure {
  margin: 0;
}

.image-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-subtle);
}

.image-gallery figcaption,
.muted-note,
.field-help,
.redirect-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-option-list {
  display: grid;
  gap: 12px;
}

.price-option-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
  gap: 18px;
  align-items: start;
  padding: 15px 18px;
  border-left: 4px solid rgba(15, 111, 142, 0.78);
  background:
    linear-gradient(90deg, rgba(15, 111, 142, 0.055), rgba(255, 255, 255, 0) 34%),
    var(--surface);
}

.price-option-card h3,
.price-option-card p {
  margin: 0 0 8px;
}

.price-option-copy p {
  color: #4c6074;
  line-height: 1.55;
}

.price-option-meta {
  text-align: right;
}

.price-option-amount {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
}

.price-option-amount span {
  display: block;
  margin-top: 4px;
  color: #476477;
  font-size: 0.95rem;
  font-weight: 700;
}

.payable-note {
  display: inline-flex;
  justify-content: flex-end;
  padding: 5px 9px;
  border-radius: 999px;
  color: #21445a;
  background: rgba(232, 244, 248, 0.95);
  font-size: 0.9rem;
  font-weight: 800;
}

.timeline-list {
  display: grid;
  gap: 20px;
}

.timeline-item {
  position: relative;
  padding: 24px 30px;
  border-left: 4px solid var(--blue);
  border-radius: 0 8px 8px 0;
  background:
    linear-gradient(180deg, rgba(248, 251, 253, 0.96), rgba(255, 255, 255, 0.98)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.timeline-item::before {
  position: absolute;
  top: 24px;
  left: -9px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.timeline-item h3 {
  margin: 0 0 12px;
  max-width: 64ch;
  font-size: 1.2rem;
  line-height: 1.35;
}

.timeline-prose {
  display: grid;
  max-width: 68ch;
  gap: 13px;
}

.timeline-prose p {
  margin: 0;
  color: #314960;
  font-size: 1.01rem;
  line-height: 1.72;
}

.detail-info-list {
  display: grid;
  gap: 16px;
}

.detail-info-panel {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-left: 4px solid rgba(184, 137, 53, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(184, 137, 53, 0.045), rgba(255, 255, 255, 0) 38%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.detail-info-panel h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.detail-info-panel-includes {
  border-left-color: #25836a;
}

.detail-info-panel-excludes {
  border-left-color: #9d6750;
}

.detail-info-panel-policy {
  border-left-color: var(--blue);
}

.detail-check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.detail-check-list li::before {
  position: absolute;
  top: 0.05em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--surface);
  background: var(--blue);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.detail-info-panel-excludes .detail-check-list li::before {
  background: #9d6750;
  content: "–";
}

.policy-list {
  display: grid;
  gap: 9px;
}

.policy-list p {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(248, 251, 253, 0.96), rgba(255, 255, 255, 0.98)),
    var(--surface-soft);
  line-height: 1.55;
}

.body-copy {
  color: var(--text);
  max-width: 74ch;
}

.body-copy p {
  margin: 0 0 12px;
  line-height: 1.62;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.form-panel,
.filter-panel,
.contact-panel,
.empty-state,
.status-panel {
  padding: 30px;
}

.form-panel {
  max-width: 760px;
  margin-top: 48px;
}

.form-panel h2,
.contact-panel h2,
.empty-state h2 {
  margin-top: 0;
}

.filter-panel {
  margin-top: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.98)),
    var(--surface);
}

.filter-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 22px 20px;
}

.filter-form .form-field {
  margin-bottom: 0;
}

.filter-panel .optional-label {
  display: none;
}

.filter-panel .field-help {
  max-width: 32ch;
}

.filter-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
}

.filter-actions .button-primary {
  min-width: 240px;
}

.form-errors {
  grid-column: 1 / -1;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15, 111, 142, 0.08);
}

.form-field.is-disabled {
  opacity: 0.6;
}

.form-field input:disabled,
.form-field select:disabled,
.form-field textarea:disabled {
  cursor: not-allowed;
  background: #eef2f5;
}

.field-error,
.form-errors {
  color: var(--danger);
  font-size: 0.95rem;
}

.optional-label {
  color: var(--muted);
  font-weight: 400;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list div {
  display: grid;
  gap: 4px;
}

.contact-list dd {
  line-height: 1.6;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.link-list a {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue);
  background: var(--surface-soft);
  text-decoration: none;
  font-weight: 700;
}

.link-list a:hover {
  border-color: var(--blue);
}

.status-panel {
  max-width: 760px;
}

.site-footer {
  margin-top: 32px;
  border-top: 1px solid rgba(217, 227, 234, 0.8);
  color: #dce8ef;
  background:
    linear-gradient(135deg, rgba(52, 50, 124, 0.18), rgba(15, 111, 142, 0.16)),
    linear-gradient(180deg, #10233f, #0c1b31);
}

.site-footer-inner {
  display: grid;
  width: min(1260px, calc(100% - 40px));
  grid-template-columns: minmax(260px, 1.2fr) minmax(180px, 0.65fr) minmax(240px, 0.9fr);
  gap: 34px;
  margin: 0 auto;
  padding: 44px 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--surface);
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li {
  margin: 0;
  color: #c6d5df;
  line-height: 1.65;
}

.site-footer a {
  color: #eef7fb;
  text-decoration: none;
}

.site-footer a:hover {
  color: #f3c974;
  text-decoration: underline;
}

.site-footer-logo {
  color: var(--surface);
}

.site-footer-brand p {
  max-width: 42ch;
  margin-top: 16px;
}

.site-footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer-contact ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.site-footer-social a {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(220, 232, 239, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-header-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .detail-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .destination-hero {
    grid-template-columns: 1fr;
  }

  .detail-hero-media {
    order: -1;
  }

  .detail-hero-media img,
  .detail-hero-placeholder {
    min-height: 340px;
  }

  .detail-content-grid {
    grid-template-columns: 1fr;
  }

  .detail-action-panel {
    position: static;
    order: -1;
  }

  .hero-carousel,
  .package-list-hero {
    min-height: 460px;
  }

  .hero-carousel-overlay {
    width: min(680px, calc(100% - 64px));
    margin-left: 32px;
  }

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

  .site-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
    padding: 14px 16px;
  }

  .page-shell,
  .page-shell-wide {
    width: min(100% - 24px, 1180px);
    padding: 32px 0 56px;
  }

  .hero-shell h1,
  .page-hero h1,
  .home-hero h1,
  .hero-carousel h1,
  .detail-hero h1,
  .status-panel h1 {
    font-size: 2.05rem;
  }

  .page-hero,
  .detail-hero,
  .detail-hero-copy,
  .detail-action-panel,
  .form-panel,
  .filter-panel,
  .contact-panel,
  .empty-state,
  .status-panel {
    padding: 20px;
  }

  .hero-carousel,
  .package-list-hero {
    min-height: 520px;
  }

  .detail-hero {
    padding: 0;
  }

  .hero-carousel-overlay {
    width: calc(100% - 40px);
    padding: 74px 0 84px;
    margin-left: 20px;
  }

  .hero-carousel-control {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .hero-carousel-control-prev {
    left: 20px;
  }

  .hero-carousel-control-next {
    left: 70px;
    right: auto;
  }

  .hero-carousel-dots {
    right: 20px;
    bottom: 32px;
  }

  .site-footer-inner {
    width: min(100% - 28px, 1260px);
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

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

  .price-option-meta {
    text-align: left;
  }

  .detail-hero-media img,
  .detail-hero-placeholder {
    min-height: 280px;
  }
}

/* Full visual-system pass: composition-level polish without changing content. */
.site-header {
  padding: 0 22px;
}

.site-header-inner {
  display: flex;
  width: min(1280px, 100%);
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
}

.site-brand-text {
  position: relative;
  top: -1px;
}

.site-nav {
  gap: 2px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.page-shell {
  width: min(1040px, calc(100% - 40px));
}

.page-shell-wide {
  width: min(1260px, calc(100% - 40px));
}

.home-page,
.package-browse-page,
.service-hub-page {
  padding-top: 34px;
}

.hero-carousel {
  isolation: isolate;
}

.home-page .hero-carousel {
  min-height: 650px;
}

.package-browse-page .hero-carousel {
  min-height: 480px;
}

.hero-carousel::before {
  position: absolute;
  z-index: 2;
  inset: 22px auto auto 22px;
  width: 74px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.hero-carousel-overlay {
  max-width: 720px;
}

.hero-carousel h1 {
  max-width: 11ch;
  font-size: 4rem;
  line-height: 0.98;
}

.hero-carousel p:not(.eyebrow) {
  max-width: 58ch;
  font-size: 1.12rem;
}

.page-hero {
  max-width: 860px;
}

.service-hub-hero,
.contact-panel,
.request-form-panel,
.status-panel {
  max-width: none;
}

.editorial-section {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(217, 227, 234, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 251, 253, 0.74)),
    rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-subtle);
}

.editorial-section + .editorial-section {
  margin-top: 34px;
}

.featured-destinations-section .content-card,
.service-category-card {
  min-height: 220px;
  border-top: 3px solid rgba(184, 137, 53, 0.72);
}

.package-results-grid {
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  align-items: stretch;
}

.package-card-media-badge {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  color: var(--surface);
  background: rgba(12, 27, 49, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card-eyebrow {
  margin-bottom: 8px;
}

.package-card .card-facts div:last-child {
  display: none;
}

.package-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--ink);
  font-weight: 900;
}

.package-card-footer span:first-child {
  color: var(--blue-deep);
}

.package-card-footer span:last-child {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--surface);
  background: linear-gradient(135deg, var(--blue), var(--navy));
}

.package-filter-panel {
  position: relative;
  overflow: hidden;
}

.package-filter-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--purple));
  content: "";
}

.filter-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.filter-form .field-help {
  line-height: 1.42;
}

.detail-layout {
  position: relative;
}

.detail-hero {
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
}

.detail-hero-copy {
  min-width: 0;
}

.detail-hero h1 {
  max-width: 13ch;
  font-size: 3.6rem;
}

.detail-summary {
  max-width: 62ch;
}

.detail-anchor-nav {
  position: sticky;
  top: 86px;
  z-index: 10;
  padding: 12px;
  border: 1px solid rgba(217, 227, 234, 0.75);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-subtle);
  backdrop-filter: blur(12px);
}

.detail-content-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
}

.detail-section {
  scroll-margin-top: 120px;
}

.detail-gallery-section {
  margin-top: 0;
}

.detail-image-gallery {
  grid-template-columns: 1.2fr 0.8fr;
}

.detail-image-gallery figure:first-child {
  grid-row: span 2;
}

.detail-image-gallery figure:first-child img {
  aspect-ratio: 4 / 4.1;
}

.detail-section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.detail-section-heading h2 {
  margin: 0;
  font-size: 1.8rem;
}

.price-option-card {
  border-left-width: 5px;
}

.price-option-card h3 {
  font-size: 1.04rem;
}

.price-option-meta {
  display: grid;
  gap: 6px;
}

.price-option-meta p {
  margin: 0;
}

.detail-action-panel {
  border-top: 4px solid var(--gold);
}

.detail-action-panel .button-primary,
.compact-form .button-primary {
  width: 100%;
}

.timeline-item {
  background:
    linear-gradient(90deg, rgba(15, 111, 142, 0.055), rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 253, 0.96));
}

.timeline-prose p + p {
  padding-top: 2px;
}

.detail-info-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.detail-info-panel {
  min-height: 100%;
}

.request-form-panel form {
  margin-top: 22px;
}

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

.form-group-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.98)),
    var(--surface);
}

.form-group-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.form-group-card-wide .form-field:last-child {
  grid-column: 1 / -1;
}

.request-form-panel .button-primary {
  margin-top: 18px;
}

.contact-panel,
.status-panel,
.empty-state {
  position: relative;
  overflow: hidden;
}

.contact-panel::before,
.status-panel::before,
.empty-state::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  content: "";
}

@media (max-width: 980px) {
  .site-header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .site-header-actions {
    width: 100%;
  }

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

  .detail-hero {
    grid-template-columns: 1fr;
  }

  .detail-hero-media {
    order: -1;
  }

  .detail-anchor-nav {
    position: static;
  }

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

  .detail-content-grid {
    grid-template-columns: 1fr;
  }

  .detail-action-panel {
    position: static;
    order: -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0 16px;
  }

  .site-header-actions,
  .site-nav {
    width: 100%;
  }

  .site-nav a {
    min-height: 36px;
    padding: 6px 8px;
  }

  .home-page .hero-carousel,
  .package-browse-page .hero-carousel,
  .hero-carousel {
    min-height: 560px;
  }

  .hero-carousel h1,
  .detail-hero h1 {
    font-size: 2.35rem;
  }

  .editorial-section,
  .form-group-card {
    padding: 20px;
  }

  .filter-form,
  .form-layout-grid,
  .form-group-card-wide,
  .detail-info-list,
  .detail-image-gallery {
    grid-template-columns: 1fr;
  }

  .detail-image-gallery figure:first-child {
    grid-row: auto;
  }

  .form-group-card-wide .form-field:last-child {
    grid-column: auto;
  }
}

.error-page {
  display: grid;
  min-height: 70vh;
  place-items: center;
}

.error-panel {
  position: relative;
  width: min(780px, 100%);
  padding: clamp(46px, 8vw, 86px);
  overflow: hidden;
  color: var(--surface);
  background:
    linear-gradient(120deg, rgba(7, 26, 44, 0.96), rgba(16, 46, 73, 0.9)),
    url("../images/editorial/halong-cruise-bay.a46091e51629.jpg") center / cover;
  box-shadow: var(--shadow);
}

.error-panel::after {
  position: absolute;
  right: -40px;
  bottom: -95px;
  color: rgba(255, 255, 255, 0.045);
  content: "NHT";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13rem;
  line-height: 1;
}

.error-panel > * {
  position: relative;
  z-index: 1;
}

.error-code {
  margin: 0 0 28px;
  color: #e9c880;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.error-panel .eyebrow {
  color: #e9c880;
}

.error-panel h1 {
  max-width: 11ch;
  margin: 12px 0 22px;
  color: var(--surface);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
}

.error-panel > p:not(.eyebrow, .error-code) {
  max-width: 55ch;
  color: #d5e0e4;
}

.error-panel .button-secondary {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--surface);
}

.error-panel .button-primary {
  border-color: var(--gold);
  color: var(--navy-dark);
  background: var(--gold);
  box-shadow: none;
}

/* Minor visual cleanup after review: keep real images aligned and avoid over-cropping. */
.detail-image-gallery {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

.detail-image-gallery figure:first-child {
  grid-row: auto;
}

.detail-image-gallery figure:first-child img {
  aspect-ratio: 4 / 3;
}

.timeline-prose p,
.body-copy p,
.policy-list p,
.detail-check-list li {
  text-wrap: pretty;
}

@media (max-width: 760px) {
  .package-card-media img,
  .package-card-placeholder {
    height: 220px;
    min-height: 220px;
  }
}

/* Editorial travel redesign. This final layer intentionally replaces the
   earlier panel-heavy composition while preserving the existing components. */
:root {
  --ink: #10263f;
  --text: #314456;
  --muted: #70808e;
  --navy-dark: #071a2c;
  --navy: #102e49;
  --purple: #3a4e79;
  --blue: #147d9a;
  --blue-deep: #095a70;
  --blue-soft: #e7f2f3;
  --gold: #c49a45;
  --gold-soft: #f0dfbb;
  --site-bg: #f6f3ed;
  --surface: #ffffff;
  --surface-soft: #f1f4f3;
  --surface-warm: #ece4d6;
  --line: #d9ddd8;
  --line-strong: #b9c2bd;
  --shadow: 0 30px 80px rgba(7, 26, 44, 0.18);
  --shadow-soft: 0 18px 44px rgba(7, 26, 44, 0.1);
  --shadow-subtle: 0 10px 28px rgba(7, 26, 44, 0.07);
}

html {
  background: var(--site-bg);
}

body {
  color: var(--text);
  background:
    radial-gradient(ellipse at 5% 12%, rgba(20, 125, 154, 0.12), transparent 31rem),
    radial-gradient(ellipse at 96% 48%, rgba(196, 154, 69, 0.13), transparent 34rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), transparent 42%),
    linear-gradient(180deg, #faf8f3, #f0ede5);
  background-attachment: fixed;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.62;
}

h1,
h2,
h3,
.site-brand-text,
.placeholder-title {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

.site-header {
  padding: 0 30px;
  border-bottom: 1px solid rgba(16, 38, 63, 0.1);
  background: rgba(250, 248, 243, 0.94);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.site-header-inner {
  width: min(1360px, 100%);
  min-height: 82px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
}

.site-brand-text {
  font-size: 1.14rem;
  font-weight: 700;
}

.site-header-actions {
  gap: 18px;
}

.site-nav {
  gap: 1px;
}

.site-nav a {
  position: relative;
  min-height: 44px;
  padding: 11px 10px;
  border-radius: 0;
  color: #3c4b58;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a::after {
  position: absolute;
  right: 10px;
  bottom: 7px;
  left: 10px;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 150ms ease, transform 150ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: transparent;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav .site-nav-cta {
  min-height: 42px;
  margin-left: 7px;
  padding: 10px 17px;
  border-radius: 999px;
  color: var(--surface);
  background: var(--ink);
}

.site-nav .site-nav-cta:hover {
  color: var(--surface);
  background: var(--blue-deep);
}

.site-nav .site-nav-cta::after {
  display: none;
}

.language-switcher {
  gap: 3px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.language-switcher a {
  min-width: 34px;
  padding: 7px 6px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 800;
}

.language-switcher a[aria-current="true"] {
  color: var(--ink);
  background: var(--gold-soft);
}

.page-shell,
.page-shell-wide {
  width: min(1280px, calc(100% - 64px));
  padding: 58px 0 104px;
}

.home-page,
.package-browse-page,
.service-hub-page {
  padding-top: 30px;
}

.eyebrow {
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-carousel {
  min-height: 660px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.home-page .hero-carousel {
  min-height: 640px;
}

.package-browse-page .hero-carousel {
  min-height: 520px;
}

.hero-carousel::before {
  inset: 31px auto auto 35px;
  width: 94px;
  height: 2px;
}

.hero-carousel::after {
  background:
    linear-gradient(90deg, rgba(5, 19, 32, 0.9), rgba(5, 19, 32, 0.61) 47%, rgba(5, 19, 32, 0.12) 78%),
    linear-gradient(0deg, rgba(5, 19, 32, 0.5), transparent 45%);
}

.hero-carousel-slide {
  transition: opacity 360ms ease;
}

.hero-carousel-overlay {
  width: min(720px, calc(100% - 160px));
  margin-left: clamp(48px, 7vw, 94px);
  padding: 96px 0;
}

.hero-carousel h1 {
  max-width: 11ch;
  margin: 12px 0 22px;
  font-size: clamp(3.2rem, 5vw, 4.75rem);
  font-weight: 500;
  line-height: 0.96;
}

.hero-carousel p:not(.eyebrow) {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-carousel-control {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  color: var(--surface);
  background: rgba(7, 26, 44, 0.34);
  backdrop-filter: blur(8px);
}

.hero-carousel-control:hover {
  border-color: var(--gold-soft);
  background: rgba(7, 26, 44, 0.72);
}

.hero-carousel-dots {
  right: 36px;
  bottom: 30px;
  left: auto;
  width: auto;
}

.hero-carousel-dot {
  width: 24px;
  height: 2px;
  border-radius: 0;
}

.hero-carousel-dot.is-active {
  width: 48px;
  background: var(--gold-soft);
}

.button-primary,
.button-secondary,
.button {
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.89rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.button-primary {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(7, 26, 44, 0.2);
}

.button-primary:hover {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.hero-carousel .button-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--surface);
}

.journey-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.78fr 1.72fr;
  gap: 54px;
  width: calc(100% - 48px);
  margin: 28px auto 92px;
  padding: 36px 42px;
  color: #eaf2f4;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 12%, rgba(20, 125, 154, 0.28), transparent 18rem),
    linear-gradient(135deg, #071a2c, #0d2b43);
  box-shadow: 0 24px 50px rgba(7, 26, 44, 0.22);
}

.journey-strip .eyebrow {
  margin-top: 0;
  color: #e9c880;
}

.journey-strip h2 {
  margin: 0;
  color: var(--surface);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.15;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.journey-steps li {
  min-width: 0;
}

.journey-steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 10px;
  border: 1px solid rgba(233, 200, 128, 0.5);
  border-radius: 50%;
  color: #e9c880;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.journey-steps strong {
  display: block;
  margin-bottom: 5px;
  color: var(--surface);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.journey-steps p {
  margin: 0;
  color: #b8c8d0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.content-section {
  margin-top: 84px;
}

.editorial-section {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.editorial-section + .editorial-section {
  margin-top: 108px;
}

.section-heading {
  align-items: end;
  margin-bottom: 30px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line-strong);
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 500;
}

.section-heading h2::before {
  width: 38px;
  height: 2px;
  margin-right: 14px;
  background: var(--gold);
}

.section-heading a {
  color: var(--blue-deep);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

.card-grid,
.package-results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 24px;
}

.content-card,
.package-card {
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.content-card:hover,
.package-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.content-card-media,
.package-card-media {
  border-radius: 22px 22px 0 0;
}

.content-card-media,
.content-card-media img,
.package-card-media,
.package-card-media img,
.package-card-placeholder {
  height: 280px;
  min-height: 280px;
}

.content-card-media img,
.package-card-media img {
  object-fit: cover;
}

.content-card-body,
.package-card-body {
  padding: 27px 28px 30px;
}

.content-card h2,
.content-card h3,
.package-card h2 {
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.14;
}

.package-card-media-badge {
  left: 18px;
  bottom: 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 26, 44, 0.84);
  letter-spacing: 0.08em;
}

.chip-list li {
  border-color: #d6d9d1;
  border-radius: 999px;
  color: #53645f;
  background: #f3f2eb;
}

.package-card-footer {
  border-top: 1px solid var(--line);
}

.package-card-footer span:last-child {
  background: var(--ink);
}

.featured-destinations-section .content-card,
.service-category-card {
  border-top: 0;
}

.page-hero {
  max-width: 980px;
  padding: 54px 58px;
  border: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(20, 125, 154, 0.12), transparent 17rem),
    linear-gradient(145deg, #ffffff, #f8f7f2);
  box-shadow: var(--shadow-soft);
}

.page-hero h1,
.detail-hero h1,
.status-panel h1 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  font-weight: 500;
  line-height: 1;
}

.page-hero::after {
  right: auto;
  left: 58px;
  width: 84px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
}

.page-hero-split {
  display: grid;
  max-width: none;
  min-height: 560px;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: var(--navy-dark);
  border-radius: 30px;
}

.page-hero-split::after {
  display: none;
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 7vw, 92px);
}

.page-hero-split h1,
.page-hero-split p {
  color: var(--surface);
}

.page-hero-split h1 {
  max-width: 9ch;
}

.page-hero-split .eyebrow {
  color: #e9c880;
}

.page-hero-split .button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--surface);
}

.page-hero-media {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

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

.service-categories-section .card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  overflow: visible;
  background: transparent;
}

.service-category-card {
  position: relative;
  display: flex;
  min-height: 225px;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(16, 38, 63, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 110% 115%, rgba(20, 125, 154, 0.13), transparent 11rem),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-subtle);
}

.service-category-card:hover {
  border-color: rgba(20, 125, 154, 0.22);
  box-shadow: var(--shadow-soft);
  transform: none;
}

.service-category-card::after {
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(20, 125, 154, 0.16);
  border-radius: 50%;
  content: "";
}

.service-category-card:first-child {
  border-color: transparent;
  color: #dbe6ea;
  background:
    radial-gradient(circle at 110% 115%, rgba(196, 154, 69, 0.28), transparent 12rem),
    linear-gradient(145deg, #071a2c, #123852);
}

.service-category-card:first-child h2,
.service-category-card:first-child h2 a,
.service-category-card:first-child p {
  color: var(--surface);
}

.service-category-card > .eyebrow {
  align-self: flex-start;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--blue-soft);
}

.service-category-card:first-child > .eyebrow {
  color: #f2d38d;
  background: rgba(255, 255, 255, 0.08);
}

.service-category-card h2 a {
  text-decoration: none;
}

.service-category-card h2 a::after {
  color: var(--gold);
  content: "  ↗";
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72em;
}

.filter-panel,
.form-panel,
.contact-panel,
.empty-state,
.status-panel {
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-subtle);
}

.page-shell > .page-hero + .empty-state,
.page-shell > .page-hero + .contact-panel {
  width: min(980px, 100%);
  margin-top: 44px;
  margin-left: 0;
}

.contact-panel::before,
.empty-state::before,
.status-panel::before {
  top: 36px;
  bottom: auto;
  left: 0;
  width: 4px;
  height: 68px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--gold), var(--blue));
}

.package-filter-panel {
  margin-top: 48px;
  padding: 28px 32px 32px;
}

.package-filter-panel::before {
  height: 2px;
  background: var(--gold);
}

.filter-form {
  gap: 16px;
}

.form-group-card {
  padding: 8px 26px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.form-group-card + .form-group-card {
  border-left: 1px solid var(--line);
}

.form-group-card-wide {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  border-left: 0 !important;
}

input,
select,
textarea {
  border: 1px solid #cbd2ce;
  border-radius: 3px;
  background: #fbfcfa;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(20, 125, 154, 0.1);
}

.request-context {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  border-left: 3px solid var(--gold);
  background: #f5f1e8;
}

.is-hidden {
  display: none !important;
}

.detail-hero {
  overflow: hidden;
  grid-template-columns: 1.16fr 0.84fr;
  border-radius: 2px 30px 2px 2px;
  background: var(--navy-dark);
  box-shadow: var(--shadow);
}

.detail-hero-copy {
  padding: clamp(46px, 6vw, 78px);
}

.detail-hero-copy h1,
.detail-hero-copy p,
.detail-hero-copy dt,
.detail-hero-copy dd {
  color: var(--surface);
}

.detail-hero-copy .eyebrow {
  color: #e9c880;
}

.detail-hero-media {
  min-height: 610px;
}

.detail-hero-media img {
  border-radius: 0;
}

.detail-facts {
  border-color: rgba(255, 255, 255, 0.18);
}

.detail-anchor-nav {
  top: 94px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.detail-content-grid {
  gap: 46px;
}

.detail-section {
  padding: 36px;
  border: 0;
  border-radius: 2px 18px 2px 2px;
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

.detail-action-panel {
  top: 118px;
  padding: 32px;
  border: 0;
  border-top: 3px solid var(--gold);
  border-radius: 2px 18px 2px 2px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.price-option-card {
  border: 0;
  border-left: 3px solid var(--gold);
  border-radius: 0;
  background: #f5f5f0;
  box-shadow: none;
}

.timeline-item {
  border: 0;
  border-left: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.timeline-item::before {
  border-color: var(--surface);
  background: var(--gold);
}

.detail-info-panel {
  border: 0;
  border-top: 2px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.destination-hero {
  max-width: none;
  padding: 0;
  overflow: hidden;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--navy-dark);
}

.destination-hero > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 76px);
}

.destination-hero h1,
.destination-hero p {
  color: var(--surface);
}

.destination-hero .eyebrow {
  color: #e9c880;
}

.destination-hero-media {
  min-height: 540px;
  border-radius: 0;
}

.site-footer {
  padding: 76px 32px 58px;
  border-top: 0;
  color: #c6d1d6;
  background: var(--navy-dark);
}

.site-footer-inner {
  width: min(1280px, 100%);
  grid-template-columns: 1.45fr 0.7fr 1fr;
  gap: 70px;
}

.site-footer .site-brand-text,
.site-footer h2,
.site-footer a {
  color: var(--surface);
}

.site-footer h2 {
  color: #e9c880;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer-brand p {
  max-width: 48ch;
}

.site-footer-signoff {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #e9c880 !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem !important;
}

.site-footer-social a {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1080px) {
  .site-header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .site-header-actions,
  .site-nav {
    width: 100%;
  }

  .site-header-actions {
    align-items: flex-start;
  }

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

  .page-hero-split,
  .detail-hero,
  .destination-hero {
    grid-template-columns: 1fr 1fr;
  }

  .journey-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    padding: 0 18px;
  }

  .site-header-actions {
    gap: 10px;
    flex-direction: column;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav .site-nav-cta {
    margin-left: 0;
  }

  .language-switcher {
    padding-left: 0;
    border-left: 0;
  }

  .page-shell,
  .page-shell-wide {
    width: min(100% - 30px, 1280px);
    padding: 30px 0 68px;
  }

  .hero-carousel,
  .home-page .hero-carousel,
  .package-browse-page .hero-carousel {
    min-height: 590px;
    border-radius: 2px 20px 2px 2px;
  }

  .hero-carousel-overlay {
    width: calc(100% - 66px);
    margin-left: 32px;
  }

  .hero-carousel h1 {
    font-size: 3rem;
  }

  .hero-carousel-control {
    top: auto;
    bottom: 26px;
    transform: none;
  }

  .hero-carousel-control-prev {
    left: 25px;
  }

  .hero-carousel-control-next {
    left: 78px;
    right: auto;
  }

  .hero-carousel-dots {
    right: 25px;
    bottom: 46px;
  }

  .journey-strip {
    width: calc(100% - 20px);
    margin: 20px auto 64px;
    padding: 28px;
  }

  .journey-steps,
  .card-grid,
  .package-results-grid,
  .service-categories-section .card-grid,
  .page-hero-split,
  .detail-hero,
  .destination-hero,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .page-hero-copy,
  .page-hero,
  .detail-hero-copy {
    padding: 38px 30px;
  }

  .page-hero-media,
  .detail-hero-media,
  .destination-hero-media {
    min-height: 340px;
    order: -1;
  }

  .content-card-media,
  .content-card-media img,
  .package-card-media,
  .package-card-media img,
  .package-card-placeholder {
    height: 250px;
    min-height: 250px;
  }

  .form-group-card + .form-group-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .detail-section,
  .detail-action-panel,
  .form-panel,
  .filter-panel,
  .contact-panel,
  .empty-state,
  .status-panel {
    padding: 27px;
  }

  .page-shell > .page-hero + .empty-state,
  .page-shell > .page-hero + .contact-panel {
    width: 100%;
    margin-top: 28px;
  }
}
