/* Cache-busted homepage sections loaded after the main theme stylesheet. */
.home-featured-showcase {
  --home-featured-bg: #fffefa;
  --home-featured-heading: #0b1b33;
  --home-featured-text: #202a3a;
  --home-featured-muted: #667085;
  --home-featured-line: #e8ddcf;
  --home-featured-accent: #6e2b2b;
  --home-featured-occupancy: #7f2d2d;
  --home-featured-date: #8b6f35;
  --home-featured-button-bg: #f6f3ee;
  --home-featured-button-text: #0b1b33;
  --home-featured-top-padding: 34px;
  --home-featured-bottom-padding: 42px;
  --home-featured-tab-size: 22px;
  --home-featured-title-size: 23px;
  --home-featured-summary-size: 16px;
  --home-featured-price-size: 30px;
  background: var(--home-featured-bg);
  padding: var(--home-featured-top-padding) 0 var(--home-featured-bottom-padding);
}

.home-featured-showcase > .container {
  width: min(1180px, calc(100% - 40px));
}

.home-featured-showcase__inner {
  border-top: 1px solid var(--home-featured-line);
}

.home-featured-heading {
  max-width: 720px;
  padding-top: 24px;
}

.home-featured-heading h2 {
  margin: 0;
  color: var(--home-featured-heading);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.home-featured-showcase__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  border-bottom: 1px solid var(--home-featured-line);
}

.home-featured-tabs {
  display: flex;
  align-items: stretch;
  gap: clamp(32px, 4.8vw, 68px);
  min-width: 0;
  overflow-x: auto;
  padding: 0;
  scrollbar-width: none;
}

.home-featured-tabs::-webkit-scrollbar,
.home-featured-track::-webkit-scrollbar {
  display: none;
}

.home-featured-tabs button {
  position: relative;
  flex: 0 0 auto;
  min-height: 76px;
  border: 0;
  background: transparent;
  color: var(--home-featured-heading);
  padding: 0;
  font-size: clamp(17px, var(--home-featured-tab-size), 21px);
  font-weight: 560;
  line-height: 1.1;
  letter-spacing: 0;
  cursor: pointer;
  appearance: none;
  transition: color 180ms ease;
}

.home-featured-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: transparent;
  content: "";
  transition: background 180ms ease;
}

.home-featured-tabs button:hover,
.home-featured-tabs button.is-active {
  color: var(--home-featured-accent);
}

.home-featured-tabs button.is-active::after {
  background: var(--home-featured-accent);
}

.home-featured-tabs button:focus-visible,
.home-featured-controls button:focus-visible,
.home-featured-cta a:focus-visible,
.home-tour-intro__button:focus-visible {
  outline: 2px solid rgba(195, 161, 99, 0.56);
  outline-offset: 4px;
}

.home-featured-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.home-featured-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(11, 27, 51, 0.055);
  color: var(--home-featured-heading);
  padding: 0;
  cursor: pointer;
  appearance: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.home-featured-controls button[disabled] {
  color: var(--home-featured-muted);
  cursor: default;
  opacity: 0.5;
}

.home-featured-controls button:first-child svg {
  transform: rotate(180deg);
}

.home-featured-controls button:not([disabled]):hover {
  background: var(--home-featured-heading);
  color: #fffefa;
  transform: translateY(-1px);
}

.home-featured-controls svg,
.home-featured-cta svg {
  width: 19px;
  height: 19px;
}

.home-featured-panels {
  padding-top: 24px;
}

.home-featured-panel[hidden] {
  display: none;
}

.home-featured-track {
  --home-featured-card-gap: clamp(22px, 2.2vw, 30px);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--home-featured-card-gap) * 3)) / 4);
  gap: var(--home-featured-card-gap);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 4px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.home-featured-card {
  position: relative;
  min-width: 0;
  border-right: 0;
  padding: 0;
  scroll-snap-align: start;
}

.home-featured-card:not(:last-child)::after {
  position: absolute;
  top: 0;
  right: calc(var(--home-featured-card-gap) / -2);
  width: 1px;
  height: 100%;
  background: var(--home-featured-line);
  content: "";
  pointer-events: none;
}

.home-featured-card__media {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1.58 / 1;
  background: rgba(11, 27, 51, 0.06);
}

.home-featured-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.home-featured-card:hover .home-featured-card__media img {
  transform: scale(1.035);
}

.home-featured-card__body {
  padding: 18px 8px 0;
}

.home-featured-card h3 {
  margin: 0;
  color: var(--home-featured-heading);
  font-size: clamp(17px, calc(var(--home-featured-title-size) - 2px), 20px);
  font-weight: 570;
  line-height: 1.24;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-featured-card h3 a:hover {
  color: var(--home-featured-accent);
}

.home-featured-card__summary {
  margin: 11px 0 0;
  color: var(--home-featured-muted);
  font-size: clamp(13px, calc(var(--home-featured-summary-size) - 1px), 15px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0;
}

.home-featured-card__facts {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
  margin-top: 20px;
}

.home-featured-fact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  border-radius: 999px;
  background: rgba(127, 45, 45, 0.065);
  color: var(--home-featured-text);
  padding: 4px 12px 4px 5px;
  font-size: 12px;
  font-weight: 540;
  line-height: 1;
  letter-spacing: 0;
}

.home-featured-fact svg {
  width: 25px;
  height: 25px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: 6px;
  background: #fff;
  flex: 0 0 auto;
}

.home-featured-fact--occupancy {
  background: rgba(127, 45, 45, 0.08);
  background: color-mix(in srgb, var(--home-featured-occupancy) 8%, transparent);
  color: var(--home-featured-occupancy);
}

.home-featured-fact--date {
  background: rgba(195, 161, 99, 0.1);
  background: color-mix(in srgb, var(--home-featured-date) 10%, transparent);
  color: var(--home-featured-date);
}

.home-featured-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 21px;
  color: var(--home-featured-heading);
  letter-spacing: 0;
}

.home-featured-card__price .ezre-price-fallback-note {
  flex-basis: 100%;
  margin-top: 2px;
  color: var(--home-featured-muted);
  font-size: 9.5px;
  line-height: 1.3;
}

.home-featured-card__discount {
  flex-basis: 100%;
  color: var(--home-featured-occupancy);
  font-size: 10px;
  font-weight: 600;
}

.home-featured-card__price del {
  border-radius: 999px;
  background: var(--home-featured-occupancy);
  color: #fff;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 540;
  text-decoration-thickness: 1.5px;
}

.home-featured-card__price strong {
  font-size: clamp(21px, calc(var(--home-featured-price-size) - 4px), 24px);
  font-weight: 610;
  line-height: 1;
  letter-spacing: 0;
}

.home-featured-cta {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.home-featured-cta a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  border: 1px solid rgba(11, 27, 51, 0.12);
  border-radius: 999px;
  background: var(--home-featured-button-bg);
  color: var(--home-featured-button-text);
  padding: 0 26px;
  font-size: 15px;
  font-weight: 560;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.home-featured-cta a::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--home-featured-accent), transparent 46%, var(--home-featured-accent));
  content: "";
  opacity: 0.46;
}

.home-featured-cta a:hover {
  border-color: rgba(11, 27, 51, 0.22);
  background: var(--home-featured-heading);
  color: #fffefa;
  transform: translateY(-1px);
}

.home-tour-intro {
  --home-tour-intro-height: 250px;
  padding: 28px 0 42px;
  background: transparent;
}

