@import url("https://cdn.jsdelivr.net/npm/@fontsource-variable/manrope@5.0.18/index.css");
@import url("https://cdn.jsdelivr.net/npm/@fontsource/prata@5.0.15/400.css");

:root {
  --new-bg: #f5efe3;
  --new-surface: #f9f3ea;
  --new-surface-strong: rgba(249, 243, 234, 0.88);
  --new-border: rgba(15, 48, 87, 0.12);
  --new-border-strong: rgba(15, 48, 87, 0.18);
  --new-ink: #182635;
  --new-ink-soft: #445466;
  --new-brand: #12355f;
  --new-brand-strong: #0c2848;
  --new-accent: #db7b52;
  --new-accent-strong: #c6653b;
  --new-focus: #b65e37;
  --new-focus-ring: rgba(182, 94, 55, 0.34);
  --new-shadow: 0 28px 60px rgba(17, 34, 53, 0.12);
  --new-shadow-soft: 0 16px 34px rgba(17, 34, 53, 0.08);
  --new-radius: 28px;
  --new-radius-small: 18px;
  --new-max: 1240px;
  --new-reading-measure: 65ch;
  --new-touch-target: 44px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(219, 123, 82, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(18, 53, 95, 0.12), transparent 32%),
    linear-gradient(180deg, #fbf7f1 0%, var(--new-bg) 46%, #f9f5ee 100%);
  color: var(--new-ink);
  font-family: "Manrope Variable", "Manrope", "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.new-page-dark {
  background:
    radial-gradient(circle at top left, rgba(219, 123, 82, 0.14), transparent 26%),
    linear-gradient(180deg, #0b2037 0%, #0f2d4d 40%, #13395f 100%);
  color: #eff4fa;
}

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

a {
  color: inherit;
  text-underline-offset: 0.14em;
}

p {
  margin: 0;
  color: var(--new-ink-soft);
  font-size: clamp(1rem, 0.98rem + 0.18vw, 1.08rem);
  max-width: var(--new-reading-measure);
}

body.new-page-dark p,
.new-section-dark p,
.new-section-dark-soft p,
.new-hero-panel-dark p,
.new-editorial-card-dark p,
.new-service-card-dark p,
.new-footer-dark p {
  color: rgba(239, 244, 250, 0.82);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--new-ink);
  font-family: "Prata", "Georgia", serif;
  font-weight: 400;
  line-height: 1.05;
  text-wrap: balance;
}

body.new-page-dark h1,
body.new-page-dark h2,
body.new-page-dark h3,
.new-section-dark h2,
.new-section-dark-soft h2,
.new-section-dark h3,
.new-section-dark-soft h3,
.new-hero-panel-dark strong,
.new-footer-dark a,
.new-footer-dark p {
  color: #f7efe5;
}

h1 {
  font-size: clamp(2.75rem, 1.9rem + 3.7vw, 5.35rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 1.45rem + 1.95vw, 3.4rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.25rem, 1.08rem + 0.55vw, 1.65rem);
  letter-spacing: -0.02em;
}

ul {
  margin: 0;
  padding: 0;
}

.new-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 3000;
  min-height: var(--new-touch-target);
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  background: var(--new-surface);
  border: 1px solid var(--new-border-strong);
  border-radius: 12px;
  color: var(--new-brand);
  text-decoration: none;
  box-shadow: var(--new-shadow-soft);
}

.new-skip-link:focus {
  left: 16px;
  top: 16px;
}

:focus-visible {
  outline: 3px solid var(--new-focus-ring);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  box-shadow: 0 0 0 4px rgba(249, 243, 234, 0.92);
}

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

.new-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  padding-top: 14px;
}

/* External widgets open fixed overlays near the viewport top.
   Keep the header non-sticky on pure widget pages so their close controls stay clickable. */
.new-widget-page .new-header {
  position: relative;
  z-index: 20;
}

.new-header.is-scrolled .new-navbar {
  box-shadow: 0 18px 30px rgba(16, 32, 49, 0.16);
  background: rgba(255, 248, 239, 0.94);
}

body.new-page-dark .new-header.is-scrolled .new-navbar {
  background: rgba(10, 29, 49, 0.92);
}