.home-tour-intro__inner {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 230px);
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  width: min(1180px, calc(100% - 40px));
  min-height: min(var(--home-tour-intro-height), 250px);
  max-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(195, 161, 99, 0.22);
  border-radius: 8px;
  background-color: transparent;
  background-image:
    linear-gradient(90deg, var(--home-tour-intro-overlay-strong) 0%, var(--home-tour-intro-overlay-strong) 52%, var(--home-tour-intro-overlay-soft) 100%),
    var(--home-tour-intro-image);
  background-position: center, var(--home-tour-intro-position);
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 18px 48px rgba(6, 15, 30, 0.14);
  padding: clamp(24px, 3.1vw, 38px) clamp(28px, 3.8vw, 46px);
}

.home-tour-intro__inner::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    radial-gradient(circle at 86% 50%, rgba(195, 161, 99, 0.16), transparent 26%);
  pointer-events: none;
}

.home-tour-intro__copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: 0;
}

.home-tour-intro__copy::before {
  position: static;
  display: block;
  width: 64px;
  height: 2px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--home-tour-intro-accent);
  content: "";
}

.home-tour-intro__eyebrow {
  margin: 0 0 9px;
  color: var(--home-tour-intro-accent);
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-tour-intro h2 {
  margin: 0;
  color: var(--home-tour-intro-title);
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  font-weight: 650;
  line-height: 1.06;
}

.home-tour-intro__description {
  display: -webkit-box;
  max-width: 650px;
  margin: 11px 0 0;
  overflow: hidden;
  color: var(--home-tour-intro-text);
  font-size: 0.92rem;
  font-weight: 420;
  line-height: 1.48;
  opacity: 0.9;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-tour-intro__action {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}

.home-tour-intro__count {
  display: none !important;
  position: static;
  grid-template-columns: auto;
  place-items: center;
  min-width: 72px;
  min-height: 58px;
  border: 1px solid rgba(195, 161, 99, 0.34);
  border-radius: 18px;
  background: rgba(243, 238, 227, 0.12);
  color: var(--home-tour-intro-title);
  padding: 0 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 30px rgba(6, 15, 30, 0.16);
  backdrop-filter: blur(10px);
}

.home-tour-intro__count strong {
  align-self: center;
  font-size: 1.78rem;
  font-weight: 670;
  line-height: 1;
  letter-spacing: 0;
}

.home-tour-intro__count-kicker,
.home-tour-intro__count-label {
  align-self: center;
  color: inherit;
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.12;
  opacity: 0.72;
}

.home-tour-intro__count-kicker {
  text-transform: uppercase;
}

.home-tour-intro__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 194px;
  min-height: 52px;
  border: 1px solid rgba(195, 161, 99, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 34%),
    var(--home-tour-intro-button);
  color: var(--home-tour-intro-button-text);
  padding: 0 16px 0 22px;
  font-size: 0.9rem;
  font-weight: 650;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 16px 34px rgba(6, 15, 30, 0.22);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.home-tour-intro__button svg {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(243, 238, 227, 0.13);
  padding: 7px;
}

.home-tour-intro__button:hover,
.home-tour-intro__button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 38px rgba(6, 15, 30, 0.28);
}

.home-visa-banner {
  --home-visa-bg: #fffefa;
  --home-visa-panel: #061628;
  --home-visa-panel-alt: #0b1b33;
  --home-visa-title: #fffefa;
  --home-visa-text: #e8ddcf;
  --home-visa-accent: #c3a163;
  --home-visa-button: #7f2d2d;
  --home-visa-button-text: #fffefa;
  --home-visa-counter-bg: #f3eee3;
  --home-visa-counter-text: #0b1b33;
  --home-visa-overlay: rgba(6, 15, 30, 0.7);
  --home-visa-height: 250px;
  --home-visa-top-padding: 20px;
  --home-visa-bottom-padding: 56px;
  background: var(--home-visa-bg);
  padding: var(--home-visa-top-padding) 0 var(--home-visa-bottom-padding);
}

.home-visa-banner__inner {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.home-visa-banner__card {
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 250px);
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  min-height: min(var(--home-visa-height), 250px);
  max-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(195, 161, 99, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--home-visa-panel) 94%, transparent) 0%, color-mix(in srgb, var(--home-visa-panel-alt) 78%, transparent) 48%, color-mix(in srgb, var(--home-visa-overlay) 46%, transparent) 100%),
    var(--home-visa-image);
  background-position: center, var(--home-visa-position);
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--home-visa-title);
  text-decoration: none;
  box-shadow: 0 22px 54px rgba(6, 15, 30, 0.16);
  padding: clamp(24px, 3.1vw, 38px) clamp(28px, 3.8vw, 46px);
}

.home-visa-banner__card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--home-visa-image);
  background-position: var(--home-visa-position);
  background-size: cover;
  content: "";
  opacity: 0;
  transition: filter 220ms ease, transform 220ms ease;
}

.home-visa-banner__card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 46%),
    radial-gradient(circle at 86% 50%, rgba(195, 161, 99, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(195, 161, 99, 0.16), transparent 30%);
  content: "";
  pointer-events: none;
}

.home-visa-banner__card:hover::before {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.025);
}

.home-visa-banner__media {
  display: none;
}

.home-visa-banner__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 10px;
  max-width: 680px;
}

.home-visa-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-self: start;
  color: var(--home-visa-accent);
  font-size: 0.78rem;
  font-weight: 640;
  line-height: 1.2;
}

.home-visa-banner__icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.home-visa-banner__icon::before {
  display: block;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: rotate(-45deg) translate(1px, -1px);
}

.home-visa-banner__content > strong {
  display: block;
  color: var(--home-visa-title);
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  font-weight: 650;
  line-height: 1.02;
}

.home-visa-banner__description {
  display: block;
  max-width: 590px;
  color: var(--home-visa-text);
  font-size: clamp(0.96rem, 1.2vw, 1.06rem);
  font-weight: 420;
  line-height: 1.52;
}

.home-visa-banner__action {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.home-visa-banner__button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  justify-self: start;
  max-width: 100%;
  min-height: 48px;
  margin-top: 6px;
  border: 1px solid rgba(195, 161, 99, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 38%),
    var(--home-visa-button);
  color: var(--home-visa-button-text);
  padding: 0 18px 0 23px;
  font-size: 0.92rem;
  font-weight: 640;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 16px 34px rgba(6, 15, 30, 0.22);
  transition: filter 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-visa-banner__button svg {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(243, 238, 227, 0.14);
  padding: 7px;
  transition: transform 180ms ease;
}

.home-visa-banner__card:hover .home-visa-banner__button,
.home-visa-banner__card:focus-visible .home-visa-banner__button {
  filter: brightness(1.07);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 38px rgba(6, 15, 30, 0.28);
}

.home-visa-banner__card:hover .home-visa-banner__button svg {
  transform: translateX(2px);
}

.home-visa-banner__card:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--home-visa-accent) 70%, transparent);
  outline-offset: 4px;
}

.home-promise-section {
  --home-promise-bg: #fffefa;
  --home-promise-card-bg: #fffdf8;
  --home-promise-border: #e8ddcf;
  --home-promise-heading: #0b1b33;
  --home-promise-text: #0b1b33;
  --home-promise-muted: #5b6678;
  --home-promise-icon: #c3a163;
  --home-promise-accent: #c3a163;
  --home-promise-button-bg: #0b1b33;
  --home-promise-button-text: #f3eee3;
  --home-promise-top-padding: 56px;
  --home-promise-bottom-padding: 56px;
  background:
    linear-gradient(180deg, var(--home-promise-bg) 0%, color-mix(in srgb, var(--home-promise-bg) 90%, #ffffff) 100%);
  padding: var(--home-promise-top-padding) 0 var(--home-promise-bottom-padding);
}

.home-promise-section > .container,
.home-promise-section__inner {
  width: min(1180px, calc(100% - 40px));
}

.home-promise-section__inner {
  margin-right: auto;
  margin-left: auto;
}

.home-promise-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.home-promise-heading__eyebrow {
  margin: 0 0 8px;
  color: var(--home-promise-accent);
  font-size: 0.76rem;
  font-weight: 640;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-promise-heading h2 {
  margin: 0;
  color: var(--home-promise-heading);
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  font-weight: 620;
  line-height: 1.12;
  letter-spacing: 0;
}

.home-promise-heading p:not(.home-promise-heading__eyebrow) {
  max-width: 660px;
  margin: 14px 0 0;
  color: var(--home-promise-muted);
  font-size: 0.98rem;
  font-weight: 420;
  line-height: 1.55;
}

.home-promise-grid {
  counter-reset: home-promise-card;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-promise-card {
  position: relative;
  isolation: isolate;
  counter-increment: home-promise-card;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 224px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--home-promise-border) 82%, var(--home-promise-accent));
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), color-mix(in srgb, var(--home-promise-card-bg) 94%, var(--home-promise-accent)) 100%);
  color: var(--home-promise-text);
  padding: 26px 25px 25px;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 42px rgba(6, 15, 30, 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.home-promise-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--home-promise-accent), rgba(195, 161, 99, 0.14));
  content: "";
}

.home-promise-card::after {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 0;
  color: color-mix(in srgb, var(--home-promise-accent) 22%, transparent);
  content: "0" counter(home-promise-card);
  font-size: 2.35rem;
  font-weight: 650;
  line-height: 1;
  pointer-events: none;
  transition: color 180ms ease, transform 180ms ease;
}

.home-promise-card:hover {
  border-color: color-mix(in srgb, var(--home-promise-accent) 62%, var(--home-promise-border));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 22px 52px rgba(6, 15, 30, 0.08);
  transform: translateY(-2px);
}

.home-promise-card:hover::after {
  color: color-mix(in srgb, var(--home-promise-accent) 34%, transparent);
  transform: translateY(-2px);
}

.home-promise-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--home-promise-accent) 34%, var(--home-promise-border));
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), color-mix(in srgb, var(--home-promise-accent) 13%, #f6f3ee));
  color: var(--home-promise-icon);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 22px rgba(6, 15, 30, 0.055);
}

.home-promise-card__icon .strip-icon {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-promise-card__body {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: auto;
  padding-top: 42px;
}

.home-promise-card strong {
  display: block;
  color: var(--home-promise-text);
  font-size: 1.08rem;
  font-weight: 610;
  line-height: 1.22;
  letter-spacing: 0;
}

.home-promise-card__body > span {
  display: block;
  margin-top: 12px;
  color: var(--home-promise-muted);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.home-promise-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.home-promise-cta a {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--home-promise-accent) 54%, transparent);
  border-radius: 999px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--home-promise-accent) 20%, transparent), transparent 34%),
    linear-gradient(135deg, color-mix(in srgb, var(--home-promise-button-bg) 92%, #0b1b33), color-mix(in srgb, var(--home-promise-button-bg) 68%, #0b1b33) 100%);
  color: var(--home-promise-button-text);
  padding: 0 14px 0 24px;
  font-size: 0.92rem;
  font-weight: 620;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 36px rgba(6, 15, 30, 0.18);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-promise-cta a::before {
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), transparent 48%);
  content: "";
  pointer-events: none;
}

.home-promise-cta a:hover {
  border-color: color-mix(in srgb, var(--home-promise-accent) 72%, transparent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--home-promise-accent) 24%, transparent), transparent 34%),
    linear-gradient(135deg, color-mix(in srgb, var(--home-promise-button-bg) 78%, #0b1b33), color-mix(in srgb, var(--home-promise-button-bg) 58%, #7f2d2d) 100%);
  color: #fffefa;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 42px rgba(6, 15, 30, 0.24);
}

.home-promise-card:focus-visible,
.home-promise-cta a:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--home-promise-accent) 58%, transparent);
  outline-offset: 4px;
}

.home-promise-cta svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--home-promise-accent);
  color: #0b1b33;
  padding: 8px;
  transition: transform 180ms ease;
}

.home-promise-cta a > span {
  position: relative;
  z-index: 1;
}

.home-promise-cta a:hover svg {
  transform: translateX(2px);
}

.home-route-showcase {
  --home-route-bg: #fffefa;
  --home-route-heading: #0b1b33;
  --home-route-text: #667085;
  --home-route-accent: #c3a163;
  --home-route-card-text: #fffefa;
  --home-route-card-muted: #f3eee3;
  --home-route-overlay: rgba(6, 15, 30, 0.68);
  --home-route-overlay-soft: rgba(6, 15, 30, 0.28);
  --home-route-top-padding: 48px;
  --home-route-bottom-padding: 58px;
  background: var(--home-route-bg);
  padding: var(--home-route-top-padding) 0 var(--home-route-bottom-padding);
}

.home-route-showcase__inner {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.home-route-showcase__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  margin-bottom: 22px;
}

.home-route-showcase__eyebrow {
  margin: 0 0 8px;
  color: var(--home-route-accent);
  font-size: 0.72rem;
  font-weight: 640;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-route-showcase h2 {
  max-width: 680px;
  margin: 0;
  color: var(--home-route-heading);
  font-size: clamp(1.7rem, 2.45vw, 2.3rem);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: 0;
}

.home-route-showcase__summary {
  display: grid;
  justify-items: end;
  gap: 18px;
}

.home-route-showcase__summary p {
  margin: 0;
  color: var(--home-route-text);
  font-size: 0.98rem;
  font-weight: 410;
  line-height: 1.55;
}

.home-route-controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.home-route-controls button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(195, 161, 99, 0.14);
  border-radius: 999px;
  background: rgba(11, 27, 51, 0.055);
  color: var(--home-route-heading);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.home-route-controls button:first-child svg {
  transform: rotate(180deg);
}

.home-route-controls button:hover:not(:disabled) {
  background: var(--home-route-accent);
  color: #060f1e;
  transform: translateY(-1px);
}

.home-route-controls button:disabled {
  cursor: default;
  opacity: 0.36;
}

.home-route-controls svg {
  width: 18px;
  height: 18px;
}

.home-route-grid {
  --home-route-card-gap: 16px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--home-route-card-gap) * 3)) / 4);
  gap: var(--home-route-card-gap);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-route-grid::-webkit-scrollbar {
  display: none;
}

.home-route-card {
  --home-route-image: url("../tour-balkan.png");
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(195, 161, 99, 0.24);
  border-radius: 8px;
  background: #0b1b33;
  color: var(--home-route-card-text);
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(6, 15, 30, 0.12);
  scroll-snap-align: start;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-route-card::before,
.home-route-card::after {
  position: absolute;
  inset: 0;
  content: "";
}

.home-route-card::before {
  z-index: -2;
  background-image: var(--home-route-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.home-route-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, var(--home-route-overlay-soft) 0%, rgba(6, 15, 30, 0.18) 38%, var(--home-route-overlay) 100%),
    linear-gradient(135deg, rgba(195, 161, 99, 0.08), transparent 46%);
}

.home-route-card__media {
  display: none;
}

.home-route-card__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: inherit;
  padding: 22px;
}

.home-route-card__badge {
  align-self: flex-start;
  margin-bottom: auto;
  border: 1px solid rgba(195, 161, 99, 0.34);
  border-radius: 999px;
  background: rgba(6, 15, 30, 0.24);
  color: var(--home-route-card-muted);
  padding: 7px 11px;
  font-size: 0.72rem;
  font-weight: 540;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.home-route-card strong {
  display: block;
  margin-top: auto;
  color: var(--home-route-card-text);
  font-size: clamp(1.18rem, 1.48vw, 1.48rem);
  font-weight: 620;
  line-height: 1.12;
  letter-spacing: 0;
}

.home-route-card__subtitle {
  display: block;
  margin-top: 10px;
  color: var(--home-route-card-muted);
  font-size: 0.84rem;
  font-weight: 410;
  line-height: 1.45;
  opacity: 0.88;
}

.home-route-card__foot {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--home-route-accent);
  font-size: 0.86rem;
  font-weight: 620;
  line-height: 1;
}