.new-navbar {
  min-height: 78px;
  padding: 10px 0;
  margin: 0 14px;
  border: 1px solid var(--new-border);
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.82);
  backdrop-filter: blur(16px);
  transition: background-color 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

body.new-page-dark .new-navbar {
  background: rgba(252, 246, 238, 0.12);
  border-color: rgba(247, 239, 229, 0.16);
}

body.new-page-dark .new-brand-logo {
  filter: brightness(0) invert(1);
}

.new-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.new-brand-logo {
  width: clamp(138px, 15vw, 176px);
  height: auto;
  object-fit: contain;
}

.new-nav-links {
  gap: 6px;
}

.new-nav-links .nav-link {
  min-height: var(--new-touch-target);
  display: inline-flex;
  align-items: center;
  color: var(--new-ink-soft);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px !important;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

body.new-page-dark .new-nav-links .nav-link {
  color: rgba(247, 239, 229, 0.8);
}

.new-nav-links .nav-link:hover,
.new-nav-links .nav-link:focus-visible,
.new-nav-links .nav-link.is-active {
  background: rgba(18, 53, 95, 0.08);
  color: var(--new-brand);
}

body.new-page-dark .new-nav-links .nav-link:hover,
body.new-page-dark .new-nav-links .nav-link:focus-visible,
body.new-page-dark .new-nav-links .nav-link.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #f7efe5;
}

.new-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.new-navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--new-touch-target);
  height: var(--new-touch-target);
  margin-left: auto;
  border-radius: 999px;
  border: 1px solid var(--new-border-strong);
  background: rgba(249, 243, 234, 0.64);
  color: var(--new-brand);
}

.new-navbar-toggler:focus {
  box-shadow: none;
}

body.new-page-dark .new-navbar-toggler {
  background: rgba(255, 255, 255, 0.08);
  color: #f7efe5;
  border-color: rgba(255, 255, 255, 0.18);
}

.new-navbar-toggler .navbar-toggler-icon {
  width: 18px;
  height: 18px;
  background-image: none;
  position: relative;
}

.new-navbar-toggler .navbar-toggler-icon,
.new-navbar-toggler .navbar-toggler-icon::before,
.new-navbar-toggler .navbar-toggler-icon::after {
  display: inline-block;
  border-top: 2px solid currentColor;
}

.new-navbar-toggler .navbar-toggler-icon::before,
.new-navbar-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
}

.new-navbar-toggler .navbar-toggler-icon::before {
  top: -6px;
}

.new-navbar-toggler .navbar-toggler-icon::after {
  top: 4px;
}

.new-btn {
  min-height: var(--new-touch-target);
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.new-btn:hover,
.new-btn:focus-visible {
  transform: translateY(-1px);
}

.new-btn-primary {
  background: var(--new-accent);
  color: #f9f3ea;
  box-shadow: 0 16px 30px rgba(198, 101, 59, 0.24);
}

.new-btn-primary:hover,
.new-btn-primary:focus-visible {
  background: var(--new-accent-strong);
  color: #f9f3ea;
}

.new-btn-ghost {
  border-color: var(--new-border-strong);
  background: rgba(249, 243, 234, 0.52);
  color: var(--new-brand);
}

body.new-page-dark .new-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #f7efe5;
  border-color: rgba(255, 255, 255, 0.18);
}

.new-btn-light {
  background: rgba(249, 243, 234, 0.14);
  color: #f9f3ea;
  border-color: rgba(255, 255, 255, 0.28);
}

.new-btn-light:hover,
.new-btn-light:focus-visible {
  background: rgba(249, 243, 234, 0.2);
  color: #f9f3ea;
}

.new-hero {
  position: relative;
  overflow: clip;
  padding: 132px 0 76px;
}

.new-hero-compact {
  padding-bottom: 58px;
}

.new-hero-media,
.new-hero-wash {
  position: absolute;
  inset: 0;
}

.new-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  will-change: transform;
}

.new-hero-wash {
  background:
    linear-gradient(90deg, rgba(7, 25, 44, 0.88) 0%, rgba(11, 35, 59, 0.74) 42%, rgba(15, 48, 87, 0.36) 100%),
    linear-gradient(180deg, rgba(4, 16, 28, 0.12) 0%, rgba(4, 16, 28, 0.54) 100%);
}