.home-route-card__foot svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.home-route-card:hover {
  border-color: rgba(195, 161, 99, 0.52);
  box-shadow: 0 24px 54px rgba(6, 15, 30, 0.18);
  transform: translateY(-2px);
}

.home-route-card:hover::before {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.055);
}

.home-route-card:hover .home-route-card__foot svg {
  transform: translateX(3px);
}

.home-route-card:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--home-route-accent) 64%, transparent);
  outline-offset: 4px;
}

.home-last-call {
  --home-last-call-bg: #fffefa;
  --home-last-call-panel: #060f1e;
  --home-last-call-panel-alt: #0b1b33;
  --home-last-call-heading: #0b1b33;
  --home-last-call-text: #667085;
  --home-last-call-panel-text: #f3eee3;
  --home-last-call-muted: #b8c0ce;
  --home-last-call-accent: #c3a163;
  --home-last-call-status: #c3a163;
  --home-last-call-action: #c3a163;
  --home-last-call-line: #253248;
  --home-last-call-top-padding: 58px;
  --home-last-call-bottom-padding: 68px;
  --home-last-call-visible: 4;
  --home-last-call-duration: 28000ms;
  background: var(--home-last-call-bg);
  padding: var(--home-last-call-top-padding) 0 var(--home-last-call-bottom-padding);
}

.home-last-call__inner {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.home-last-call__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  align-items: end;
  gap: 30px;
  margin-bottom: 26px;
}

.home-last-call__eyebrow {
  margin: 0 0 8px;
  color: var(--home-last-call-accent);
  font-size: 0.72rem;
  font-weight: 640;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-last-call h2 {
  margin: 0;
  color: var(--home-last-call-heading);
  font-size: clamp(1.7rem, 2.45vw, 2.3rem);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: 0;
}

.home-last-call__heading p:not(.home-last-call__eyebrow) {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--home-last-call-text);
  font-size: 0.98rem;
  font-weight: 410;
  line-height: 1.55;
}

.home-last-call__button {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border: 1px solid rgba(11, 27, 51, 0.12);
  border-radius: 999px;
  background: #f6f3ee;
  color: var(--home-last-call-heading);
  padding: 0 24px;
  font-size: 0.93rem;
  font-weight: 580;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-last-call__button::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--home-last-call-accent), transparent 46%, var(--home-last-call-accent));
  content: "";
  opacity: 0.38;
}

.home-last-call__button:hover {
  border-color: rgba(11, 27, 51, 0.22);
  background: var(--home-last-call-heading);
  color: #fffefa;
  transform: translateY(-1px);
}

.home-last-call__button svg {
  width: 18px;
  height: 18px;
}

.home-last-call__board {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(195, 161, 99, 0.22);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% -10%, rgba(195, 161, 99, 0.22), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(127, 45, 45, 0.24), transparent 30%),
    linear-gradient(135deg, var(--home-last-call-panel-alt), var(--home-last-call-panel));
  box-shadow: 0 22px 54px rgba(6, 15, 30, 0.14);
}

.home-last-call__board::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(243, 238, 227, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 238, 227, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  opacity: 0.55;
}

.home-last-call__head,
.home-last-call__row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 190px 110px;
  align-items: center;
  gap: 20px;
}

.home-last-call__head {
  min-height: 48px;
  background: rgba(6, 15, 30, 0.58);
  color: var(--home-last-call-muted);
  padding: 0 26px;
  font-size: 0.72rem;
  font-weight: 620;
  letter-spacing: 0.035em;
  text-transform: none;
}

.home-last-call__viewport {
  max-height: calc(var(--home-last-call-visible) * 82px);
  overflow: hidden;
}

.home-last-call__rail {
  display: grid;
}

.home-last-call__board.is-rolling .home-last-call__rail {
  animation: ezre-last-call-roll var(--home-last-call-duration) linear infinite;
}

.home-last-call__board.is-rolling:hover .home-last-call__rail {
  animation-play-state: paused;
}

.home-last-call__row {
  min-height: 82px;
  border-top: 1px solid var(--home-last-call-line);
  background: rgba(6, 15, 30, 0.46);
  color: var(--home-last-call-panel-text);
  padding: 0 26px;
  text-decoration: none;
  transition: background 180ms ease;
}

.home-last-call__row:hover {
  background: rgba(11, 27, 51, 0.84);
}

.home-last-call__date,
.home-last-call__status,
.home-last-call__action,
.home-last-call__tour {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.home-last-call__date strong,
.home-last-call__status strong,
.home-last-call__tour strong {
  color: var(--home-last-call-panel-text);
  font-size: 0.96rem;
  font-weight: 640;
  line-height: 1.2;
  letter-spacing: 0;
}

.home-last-call__date strong {
  color: var(--home-last-call-accent);
  font-size: 0.96rem;
}

.home-last-call__date-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.home-last-call__date em {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 24px;
  border: 1px solid rgba(195, 161, 99, 0.2);
  border-radius: 999px;
  background: rgba(195, 161, 99, 0.08);
  color: var(--home-last-call-panel-text);
  padding: 0 9px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 520;
  line-height: 1;
}

.home-last-call__tour {
  align-items: center;
}

.home-last-call__tour strong {
  display: block;
  white-space: normal;
}

.home-last-call__status strong {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 32px;
  border: 1px solid rgba(195, 161, 99, 0.24);
  border-radius: 999px;
  background: rgba(243, 238, 227, 0.07);
  color: var(--home-last-call-status);
  padding: 0 11px;
  font-size: 0.82rem;
}

.home-last-call__action {
  justify-items: end;
  text-align: right;
}

.home-last-call__action small {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--home-last-call-panel-text);
  font-size: 0.82rem;
  font-weight: 620;
  line-height: 1.2;
}

.home-last-call__action small svg {
  width: 15px;
  height: 15px;
}

.home-last-call__empty {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 36px;
  text-align: center;
}

.home-last-call__empty strong {
  color: var(--home-last-call-panel-text);
  font-size: 1.18rem;
  font-weight: 620;
}

.home-last-call__empty span {
  max-width: 520px;
  margin-top: 10px;
  color: var(--home-last-call-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.home-last-call__button:focus-visible,
.home-last-call__row:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--home-last-call-accent) 64%, transparent);
  outline-offset: 4px;
}

.home-blog-section {
  --home-blog-bg: #fffefa;
  --home-blog-heading: #0b1b33;
  --home-blog-text: #667085;
  --home-blog-muted: #8a97ab;
  --home-blog-accent: #c3a163;
  --home-blog-card-bg: #ffffff;
  --home-blog-card-border: #e8ddcf;
  --home-blog-button-bg: #f6f3ee;
  --home-blog-button-text: #0b1b33;
  --home-blog-top-padding: 54px;
  --home-blog-bottom-padding: 70px;
  --ezre-home-cta-bg: var(--home-blog-button-bg);
  --ezre-home-cta-text: var(--home-blog-button-text);
  background: var(--home-blog-bg);
  padding: var(--home-blog-top-padding) 0 var(--home-blog-bottom-padding);
}

.home-blog-section__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.home-blog-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "copy button"
    "tabs button";
  align-items: end;
  column-gap: clamp(24px, 4vw, 52px);
  row-gap: clamp(22px, 2vw, 28px);
  margin-bottom: 28px;
}

.home-blog-section__copy {
  grid-area: copy;
  max-width: 660px;
}

.home-blog-section__eyebrow {
  margin: 0 0 8px;
  color: var(--home-blog-accent);
  font-size: 0.72rem;
  font-weight: 640;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-blog-section h2 {
  margin: 0;
  color: var(--home-blog-heading);
  font-size: clamp(1.7rem, 2.45vw, 2.3rem);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: 0;
}

.home-blog-section__copy p:not(.home-blog-section__eyebrow) {
  max-width: 600px;
  margin: 12px 0 0;
  color: var(--home-blog-text);
  font-size: 0.98rem;
  font-weight: 410;
  line-height: 1.55;
  letter-spacing: 0;
}

.home-blog-toolbar {
  grid-area: tabs;
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 0;
  min-width: 0;
}

.home-blog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-blog-tab {
  min-height: 44px;
  border: 1px solid var(--home-blog-card-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--home-blog-heading);
  padding: 0 19px;
  font: inherit;
  font-size: 0.91rem;
  font-weight: 560;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.home-blog-tab:hover,
.home-blog-tab.is-active {
  border-color: #0b1b33;
  background: #0b1b33;
  color: #fffefa;
}

.home-blog-section__button {
  grid-area: button;
  justify-self: end;
  align-self: end;
}

.home-blog-panels {
  min-width: 0;
}

.home-blog-panel[hidden] {
  display: none;
}

.home-blog-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
}

.home-blog-showcase.is-single {
  max-width: 760px;
  grid-template-columns: minmax(0, 1fr);
}

.home-blog-featured-card,
.home-blog-side-card {
  min-width: 0;
}

.home-blog-featured-card a,
.home-blog-side-card a {
  display: grid;
  height: 100%;
  border: 1px solid var(--home-blog-card-border);
  border-radius: 8px;
  background: var(--home-blog-card-bg);
  color: inherit;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.home-blog-featured-card a:hover,
.home-blog-side-card a:hover {
  border-color: color-mix(in srgb, var(--home-blog-accent) 54%, var(--home-blog-card-border));
  background: #fffdfa;
}

.home-blog-featured-card__image,
.home-blog-side-card__media {
  display: block;
  background:
    linear-gradient(180deg, rgba(6, 15, 30, 0.03), rgba(6, 15, 30, 0.1)),
    var(--home-blog-featured-image, var(--home-blog-card-image, linear-gradient(135deg, rgba(195, 161, 99, 0.22), rgba(11, 27, 51, 0.76))));
  background-position: center;
  background-size: cover;
}

.home-blog-featured-card__image {
  aspect-ratio: 1.5 / 1;
}

.home-blog-featured-card__body {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: clamp(18px, 2vw, 24px);
}

.home-blog-side-list {
  display: grid;
  gap: 14px;
}

.home-blog-side-card a {
  grid-template-columns: minmax(0, 1fr) 164px;
  gap: 18px;
  align-items: stretch;
  padding: 16px;
}

.home-blog-side-card__body {
  display: grid;
  align-content: center;
  gap: 9px;
  min-width: 0;
}

.home-blog-side-card__media {
  min-height: 136px;
  border-radius: 7px;
}

.home-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--home-blog-muted);
  font-size: 0.76rem;
  font-weight: 620;
  line-height: 1.3;
  letter-spacing: 0;
}

.home-blog-card__meta span {
  color: var(--home-blog-accent);
}

.home-blog-card__meta span::after {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 0 2px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--home-blog-muted) 52%, transparent);
  content: "";
}

.home-blog-card__meta span:last-child::after {
  display: none;
}

.home-blog-featured-card strong,
.home-blog-side-card strong {
  display: block;
  color: var(--home-blog-heading);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-blog-featured-card strong {
  max-width: 740px;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.home-blog-side-card strong {
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.home-blog-featured-card__excerpt,
.home-blog-side-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  color: var(--home-blog-text);
  font-size: 0.91rem;
  font-weight: 440;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-blog-side-card__excerpt {
  font-size: 0.85rem;
  line-height: 1.48;
}

.home-blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--home-blog-heading);
  font-size: 0.84rem;
  font-weight: 620;
  line-height: 1;
  letter-spacing: 0;
}

.home-blog-card__link svg {
  width: 17px;
  height: 17px;
  color: currentColor;
  transition: transform 180ms ease;
}

.home-blog-featured-card:hover .home-blog-card__link,
.home-blog-side-card:hover .home-blog-card__link {
  color: var(--home-blog-accent);
}

.home-blog-featured-card:hover .home-blog-card__link svg,
.home-blog-side-card:hover .home-blog-card__link svg {
  transform: translateX(2px);
}

.home-blog-empty {
  display: grid;
  justify-items: center;
  gap: 8px;
  border: 1px solid var(--home-blog-card-border);
  border-radius: 8px;
  background: #ffffff;
  padding: 34px 24px;
  color: var(--home-blog-text);
  text-align: center;
}

.home-blog-empty strong {
  color: var(--home-blog-heading);
  font-size: 1rem;
  font-weight: 620;
}

.home-blog-empty span {
  max-width: 540px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.home-blog-section__button:focus-visible,
.home-blog-tab:focus-visible,
.home-blog-featured-card a:focus-visible,
.home-blog-side-card a:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--home-blog-accent) 64%, transparent);
  outline-offset: 4px;
}

.home-stats-section {
  --home-stats-bg: #fffefa;
  --home-stats-card-bg: #ffffff;
  --home-stats-card-border: #e8ddcf;
  --home-stats-heading: #0b1b33;
  --home-stats-text: #667085;
  --home-stats-accent: #c3a163;
  --home-stats-icon: #7f2d2d;
  --home-stats-top-padding: 18px;
  --home-stats-bottom-padding: 74px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--home-stats-bg) 92%, #ffffff) 0%, var(--home-stats-bg) 100%);
  padding: var(--home-stats-top-padding) 0 var(--home-stats-bottom-padding);
}

.home-stats-section__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.home-stats-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.62fr);
  align-items: center;
  gap: clamp(20px, 4vw, 58px);
  margin-bottom: 22px;
}

.home-stats-section__copy {
  min-width: 0;
}

.home-stats-section__eyebrow {
  margin: 0 0 8px;
  color: var(--home-stats-accent);
  font-size: 0.72rem;
  font-weight: 660;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-stats-section h2 {
  max-width: 620px;
  margin: 0;
  color: var(--home-stats-heading);
  font-size: clamp(1.7rem, 2.45vw, 2.3rem);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-stats-section__description {
  max-width: 560px;
  margin: 0;
  color: var(--home-stats-text);
  font-size: 0.95rem;
  font-weight: 430;
  line-height: 1.58;
  letter-spacing: 0;
}

.home-stats-grid {
  counter-reset: home-stat-card;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-stat-card {
  position: relative;
  isolation: isolate;
  counter-increment: home-stat-card;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 218px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--home-stats-card-border) 82%, var(--home-stats-accent));
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), color-mix(in srgb, var(--home-stats-card-bg) 95%, var(--home-stats-accent)) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 16px 36px rgba(6, 15, 30, 0.035);
  padding: 26px 24px 24px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-stat-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--home-stats-accent), color-mix(in srgb, var(--home-stats-icon) 36%, transparent) 62%, transparent);
  content: "";
  opacity: 0.72;
}

.home-stat-card::after {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 0;
  color: color-mix(in srgb, var(--home-stats-accent) 22%, transparent);
  content: counter(home-stat-card, decimal-leading-zero);
  font-size: 2.45rem;
  font-weight: 650;
  line-height: 1;
  pointer-events: none;
  transition: color 180ms ease, transform 180ms ease;
}