.new-hero-wash-deep {
  background:
    linear-gradient(90deg, rgba(7, 20, 35, 0.94) 0%, rgba(8, 28, 49, 0.84) 45%, rgba(10, 32, 56, 0.5) 100%),
    linear-gradient(180deg, rgba(4, 16, 28, 0.14) 0%, rgba(4, 16, 28, 0.66) 100%);
}

.new-hero-layout,
.new-inner-hero-layout,
.new-about-layout,
.new-two-column {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}

.new-hero-copy {
  max-width: 760px;
}

.new-hero-copy p,
.new-section-head p,
.new-service-card p,
.new-process-card p,
.new-editorial-card p,
.new-mini-card p,
.new-about-copy p,
.new-cta-copy p,
.new-about-panel p,
.new-hot-tours-empty p {
  max-width: var(--new-reading-measure);
}

.new-hero-copy h1,
.new-hero-copy p,
.new-hero-copy span,
.new-hero-copy li,
.new-hero-copy strong {
  color: #f8efe3;
}

.new-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 16px;
  color: var(--new-accent);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.new-hero .new-eyebrow,
.new-section-dark .new-eyebrow,
.new-section-dark-soft .new-eyebrow {
  color: #f3c3aa;
}

.new-lead {
  max-width: 650px;
  margin-top: 26px;
  font-size: clamp(1.04rem, 1rem + 0.28vw, 1.18rem);
  line-height: 1.72;
}

.new-hero-actions,
.new-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.new-proof-strip,
.new-check-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.new-proof-strip {
  margin-top: 28px;
  max-width: 620px;
}

.new-proof-strip li,
.new-check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.new-proof-strip i,
.new-check-list i,
.new-hero-panel-note i {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.new-hero-panel,
.new-brief-card,
.new-widget-panel,
.new-mini-card,
.new-process-card,
.new-service-card,
.new-editorial-card,
.new-about-panel,
.new-cta-panel,
.new-overview-card,
.new-destination-card {
  border-radius: var(--new-radius);
}

.new-hero-panel,
.new-brief-card,
.new-widget-panel,
.new-mini-card,
.new-process-card,
.new-service-card,
.new-editorial-card,
.new-about-panel,
.new-cta-panel {
  border: 1px solid var(--new-border);
  background: rgba(249, 243, 234, 0.82);
  box-shadow: var(--new-shadow-soft);
}

.new-hero-panel {
  padding: clamp(24px, 3vw, 34px);
  background: rgba(249, 243, 234, 0.92);
}

.new-panel-kicker {
  margin-bottom: 12px;
  color: var(--new-brand);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.new-hero-panel-grid {
  display: grid;
  gap: 18px;
}

.new-hero-panel-grid article + article {
  padding-top: 18px;
  border-top: 1px solid var(--new-border);
}

.new-hero-panel-grid strong,
.new-destination-copy span,
.new-process-card span,
.new-about-panel strong,
.new-footer-links a,
.new-overview-card span {
  color: var(--new-brand);
}

.new-hero-panel-grid strong,
.new-about-panel strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 800;
}

.new-hero-panel-dark .new-panel-kicker,
.new-hero-panel-dark .new-hero-panel-grid strong,
.new-hero-panel-dark .new-hero-panel-note i {
  color: #f7efe5;
}

.new-hero-panel-note {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--new-border);
}

.new-overview {
  position: relative;
  z-index: 2;
  margin-top: -28px;
}

.new-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.new-overview-card {
  position: relative;
  min-height: 198px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  text-decoration: none;
  border: 1px solid var(--new-border);
  background:
    linear-gradient(180deg, rgba(249, 243, 234, 0.96) 0%, rgba(246, 238, 227, 0.92) 100%);
  box-shadow: var(--new-shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.new-overview-card:hover,
.new-overview-card:focus-visible,
.new-destination-card:hover,
.new-destination-card:focus-within,
.new-service-card:hover,
.new-process-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--new-shadow);
  border-color: rgba(18, 53, 95, 0.2);
}