.home-stat-card:hover {
  border-color: color-mix(in srgb, var(--home-stats-accent) 56%, var(--home-stats-card-border));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 20px 44px rgba(6, 15, 30, 0.06);
  transform: translateY(-2px);
}

.home-stat-card:hover::after {
  color: color-mix(in srgb, var(--home-stats-accent) 34%, transparent);
  transform: translateY(-2px);
}

.home-stat-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid color-mix(in srgb, var(--home-stats-accent) 42%, var(--home-stats-card-border));
  border-radius: 15px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.94), transparent 44%),
    linear-gradient(145deg, color-mix(in srgb, var(--home-stats-card-bg) 96%, #ffffff), color-mix(in srgb, var(--home-stats-accent) 10%, #f6f3ee));
  color: var(--home-stats-icon);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 24px rgba(6, 15, 30, 0.04);
}

.home-stat-card__icon::before {
  position: absolute;
  inset: 6px;
  border: 1px solid color-mix(in srgb, var(--home-stats-accent) 22%, transparent);
  border-radius: 11px;
  content: "";
  pointer-events: none;
}

.home-stat-card__icon::after {
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--home-stats-accent);
  content: "";
  opacity: 0.82;
  pointer-events: none;
}

.home-stat-card__icon svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-stat-card__icon--stars {
  width: 46px;
  min-width: 46px;
  height: 46px;
  padding: 0;
  color: var(--home-stats-accent);
}

.home-stat-card__icon--stars svg {
  width: 25px;
  height: 25px;
}

.home-stat-icon-accent {
  stroke: var(--home-stats-accent);
}

.home-stat-icon-fill {
  fill: var(--home-stats-accent);
  stroke: none;
}

.home-help-section {
  --home-help-bg: #fffefa;
  --home-help-heading: #0b1b33;
  --home-help-text: #667085;
  --home-help-muted: #8a97ab;
  --home-help-accent: #c3a163;
  --home-help-item-bg: #ffffff;
  --home-help-item-border: #e8ddcf;
  --home-help-active-bg: #7f2d2d;
  --home-help-active-text: #fffefa;
  --home-help-button-bg: #f6f3ee;
  --home-help-button-text: #0b1b33;
  position: relative;
  overflow: hidden;
  background: var(--home-help-bg);
  padding: var(--home-help-top-padding, 12px) 0 var(--home-help-bottom-padding, 78px);
}

.home-help-section__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.home-help-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 28px;
}

.home-help-section__copy {
  max-width: 680px;
}

.home-help-section__eyebrow {
  margin: 0 0 8px;
  color: var(--home-help-accent);
  font-size: 0.72rem;
  font-weight: 660;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-help-section h2 {
  margin: 0;
  color: var(--home-help-heading);
  font-size: clamp(1.7rem, 2.45vw, 2.3rem);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: 0;
}

.home-help-section__copy p:not(.home-help-section__eyebrow) {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--home-help-text);
  font-size: 0.98rem;
  font-weight: 410;
  line-height: 1.55;
  letter-spacing: 0;
}

.home-help-accordion {
  display: grid;
  gap: 14px;
}

.home-help-item {
  overflow: hidden;
  border: 1px solid var(--home-help-item-border);
  border-radius: 14px;
  background: var(--home-help-item-bg);
  color: var(--home-help-heading);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.home-help-item[open] {
  border-color: transparent;
  background: var(--home-help-active-bg);
  color: var(--home-help-active-text);
}

.home-help-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 0 26px 0 28px;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 610;
  line-height: 1.28;
  letter-spacing: 0;
}

.home-help-item summary::-webkit-details-marker {
  display: none;
}

.home-help-item summary::marker {
  content: "";
}

.home-help-item summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--home-help-accent) 42%, transparent);
  outline-offset: -6px;
  border-radius: 12px;
}

.home-help-item__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--home-help-item-border) 82%, #ffffff);
  border-radius: 999px;
  background: #ffffff;
  color: var(--home-help-heading);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-help-item__icon::before,
.home-help-item__icon::after {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.home-help-item__icon::after {
  transform: rotate(90deg);
}

.home-help-item[open] .home-help-item__icon {
  border-color: color-mix(in srgb, var(--home-help-active-text) 54%, transparent);
  background: transparent;
  color: var(--home-help-active-text);
  transform: rotate(45deg);
}

.home-help-item__answer {
  padding: 0 28px 26px;
}

.home-help-item__answer p {
  max-width: 980px;
  margin: 0;
  color: color-mix(in srgb, var(--home-help-active-text) 88%, transparent);
  font-size: 0.96rem;
  font-weight: 410;
  line-height: 1.72;
  letter-spacing: 0;
}

.home-help-section__button:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--home-help-accent) 64%, transparent);
  outline-offset: 4px;
}

.home-stat-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 8px;
  margin-top: auto;
  padding-top: 38px;
}

.home-stat-card__value {
  display: block;
  color: var(--home-stats-heading);
  font-size: clamp(1.34rem, 1.65vw, 1.72rem);
  font-weight: 640;
  line-height: 1.05;
  letter-spacing: 0;
}

.home-stat-card__label {
  display: block;
  color: var(--home-stats-heading);
  font-size: 0.96rem;
  font-weight: 610;
  line-height: 1.24;
  letter-spacing: 0;
}

.home-stat-card__description {
  display: block;
  max-width: 250px;
  color: var(--home-stats-text);
  font-size: 0.87rem;
  font-weight: 420;
  line-height: 1.52;
  letter-spacing: 0;
}

.home-featured-showcase,
.home-tour-intro,
.home-visa-banner,
.home-promise-section,
.home-last-call,
.home-blog-section,
.home-help-section {
  --ezre-home-cta-bg: #f6f3ee;
  --ezre-home-cta-text: #0b1b33;
  --ezre-home-cta-hover: #7f2d2d;
  --ezre-home-cta-hover-text: #fffefa;
}

.home-featured-cta a,
.home-tour-intro__button,
.home-visa-banner__button,
.home-promise-cta a,
.home-last-call__button,
.home-blog-section__button,
.home-help-section__button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--ezre-home-cta-bg);
  color: var(--ezre-home-cta-text);
  padding: 0 26px;
  font-size: 15px;
  font-weight: 560;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: none;
  filter: none;
  transform: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-featured-cta a::before,
.home-promise-cta a::before,
.home-last-call__button::before {
  display: none;
}

.home-blog-section {
  --ezre-home-cta-bg: var(--home-blog-button-bg);
  --ezre-home-cta-text: var(--home-blog-button-text);
}

.home-help-section {
  --ezre-home-cta-bg: var(--home-help-button-bg);
  --ezre-home-cta-text: var(--home-help-button-text);
}

.home-featured-cta a svg,
.home-tour-intro__button svg,
.home-visa-banner__button svg,
.home-promise-cta svg,
.home-last-call__button svg,
.home-blog-section__button svg,
.home-help-section__button svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  padding: 0;
  box-shadow: none;
  transition: transform 180ms ease;
}

.home-featured-cta a:hover,
.home-tour-intro__button:hover,
.home-tour-intro__button:focus-visible,
.home-visa-banner__card:hover .home-visa-banner__button,
.home-visa-banner__card:focus-visible .home-visa-banner__button,
.home-promise-cta a:hover,
.home-last-call__button:hover,
.home-blog-section__button:hover,
.home-help-section__button:hover {
  border: 0;
  background: var(--ezre-home-cta-hover);
  color: var(--ezre-home-cta-hover-text);
  box-shadow: none;
  filter: none;
  transform: none;
}

.home-featured-cta a:hover svg,
.home-tour-intro__button:hover svg,
.home-visa-banner__card:hover .home-visa-banner__button svg,
.home-promise-cta a:hover svg,
.home-last-call__button:hover svg,
.home-blog-section__button:hover svg,
.home-help-section__button:hover svg {
  transform: translateX(2px);
}