.new-overview-card strong {
  font-family: "Prata", "Georgia", serif;
  font-size: clamp(1.1rem, 1rem + 0.3vw, 1.32rem);
  font-weight: 400;
  color: var(--new-ink);
}

.new-overview-card i {
  width: 18px;
  height: 18px;
  color: var(--new-accent);
}

.new-section {
  padding: clamp(60px, 8vw, 106px) 0;
}

.new-section-surface {
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.42) 0%, rgba(255, 252, 246, 0.86) 100%);
}

.new-section-dark {
  background: rgba(8, 25, 43, 0.26);
}

.new-section-dark-soft {
  background: rgba(247, 239, 229, 0.05);
}

.new-section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.new-section-head p:not(.new-eyebrow) {
  margin-top: 14px;
}

.new-section-head-compact {
  max-width: 680px;
}

.new-section-head-dark h2,
.new-section-head-dark p {
  color: #f7efe5;
}

.new-section-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.new-destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.new-destination-card-large {
  grid-column: span 2;
}

.new-destination-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(15, 48, 87, 0.08);
  box-shadow: var(--new-shadow-soft);
}

.new-destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 23, 38, 0.06) 12%, rgba(8, 23, 38, 0.74) 100%);
}

.new-destination-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 24px;
}

.new-destination-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  min-height: 28px;
  padding: 0 10px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.2);
  color: #fff4ea;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.new-destination-copy h3 {
  color: #fff7ef;
}

.new-widget-panel {
  padding: clamp(20px, 3vw, 28px);
}

.new-hot-tours-shell {
  display: grid;
  gap: 18px;
}

.new-hot-tours-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.new-hot-tours-note {
  max-width: 780px;
  font-size: 0.98rem;
}

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

.new-hot-tour-card,
.new-hot-tours-empty {
  border: 1px solid var(--new-border);
  border-radius: var(--new-radius);
  background: rgba(249, 243, 234, 0.92);
  box-shadow: var(--new-shadow-soft);
}

.new-hot-tour-card {
  overflow: hidden;
  display: grid;
}

.new-hot-tour-media-link {
  display: block;
  line-height: 0;
  text-decoration: none;
}

.new-hot-tour-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(18, 53, 95, 0.1), rgba(219, 123, 82, 0.16));
}