@keyframes ezre-last-call-roll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-last-call__board.is-rolling .home-last-call__rail {
    animation: none;
  }

  .home-last-call__rail [aria-hidden="true"] {
    display: none;
  }

  .home-last-call__viewport {
    max-height: none;
  }
}

@media (max-width: 980px) {
  .home-featured-showcase {
    padding: max(26px, calc(var(--home-featured-top-padding) * 0.88)) 0 max(32px, calc(var(--home-featured-bottom-padding) * 0.9));
  }

  .home-featured-showcase > .container {
    width: min(1180px, calc(100% - 40px));
  }

  .home-featured-showcase__top {
    min-height: 82px;
    gap: 18px;
  }

  .home-featured-tabs {
    gap: 30px;
  }

  .home-featured-tabs button {
    min-height: 82px;
    font-size: clamp(17px, var(--home-featured-tab-size), 20px);
  }

  .home-featured-controls button {
    width: 48px;
    height: 48px;
  }

  .home-featured-panels {
    padding-top: 26px;
  }

  .home-featured-track {
    --home-featured-card-gap: 18px;
    grid-auto-columns: minmax(260px, 46vw);
  }

  .home-featured-card {
    padding: 0;
  }

  .home-featured-card__body {
    padding: 20px 4px 0;
  }

  .home-tour-intro__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    max-height: none;
    min-height: 258px;
    padding: 28px 30px;
    background-image:
      linear-gradient(90deg, var(--home-tour-intro-overlay-strong) 0%, var(--home-tour-intro-overlay-strong) 58%, var(--home-tour-intro-overlay-soft) 100%),
      var(--home-tour-intro-image);
  }

  .home-tour-intro__action {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .home-visa-banner {
    padding: max(18px, calc(var(--home-visa-top-padding) * 0.86)) 0 max(38px, calc(var(--home-visa-bottom-padding) * 0.86));
  }

  .home-visa-banner__card {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    min-height: max(232px, calc(var(--home-visa-height) * 0.92));
    max-height: none;
  }

  .home-visa-banner__content {
    max-width: 620px;
  }

  .home-visa-banner__action {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 0;
  }

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

  .home-promise-card {
    min-height: 214px;
  }

  .home-route-showcase {
    padding: max(32px, calc(var(--home-route-top-padding) * 0.86)) 0 max(36px, calc(var(--home-route-bottom-padding) * 0.9));
  }

  .home-route-showcase__heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-route-showcase__summary {
    justify-items: start;
  }

  .home-route-grid {
    --home-route-card-gap: 14px;
    grid-auto-columns: calc((100% - var(--home-route-card-gap)) / 2);
  }

  .home-route-card {
    min-height: 300px;
  }

  .home-last-call {
    padding: max(34px, calc(var(--home-last-call-top-padding) * 0.82)) 0 max(38px, calc(var(--home-last-call-bottom-padding) * 0.86));
  }

  .home-last-call__heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-last-call__button {
    justify-self: start;
  }

  .home-last-call__head,
  .home-last-call__row {
    grid-template-columns: 175px minmax(0, 1fr) 150px 92px;
    gap: 14px;
  }

  .home-last-call__head,
  .home-last-call__row {
    padding-right: 22px;
    padding-left: 22px;
  }

  .home-last-call__date strong,
  .home-last-call__status strong,
  .home-last-call__tour strong {
    font-size: 0.9rem;
  }

  .home-last-call__status strong {
    padding: 0 10px;
  }

  .home-blog-section {
    padding: max(36px, calc(var(--home-blog-top-padding) * 0.86)) 0 max(46px, calc(var(--home-blog-bottom-padding) * 0.86));
  }

  .home-blog-section__heading {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "tabs"
      "button";
    align-items: start;
    gap: 18px;
  }

  .home-blog-section__button {
    justify-self: start;
  }

  .home-blog-toolbar {
    margin-top: 0;
  }

  .home-blog-showcase {
    grid-template-columns: 1fr;
  }

  .home-blog-side-card a {
    grid-template-columns: minmax(0, 1fr) minmax(136px, 180px);
  }

  .home-stats-section {
    padding: max(12px, calc(var(--home-stats-top-padding) * 0.86)) 0 max(44px, calc(var(--home-stats-bottom-padding) * 0.86));
  }

  .home-stats-section__heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .home-stats-section__description {
    max-width: 680px;
  }

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

  .home-help-section {
    padding: max(8px, calc(var(--home-help-top-padding) * 0.86)) 0 max(46px, calc(var(--home-help-bottom-padding) * 0.86));
  }

  .home-help-section__heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .home-help-section__button {
    justify-self: start;
  }

  .home-help-item summary {
    min-height: 72px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .home-help-item__answer {
    padding-right: 22px;
    padding-left: 22px;
  }
}

@media (max-width: 680px) {
  .home-featured-showcase {
    padding: max(24px, calc(var(--home-featured-top-padding) * 0.72)) 0 max(30px, calc(var(--home-featured-bottom-padding) * 0.78));
  }

  .home-featured-showcase > .container {
    width: min(1180px, calc(100% - 40px));
  }

  .home-featured-showcase__top {
    display: block;
    min-height: 0;
  }

  .home-featured-tabs {
    gap: 24px;
    padding: 0;
  }

  .home-featured-tabs button {
    min-height: 58px;
    font-size: clamp(15px, var(--home-featured-tab-size), 18px);
  }

  .home-featured-controls {
    justify-content: flex-end;
    margin: 14px 0 0;
  }

  .home-featured-controls button {
    width: 42px;
    height: 42px;
  }

  .home-featured-controls svg,
  .home-featured-cta svg {
    width: 18px;
    height: 18px;
  }

  .home-featured-panels {
    padding-top: 24px;
  }

  .home-featured-track {
    --home-featured-card-gap: 16px;
    grid-auto-columns: minmax(248px, 86vw);
    padding-right: 12px;
  }

  .home-featured-card {
    padding: 0;
  }

  .home-featured-card__body {
    padding: 18px 4px 0;
  }

  .home-featured-card h3 {
    font-size: clamp(17px, calc(var(--home-featured-title-size) - 2px), 20px);
  }

  .home-featured-card__summary {
    margin-top: 10px;
    font-size: clamp(13px, calc(var(--home-featured-summary-size) - 1px), 15px);
  }

  .home-route-showcase {
    padding: max(28px, calc(var(--home-route-top-padding) * 0.72)) 0 max(34px, calc(var(--home-route-bottom-padding) * 0.78));
  }

  .home-route-showcase__inner {
    width: min(1180px, calc(100% - 32px));
  }

  .home-route-grid {
    --home-route-card-gap: 14px;
    grid-auto-columns: minmax(248px, 86vw);
    gap: var(--home-route-card-gap);
  }

  .home-route-card {
    min-height: 236px;
  }

  .home-route-card__content {
    padding: 20px;
  }

  .home-route-card__subtitle {
    max-width: 92%;
  }

  .home-last-call {
    padding: max(30px, calc(var(--home-last-call-top-padding) * 0.68)) 0 max(34px, calc(var(--home-last-call-bottom-padding) * 0.72));
  }

  .home-last-call__inner {
    width: min(1180px, calc(100% - 32px));
  }

  .home-last-call__heading {
    margin-bottom: 18px;
  }

  .home-last-call h2 {
    font-size: 1.52rem;
  }

  .home-last-call__button {
    width: 100%;
    min-height: 46px;
  }

  .home-last-call__head {
    display: none;
  }

  .home-last-call__viewport {
    max-height: none;
    overflow: visible;
  }

  .home-last-call__board.is-rolling .home-last-call__rail {
    animation: none;
  }

  .home-last-call__rail [aria-hidden="true"] {
    display: none;
  }

  .home-last-call__row {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 18px 20px;
  }

  .home-last-call__date,
  .home-last-call__status,
  .home-last-call__action {
    justify-items: start;
    text-align: left;
  }

  .home-last-call__date {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-last-call__tour strong {
    white-space: normal;
  }

  .home-last-call__action small {
    justify-content: flex-start;
  }

  .home-featured-card__facts {
    gap: 9px;
    margin-top: 18px;
  }

  .home-featured-fact {
    min-height: 34px;
    font-size: 0.78rem;
  }

  .home-featured-fact svg {
    width: 25px;
    height: 25px;
  }

  .home-featured-card__price {
    margin-top: 21px;
  }

  .home-featured-card__price strong {
    font-size: clamp(21px, calc(var(--home-featured-price-size) - 4px), 24px);
  }

  .home-featured-cta {
    margin-top: 34px;
  }

  .home-featured-cta a {
    width: 100%;
  }

  .home-tour-intro {
    padding: 22px 0 32px;
  }

  .home-tour-intro__inner {
    min-height: 304px;
    padding: 24px 20px;
    background-image:
      linear-gradient(180deg, var(--home-tour-intro-overlay-soft) 0%, var(--home-tour-intro-overlay-strong) 44%, var(--home-tour-intro-overlay-strong) 100%),
      var(--home-tour-intro-image);
  }

  .home-tour-intro h2 {
    font-size: 1.52rem;
  }

  .home-tour-intro__description {
    font-size: 0.86rem;
  }

  .home-tour-intro__action {
    gap: 10px;
  }

  .home-tour-intro__count {
    min-width: 64px;
    min-height: 52px;
  }

  .home-tour-intro__count strong {
    font-size: 1.55rem;
  }

  .home-tour-intro__button {
    width: 100%;
    min-width: 0;
  }

  .home-visa-banner {
    padding: max(14px, calc(var(--home-visa-top-padding) * 0.7)) 0 max(32px, calc(var(--home-visa-bottom-padding) * 0.72));
  }

  .home-visa-banner__inner {
    width: min(1180px, calc(100% - 40px));
  }

  .home-visa-banner__card {
    min-height: auto;
    background-image:
      linear-gradient(180deg, color-mix(in srgb, var(--home-visa-overlay) 82%, transparent) 0%, color-mix(in srgb, var(--home-visa-panel) 94%, transparent) 70%),
      var(--home-visa-image);
  }

  .home-visa-banner__content {
    gap: 11px;
    max-width: none;
  }

  .home-visa-banner__content > strong {
    font-size: 1.72rem;
  }

  .home-visa-banner__description {
    font-size: 0.9rem;
  }

  .home-visa-banner__button {
    width: 100%;
    min-height: 48px;
    margin-top: 6px;
    padding-right: 16px;
    padding-left: 18px;
  }

  .home-visa-banner__action {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .home-promise-section {
    padding: max(30px, calc(var(--home-promise-top-padding) * 0.72)) 0 max(34px, calc(var(--home-promise-bottom-padding) * 0.76));
  }

  .home-promise-section > .container,
  .home-promise-section__inner {
    width: min(1180px, calc(100% - 32px));
  }

  .home-promise-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-promise-card {
    min-height: 190px;
    padding: 26px 24px 24px;
  }

  .home-promise-card strong {
    font-size: 1.08rem;
  }

  .home-promise-card__body > span {
    margin-top: 10px;
    font-size: 0.92rem;
  }

  .home-promise-cta a {
    width: 100%;
  }

  .home-blog-section {
    padding: max(32px, calc(var(--home-blog-top-padding) * 0.72)) 0 max(38px, calc(var(--home-blog-bottom-padding) * 0.74));
  }

  .home-blog-section__inner {
    width: min(1180px, calc(100% - 32px));
  }

  .home-blog-section__heading {
    margin-bottom: 22px;
  }

  .home-blog-section h2 {
    font-size: 1.68rem;
    line-height: 1.1;
  }

  .home-blog-section__copy p:not(.home-blog-section__eyebrow) {
    margin-top: 11px;
    font-size: 0.92rem;
  }

  .home-blog-section__button {
    width: 100%;
    min-height: 48px;
  }

  .home-blog-toolbar {
    width: 100%;
    margin-bottom: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .home-blog-tabs {
    min-width: max-content;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .home-blog-tab {
    min-height: 40px;
    padding: 0 15px;
    font-size: 0.86rem;
  }

  .home-blog-showcase {
    gap: 14px;
  }

  .home-blog-featured-card__image {
    aspect-ratio: 1.32 / 1;
  }

  .home-blog-featured-card__body {
    padding: 16px;
  }

  .home-blog-featured-card strong {
    font-size: 1.13rem;
  }

  .home-blog-side-card a {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .home-blog-side-card__media {
    order: -1;
    min-height: 0;
    aspect-ratio: 1.65 / 1;
  }

  .home-blog-side-card strong {
    font-size: 1.02rem;
  }

  .home-blog-featured-card__excerpt,
  .home-blog-side-card__excerpt {
    font-size: 0.88rem;
  }

  .home-stats-section {
    padding: max(10px, calc(var(--home-stats-top-padding) * 0.72)) 0 max(38px, calc(var(--home-stats-bottom-padding) * 0.72));
  }

  .home-stats-section__inner {
    width: min(1180px, calc(100% - 32px));
  }

  .home-stats-section__heading {
    margin-bottom: 18px;
  }

  .home-stats-section h2 {
    font-size: 1.68rem;
  }

  .home-stats-section__description {
    font-size: 0.9rem;
    line-height: 1.54;
  }

  .home-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-stat-card {
    min-height: 188px;
    padding: 24px 20px 21px;
  }

  .home-stat-card::before {
    right: 0;
    left: 0;
  }

  .home-stat-card::after {
    top: 20px;
    right: 20px;
    font-size: 2.18rem;
  }

  .home-stat-card__body {
    gap: 7px;
    margin-top: auto;
    padding-top: 34px;
  }

  .home-stat-card__value {
    font-size: 1.42rem;
  }

  .home-stat-card__description {
    max-width: none;
    font-size: 0.84rem;
  }

  .home-stat-card__icon svg {
    width: 23px;
    height: 23px;
  }

  .home-stat-card__icon--stars svg {
    width: 24px;
    height: 24px;
  }

  .home-help-section {
    padding: max(8px, calc(var(--home-help-top-padding) * 0.72)) 0 max(38px, calc(var(--home-help-bottom-padding) * 0.72));
  }

  .home-help-section__inner {
    width: min(1180px, calc(100% - 32px));
  }

  .home-help-section__heading {
    margin-bottom: 20px;
  }

  .home-help-section h2 {
    font-size: 1.68rem;
    line-height: 1.1;
  }

  .home-help-section__copy p:not(.home-help-section__eyebrow) {
    margin-top: 11px;
    font-size: 0.92rem;
  }

  .home-help-section__button {
    width: 100%;
    min-height: 48px;
  }

  .home-help-accordion {
    gap: 10px;
  }

  .home-help-item {
    border-radius: 12px;
  }

  .home-help-item summary {
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 14px;
    min-height: 64px;
    padding: 0 16px 0 18px;
    font-size: 0.92rem;
  }

  .home-help-item__icon {
    width: 36px;
    height: 36px;
  }

  .home-help-item__icon::before,
  .home-help-item__icon::after {
    width: 14px;
  }

  .home-help-item__answer {
    padding: 0 18px 20px;
  }

  .home-help-item__answer p {
    font-size: 0.88rem;
    line-height: 1.65;
  }
}