.new-hot-tour-copy {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.new-hot-tour-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.new-hot-tour-pill {
  display: inline-flex;
  min-height: 30px;
  padding: 0 12px;
  align-items: center;
  border-radius: 999px;
  background: rgba(18, 53, 95, 0.08);
  color: var(--new-brand);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.new-hot-tour-rating {
  color: var(--new-accent-strong);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.new-hot-tour-copy h3 {
  font-size: clamp(1.35rem, 1.14rem + 0.6vw, 1.72rem);
}

.new-hot-tour-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.new-hot-tour-meta-row span {
  display: inline-flex;
  min-width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(18, 53, 95, 0.06);
  color: var(--new-ink-soft);
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.new-hot-tour-footer {
  display: grid;
  gap: 16px;
}

.new-hot-tour-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.new-hot-tour-price strong {
  color: var(--new-brand);
  font-size: 1.35rem;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.new-hot-tour-price span {
  color: var(--new-ink-soft);
  font-size: 14px;
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

.new-hot-tour-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.new-hot-tour-actions .new-btn {
  flex: 1 1 210px;
}

.new-hot-tours-empty {
  padding: 28px;
}

.new-hot-tours-empty h3 {
  margin-bottom: 10px;
}

.new-hot-tours-empty p {
  max-width: 56ch;
}

.new-hot-tours-empty .new-hot-tour-actions {
  margin-top: 18px;
}

.new-hot-tour-card-placeholder {
  overflow: hidden;
}

.new-hot-tour-card-placeholder .new-hot-tour-media,
.new-hot-tour-card-placeholder .new-hot-tour-pill,
.new-hot-tour-card-placeholder h3,
.new-hot-tour-card-placeholder p,
.new-hot-tour-card-placeholder .new-hot-tour-meta-row,
.new-hot-tour-card-placeholder .new-hot-tour-footer {
  background:
    linear-gradient(90deg, rgba(18, 53, 95, 0.08), rgba(18, 53, 95, 0.16), rgba(18, 53, 95, 0.08));
  background-size: 200% 100%;
  animation: new-placeholder-shimmer 1.35s linear infinite;
}

.new-hot-tour-card-placeholder .new-hot-tour-copy {
  gap: 16px;
}

.new-hot-tour-card-placeholder .new-hot-tour-pill {
  width: 118px;
  min-height: 30px;
}

.new-hot-tour-card-placeholder h3 {
  width: 82%;
  min-height: 34px;
  border-radius: 14px;
}

.new-hot-tour-card-placeholder p {
  width: 100%;
  min-height: 72px;
  border-radius: 16px;
}

.new-hot-tour-card-placeholder .new-hot-tour-meta-row {
  width: 74%;
  min-height: 34px;
  border-radius: 999px;
}

.new-hot-tour-card-placeholder .new-hot-tour-footer {
  width: 60%;
  min-height: 44px;
  border-radius: 16px;
}

.new-hot-tours-shell[data-state="loaded"] .new-hot-tour-card-placeholder,
.new-hot-tours-shell[data-state="empty"] .new-hot-tour-card-placeholder,
.new-hot-tours-shell[data-state="error"] .new-hot-tour-card-placeholder {
  display: none;
}

@keyframes new-placeholder-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.new-process-grid,
.new-editorial-grid,
.new-service-grid,
.new-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.new-process-card,
.new-editorial-card,
.new-mini-card,
.new-service-card {
  padding: 24px;
}

.new-process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--new-touch-target);
  height: var(--new-touch-target);
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(18, 53, 95, 0.08);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.new-process-card p,
.new-editorial-card p,
.new-service-card p,
.new-mini-card p {
  margin-top: 12px;
}

.new-two-column {
  align-items: start;
}

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

.new-about-layout {
  align-items: start;
}

.new-about-copy {
  display: grid;
  gap: 16px;
}

.new-about-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.new-about-panel article + article {
  padding-top: 18px;
  border-top: 1px solid var(--new-border);
}

.new-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.9fr);
  gap: 24px;
  padding: clamp(26px, 4vw, 40px);
}

.new-cta-panel-compact {
  align-items: center;
}

.new-cta-meta ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.new-cta-meta li,
.new-cta-meta strong,
.new-footer-legal p {
  color: var(--new-ink);
}

.new-cta-meta a,
.new-footer-links a {
  color: var(--new-brand);
  text-decoration: none;
}

.new-cta-meta a:hover,
.new-cta-meta a:focus-visible,
.new-footer-links a:hover,
.new-footer-links a:focus-visible {
  color: var(--new-accent-strong);
}

.new-footer {
  padding: 0 0 28px;
}

.new-footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 22px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(18, 53, 95, 0.1);
}

.new-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.new-footer-logo {
  width: auto;
  height: 38px;
}

.new-footer-brand p {
  font-size: 14px;
}

.new-footer-legal {
  display: grid;
  gap: 3px;
}

.new-footer-legal p {
  font-size: 13px;
  line-height: 1.45;
}

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

.new-footer-links a {
  font-size: 15px;
  font-weight: 700;
}

.new-inner-page .new-hero,
.new-inner-page .new-section:first-of-type {
  padding-top: 120px;
}

.new-inner-hero {
  padding: 126px 0 52px;
}

.new-inner-hero-light {
  background:
    radial-gradient(circle at top right, rgba(219, 123, 82, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.66) 0%, rgba(245, 239, 227, 0.96) 100%);
}

.new-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.new-chip {
  display: inline-flex;
  min-height: var(--new-touch-target);
  padding: 0 14px;
  border-radius: 999px;
  align-items: center;
  background: rgba(18, 53, 95, 0.08);
  color: var(--new-brand);
  font-size: 14px;
  font-weight: 700;
}

.new-chip-row-dark .new-chip,
body.new-page-dark .new-chip {
  background: rgba(255, 255, 255, 0.1);
  color: #fff0e3;
}

.new-brief-card {
  padding: 28px;
}

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

.new-editorial-card h3 {
  min-height: 0;
}

.new-editorial-card-dark,
.new-service-card-dark,
.new-widget-panel-dark,
.new-hero-panel-dark,
.new-cta-panel-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.new-widget-panel-dark {
  padding: 24px;
}

.new-widget-note {
  margin-bottom: 14px;
  font-size: 14px;
  max-width: var(--new-reading-measure);
}

.new-widget-panel-dark .new-widget-note {
  color: rgba(247, 239, 229, 0.78);
}

.new-widget-panel-dark .new-widget-note.is-error {
  color: #ffcebc;
}

.new-infoflot-widget {
  width: 100%;
  min-height: 560px;
}

.new-cruise-widget-shell[data-widget-state="loaded"] .new-widget-note {
  display: none;
}

.reveal {
  transition: transform 0.7s ease, opacity 0.7s ease;
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
}

body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .new-btn,
  .new-overview-card,
  .new-destination-card,
  .new-service-card,
  .new-process-card,
  .reveal,
  .new-navbar,
  .new-hero-media img,
  .new-hot-tour-card-placeholder .new-hot-tour-media,
  .new-hot-tour-card-placeholder .new-hot-tour-pill,
  .new-hot-tour-card-placeholder h3,
  .new-hot-tour-card-placeholder p,
  .new-hot-tour-card-placeholder .new-hot-tour-meta-row,
  .new-hot-tour-card-placeholder .new-hot-tour-footer {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }

  body.js-ready .reveal {
    opacity: 1 !important;
  }
}

@media (max-width: 1199.98px) {
  .new-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .new-hot-tours-grid {
    grid-template-columns: 1fr;
  }

  .new-destination-card-large {
    grid-column: span 2;
  }
}

@media (max-width: 991.98px) {
  .new-navbar {
    margin: 0 10px;
    border-radius: 28px;
  }

  .new-nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .new-nav-actions .new-btn {
    width: 100%;
  }

  .new-hero-layout,
  .new-inner-hero-layout,
  .new-about-layout,
  .new-two-column,
  .new-cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .new-destination-grid,
  .new-process-grid,
  .new-editorial-grid,
  .new-service-grid,
  .new-footer-layout {
    grid-template-columns: 1fr;
  }

  .new-mini-grid {
    grid-template-columns: 1fr;
  }

  .new-section-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .new-hot-tour-actions .new-btn {
    flex-basis: 100%;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: clamp(1.95rem, 9.6vw, 3rem);
    line-height: 1.01;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .new-hero-copy h1,
  .new-inner-hero-layout h1 {
    max-width: 8ch;
  }

  .new-header {
    padding-top: 10px;
  }

  .new-widget-page .new-header {
    position: relative;
  }

  .new-navbar {
    min-height: 72px;
    border-radius: 28px;
  }

  .new-navbar-toggler {
    display: none;
  }

  .new-navbar .navbar-collapse {
    display: block !important;
    flex-basis: 100%;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(18, 53, 95, 0.1);
  }

  body.new-page-dark .new-navbar .navbar-collapse {
    border-top-color: rgba(255, 255, 255, 0.12);
  }

  .new-nav-links {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .new-nav-links::-webkit-scrollbar {
    display: none;
  }

  .new-nav-links .nav-link {
    white-space: nowrap;
  }

  .new-nav-actions {
    display: none;
  }

  .new-hero,
  .new-inner-hero {
    padding-top: 110px;
  }

  .new-overview {
    margin-top: -18px;
  }

  .new-overview-grid,
  .new-destination-grid {
    grid-template-columns: 1fr;
  }

  .new-hot-tours-grid {
    grid-template-columns: 1fr;
  }

  .new-destination-card-large {
    grid-column: auto;
  }

  .new-hero-actions,
  .new-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .new-hero-actions .new-btn,
  .new-cta-actions .new-btn {
    width: 100%;
  }

  .new-hero-panel,
  .new-widget-panel,
  .new-process-card,
  .new-service-card,
  .new-editorial-card,
  .new-about-panel,
  .new-cta-panel,
  .new-overview-card,
  .new-mini-card,
  .new-brief-card {
    border-radius: 22px;
  }

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