/* ============ Fonts ============ */
@font-face {
  font-family: "Avrile Serif";
  src: url("assets/fonts/AvrileSerif-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avrile Serif";
  src: url("assets/fonts/AvrileSerif-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* ============ Base ============ */
:root {
  --deep-green: #102723;
  --amber: #fea000;
  --amber-text: #ffb21c;
  --mint: #eefaf8;
  --surface: #fefefe;
  --surface-border: #e6e6e6;
  --body-muted: #38403e;
  --pill-muted: #e3eae9;
  --featured-pill: #21413c;
  --emerald: #01705c;
  --emerald-border: var(--emerald);
  --button-gradient-deep: linear-gradient(
    180deg,
    color-mix(in srgb, var(--deep-green) 88%, white) 0%,
    var(--deep-green) 100%
  );
  --button-gradient-emerald: linear-gradient(
    180deg,
    color-mix(in srgb, var(--emerald) 94%, white) 0%,
    var(--emerald) 100%
  );
  --team-frame: #f0f0f0;
  --team-muted: #7a7a7a;
  --motion-fast: 180ms;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --button-shadow-hover: 0 4px 12px color-mix(in srgb, var(--deep-green) 14%, transparent);
  --button-shadow-soft: 0 3px 8px color-mix(in srgb, var(--deep-green) 10%, transparent);
  --floating-control-shadow:
    0 7px 20px color-mix(in srgb, var(--deep-green) 14%, transparent),
    0 2px 6px color-mix(in srgb, var(--deep-green) 8%, transparent);
  --floating-control-shadow-hover:
    0 9px 24px color-mix(in srgb, var(--deep-green) 17%, transparent),
    0 3px 8px color-mix(in srgb, var(--emerald) 12%, transparent);
  --button-scale-hover: 1.01;
  --button-scale-press: 0.985;
  --off-white: #f6f6f6;
  --text-light: #f3f3f3;
  --border: #cecece;
  --hint: #b2b8b7;
  --radius-lg: 24px;
  --radius-md: 12px;
  --radius-round: 999px;
  --section-gap: 10px;
  --font-serif: "Avrile Serif", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background: #fff;
  padding: 10px;
  min-height: 100vh;
}

img {
  display: block;
}

/* ============ Interaction Cursors ============ */
a[href],
button:not(:disabled),
select:not(:disabled),
summary,
[role="button"]:not([aria-disabled="true"]),
input[type="button"]:not(:disabled),
input[type="submit"]:not(:disabled),
input[type="reset"]:not(:disabled),
input[type="checkbox"]:not(:disabled),
input[type="radio"]:not(:disabled),
input[type="date"]:not(:disabled),
input[type="file"]:not(:disabled) {
  cursor: pointer;
}

input:not([type]),
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="number"],
textarea {
  cursor: text;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: none;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
  line-height: 1.7;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color var(--motion-fast) var(--ease-out),
    border-color var(--motion-fast) var(--ease-out),
    color var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) var(--ease-out);
}

.btn:hover {
  transform: none;
  box-shadow: var(--button-shadow-hover);
}

.btn:active {
  box-shadow: none;
}

.btn--contact {
  min-width: 142px;
  height: var(--navbar-logo-height, 34px);
  min-height: var(--navbar-logo-height, 34px);
  padding: 0 8px;
  align-self: center;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-light);
  width: auto;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: 19px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.015em;
  text-align: left;
}

.btn--contact::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  background: url("assets/icon-call.svg") center / contain no-repeat;
}

.btn--contact:hover {
  background: transparent;
  color: var(--amber-text);
  box-shadow: none;
}

.btn--primary {
  background: var(--amber);
  color: var(--deep-green);
  width: 200px;
}

.btn--primary:hover {
  background: color-mix(in srgb, var(--amber) 92%, var(--deep-green));
}

.btn--whatsapp {
  background: #fefefe;
  color: var(--deep-green);
}

.btn--whatsapp:hover {
  background: var(--mint);
}

/* Fixed WhatsApp contact */
.whatsapp-float {
  --whatsapp-art-size: 42px;
  --whatsapp-ring-gap: 4px;
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 900;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  filter:
    drop-shadow(0 7px 12px color-mix(in srgb, var(--deep-green) 16%, transparent))
    drop-shadow(0 2px 4px color-mix(in srgb, var(--deep-green) 10%, transparent));
  transition:
    filter var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--whatsapp-art-size) + (var(--whatsapp-ring-gap) * 2));
  height: calc(var(--whatsapp-art-size) + (var(--whatsapp-ring-gap) * 2));
  transform: translate(-50%, -50%);
  z-index: 0;
  background: conic-gradient(
    from var(--whatsapp-ring-angle),
    var(--deep-green) 0deg,
    var(--emerald) 120deg,
    var(--amber) 180deg,
    var(--emerald) 240deg,
    var(--deep-green) 360deg
  );
  opacity: 0.9;
  filter: drop-shadow(0 0 1px color-mix(in srgb, var(--emerald) 24%, transparent));
  -webkit-mask: url("assets/whatsapp-outline-mask.svg?v=3") center / contain no-repeat;
  mask: url("assets/whatsapp-outline-mask.svg?v=3") center / contain no-repeat;
  transition:
    opacity var(--motion-fast) var(--ease-out),
    filter var(--motion-fast) var(--ease-out);
  animation: whatsapp-ring-spin 2.2s linear infinite;
  pointer-events: none;
}

.whatsapp-float::after {
  content: none;
}

.whatsapp-float img {
  position: relative;
  z-index: 1;
  width: var(--whatsapp-art-size);
  height: var(--whatsapp-art-size);
}

.whatsapp-float:hover::before,
.whatsapp-float:focus-visible::before {
  opacity: 0.94;
  filter:
    drop-shadow(0 0 2.5px color-mix(in srgb, var(--emerald) 34%, transparent))
    drop-shadow(0 0 1.5px color-mix(in srgb, var(--amber) 18%, transparent));
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  filter:
    drop-shadow(0 9px 15px color-mix(in srgb, var(--deep-green) 19%, transparent))
    drop-shadow(0 3px 5px color-mix(in srgb, var(--emerald) 14%, transparent));
}

.whatsapp-float:active {
  transform: scale(var(--button-scale-press));
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.back-to-top {
  position: fixed;
  right: calc(max(24px, env(safe-area-inset-right)) + 3px);
  bottom: calc(max(24px, env(safe-area-inset-bottom)) + 60px);
  z-index: 900;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--surface) 22%, transparent);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, color-mix(in srgb, var(--deep-green) 68%, black) 82%, transparent);
  color: var(--text-light);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  backdrop-filter: blur(14px) saturate(108%);
  -webkit-backdrop-filter: blur(14px) saturate(108%);
  transition:
    opacity var(--motion-fast) var(--ease-out),
    visibility var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out),
    background-color var(--motion-fast) var(--ease-out),
    border-color var(--motion-fast) var(--ease-out);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top img {
  width: 20px;
  height: 20px;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: color-mix(in srgb, var(--surface) 38%, transparent);
  background-color: color-mix(in srgb, color-mix(in srgb, var(--deep-green) 78%, black) 88%, transparent);
  transform: translateY(-2px);
}

.back-to-top:active {
  transform: translateY(0) scale(var(--button-scale-press));
}

.back-to-top:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .whatsapp-float {
    --whatsapp-art-size: 40px;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
  }

  .back-to-top {
    right: calc(max(16px, env(safe-area-inset-right)) + 3px);
    bottom: calc(max(16px, env(safe-area-inset-bottom)) + 56px);
    width: 40px;
    height: 40px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: none;
  }

  .back-to-top {
    transition: none;
  }

  .whatsapp-float::before {
    animation: none;
  }
}

/* Hotel cards reveal as complete rows with dependable, compositor-friendly motion. */
.hotel-card.hotel-row-entering {
  opacity: 0.18;
  transform: translate3d(var(--hotel-row-start-x, 0), 0, 0);
  transition: none;
  will-change: opacity, transform;
}

.hotel-card.hotel-row-entering.hotel-row-entered {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 860ms cubic-bezier(0.22, 0.72, 0.24, 1),
    transform 860ms cubic-bezier(0.22, 0.72, 0.24, 1);
}

/* ============ Hotel Directory — control and navigation fixes ============ */
.hotel-view-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-view-group > .hotel-filter__label {
  padding-left: 2px;
}

.hotel-results {
  scroll-margin-top: 188px;
}

@media (max-width: 900px) {
  .hotel-results {
    scroll-margin-top: 104px;
  }

  .hotel-view-group {
    align-self: flex-end;
  }
}

@media (max-width: 720px) {
  .hotel-toolbar {
    gap: 11px;
  }

  .hotel-toolbar .hotel-filters {
    gap: 8px;
  }

  .hotel-filter {
    width: 100%;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
  }

  .hotel-filter__label {
    font-size: 11px;
  }

  .hotel-filter__options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .hotel-filter__button {
    width: 100%;
    min-height: 38px;
    padding: 7px 6px;
    font-size: 12px;
  }

  .hotel-view-group {
    width: 100%;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
  }

  .hotel-view {
    width: 100%;
  }

  .hotel-view__button {
    min-height: 38px;
  }

  .hotel-results__head {
    margin-bottom: 12px;
  }

  .hotel-results__note {
    display: none;
  }
}

@media (max-width: 390px) {
  .hotel-filter,
  .hotel-view-group {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 6px;
  }

  .hotel-filter__button {
    padding-inline: 4px;
    font-size: 11px;
  }
}

/* ============ Hotel Directory — dropdown controls ============ */
.hotel-toolbar__filters {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 28px;
}

.hotel-select {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hotel-select > span:first-child {
  color: var(--deep-green);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.hotel-select__control {
  position: relative;
  display: inline-block;
}

.hotel-select__control select {
  min-height: 40px;
  padding: 8px 36px 8px 12px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid color-mix(in srgb, var(--deep-green) 11%, var(--surface-border));
  border-radius: calc(var(--radius-md) - 3px);
  background: color-mix(in srgb, var(--off-white) 76%, var(--surface));
  color: var(--deep-green);
  font: 600 13px/1.2 var(--font-sans);
  cursor: pointer;
  transition: border-color 160ms var(--ease-out), background-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}

.hotel-select--city select {
  width: 164px;
}

.hotel-select--rating select {
  width: 140px;
}

.hotel-select--distance select {
  width: 146px;
}

.hotel-select__control select:hover {
  border-color: color-mix(in srgb, var(--deep-green) 30%, var(--surface-border));
  background: var(--surface);
}

.hotel-select__control select:focus-visible {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--amber) 18%, transparent);
}

.hotel-select__control img {
  position: absolute;
  top: 50%;
  right: 11px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}

.hotel-results {
  scroll-margin-top: 208px;
}

@media (max-width: 900px) {
  .hotel-results {
    scroll-margin-top: 104px;
  }
}

@media (max-width: 720px) {
  .hotel-toolbar__filters {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
    gap: 8px;
  }

  .hotel-select {
    width: 100%;
    display: grid;
    gap: 5px;
  }

  .hotel-select > span:first-child {
    font-size: 11px;
  }

  .hotel-select__control select {
    width: 100%;
    min-height: 42px;
    padding: 8px 38px 8px 11px;
    font-size: 13px;
  }

  .hotel-select__control img {
    right: 11px;
  }
}

@property --whatsapp-ring-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes whatsapp-ring-spin {
  to {
    --whatsapp-ring-angle: 360deg;
  }
}

@media (max-width: 720px) {
  .hotel-toolbar .hotel-toolbar__filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hotel-select--distance select {
    width: 100%;
  }

  .hotel-results .hotel-results__head {
    display: flex;
    align-items: center;
    gap: 8px;
  }

}

@media (max-width: 390px) {
  .hotel-toolbar {
    gap: 6px;
  }

  .hotel-toolbar .hotel-toolbar__filters {
    gap: 4px;
  }

  .hotel-toolbar .hotel-select > span:first-child,
  .hotel-toolbar .hotel-view-group__label {
    font-size: 9px;
  }

  .hotel-toolbar .hotel-select__control select {
    padding-inline: 6px 20px;
    font-size: 10.5px;
  }

  .hotel-toolbar .hotel-select__control img {
    right: 5px;
    width: 10px;
    height: 10px;
  }
}

.btn--submit {
  background: var(--button-gradient-deep);
  color: #fff;
  width: 100%;
}

.btn--submit:hover,
.btn--dark:hover {
  background: var(--button-gradient-deep);
}

.btn--contact:hover,
.btn--whatsapp:hover,
.btn--outline:hover {
  transform: none;
  box-shadow: none;
}

:is(
  .btn,
  .pkg__select,
  .pkg__more,
  .certs__arrow,
  .reach-card__cta,
  .booking-form__submit,
  .navbar__toggle
):focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 860px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("assets/hero-main.png") center / cover no-repeat;
  border-radius: var(--radius-lg);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16, 39, 35, 0) 0%, rgba(16, 39, 35, 0.2) 100%);
}

/* ============ Navbar ============ */
.navbar {
  --navbar-corner-radius: 22px;
  --navbar-logo-height: 34px;
  --navbar-control-height: 40px;
  --navbar-ink: color-mix(in srgb, var(--deep-green) 68%, black);
  --navbar-background: color-mix(in srgb, var(--navbar-ink) 80%, transparent);
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 1020px;
  max-width: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border: 0;
  border-radius: var(--navbar-corner-radius);
  background-color: var(--navbar-background);
  box-shadow: none;
  backdrop-filter: blur(20px) saturate(112%) brightness(82%);
  -webkit-backdrop-filter: blur(20px) saturate(112%) brightness(82%);
}

.navbar__header {
  display: contents;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  text-decoration: none;
}

.navbar__logo {
  height: var(--navbar-logo-height);
  width: auto;
  display: block;
}

.footer__logo-img {
  height: 41px;
  width: auto;
  display: block;
}

.navbar__menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.navbar__link {
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--off-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-decoration: none;
  transition: background 0.15s ease;
}

.navbar__link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.navbar__link--active {
  font-weight: 700;
}

.navbar__menu .navbar__link.navbar__link--contact {
  color: var(--amber-text);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__toggle {
  display: none;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
  border-radius: 10px;
}

.navbar__toggle:hover {
  background: transparent;
}

.navbar__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 10px;
  transition:
    top 0.3s ease,
    left 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

.navbar__toggle span:nth-child(1) {
  top: calc(50% - 6px);
}

.navbar__toggle span:nth-child(2) {
  top: calc(50% - 1px);
}

.navbar__toggle span:nth-child(3) {
  top: calc(50% + 4px);
}

.navbar--open .navbar__toggle span:nth-child(1) {
  transform: rotate(45deg);
  top: calc(50% - 1px);
}

.navbar--open .navbar__toggle span:nth-child(2) {
  opacity: 0;
  left: -20px;
}

.navbar--open .navbar__toggle span:nth-child(3) {
  transform: rotate(-45deg);
  top: calc(50% - 1px);
}

/* ============ Hero content ============ */
.hero__content {
  position: relative;
  z-index: 1;
  width: 831px;
  max-width: calc(100% - 40px);
  margin-top: clamp(165px, 12vw, 175px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero--home .hero__content {
  margin-top: clamp(145px, 10vw, 155px);
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 64px;
  line-height: 1.4;
  color: #fff;
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
}

.hero__subtitle {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-light);
}

.hero__actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__actions .btn--primary {
  width: 190px;
}

.hero__actions .btn--whatsapp {
  width: 210px;
}

/* ============ Search widget ============ */
.search {
  position: relative;
  z-index: 1;
  width: 1200px;
  max-width: calc(100% - 40px);
  margin-top: 40px;
  margin-bottom: 60px;
}

.search__tabs {
  position: relative;
  display: flex;
  gap: 9px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.search__tab {
  position: relative;
  z-index: 1;
  flex: 1 0 0;
  min-width: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--off-white);
  cursor: pointer;
  transition: color 0.22s ease, background 0.15s ease;
}

.search__tab:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.search__tab.is-active {
  color: var(--deep-green);
}

.search__tab-slider {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(50% - 24.5px);
  height: calc(100% - 40px);
  background: var(--mint);
  border-radius: var(--radius-md);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
  pointer-events: none;
}

.search__tab:nth-child(1).is-active ~ .search__tab-slider {
  transform: translateX(0);
}

.search__tab:nth-child(2).is-active ~ .search__tab-slider {
  transform: translateX(calc(100% + 9px));
}

.search__panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.search__fields {
  display: flex;
  gap: 20px;
}

.field {
  flex: 1 0 0;
  min-width: 1px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field__label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--deep-green);
}

.field__hint {
  color: var(--hint);
}

.field__control {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.field__control input,
.field__control select {
  width: 100%;
  padding: 12px 32px 12px 16px;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.7;
  color: var(--deep-green);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.field__control input[type="number"] {
  padding-right: 16px;
  appearance: auto;
  -webkit-appearance: auto;
  cursor: text;
}

.field__control input[type="date"] {
  padding-right: 16px;
  appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
}

.field__control select {
  padding-right: 48px;
  background: url("assets/caret-down.svg?v=2") right 16px center / 16px 16px no-repeat;
  cursor: pointer;
}

.date-proxy {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0;
  pointer-events: auto;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.field__control--date {
  cursor: pointer;
}

.field__control--date input {
  cursor: pointer;
}

.field__control input::placeholder {
  color: var(--hint);
  opacity: 1;
  font-weight: 400;
}

.field__control select:required:invalid,
.field__control select.field__select--placeholder,
.field__control select option[disabled] {
  color: var(--hint);
  font-weight: 400;
}

.field__control select option {
  color: var(--deep-green);
  font-weight: 500;
}

.field__control img {
  position: absolute;
  right: 16px;
  pointer-events: none;
}

.field__control:focus-within {
  border-color: var(--deep-green);
}

.field__control:hover:not(:focus-within) {
  border-color: var(--hint);
}

.search__custom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.search__custom[hidden] {
  display: none;
}

.search__details-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field__control--textarea {
  align-items: flex-start;
}

.field__control textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--deep-green);
  outline: none;
  overflow-y: hidden;
  resize: none;
}

.field__control textarea::placeholder {
  color: var(--hint);
  opacity: 1;
  font-weight: 400;
}

.search__panel[hidden] {
  display: none;
}

/* Flight tab panel */
.flight__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.flight__radios {
  display: flex;
  gap: 10px;
}

.flight-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: none;
  border-radius: 12px;
  background: #f3f3f3;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--deep-green);
  cursor: pointer;
  transition: background 0.15s ease;
}

.flight-radio:hover:not(.is-active) {
  background: #e9e9e9;
}

.flight-radio.is-active {
  background: var(--amber);
}

.flight__selects {
  display: flex;
  gap: 9px;
}

.flight__selects .field__control {
  width: 184px;
}

.flight__selects select {
  font-size: 16px;
}

.flight__row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.flight__route {
  flex: 1;
  min-width: 1px;
  display: flex;
  align-items: center;
}

.flight__leg {
  flex: 1;
  min-width: 1px;
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border: 1px solid var(--border);
  line-height: 1.7;
  cursor: pointer;
}

.flight__leg:first-child {
  border-radius: 12px 0 0 12px;
  border-right: none;
}

.flight__leg:last-of-type {
  border-radius: 0 12px 12px 0;
  border-left: none;
}

.flight__leg span,
.flight__date span {
  font-size: 12px;
  color: var(--deep-green);
}

.flight__leg strong,
.flight__date strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--deep-green);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flight__swap {
  flex-shrink: 0;
  z-index: 1;
  width: 36px;
  height: 36px;
  margin: 0 -8px;
  padding: 6px;
  border: none;
  border-radius: 100px;
  background: #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.flight__swap:active {
  transform: rotate(180deg);
}

.flight__date {
  width: 275px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  line-height: 1.7;
  cursor: pointer;
}

/* ============ Sections (shared) ============ */
.section {
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 700px;
  text-align: center;
}

.section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 52px;
  line-height: 1.4;
  letter-spacing: -2px;
  text-transform: capitalize;
  color: var(--deep-green);
}

.section__lead {
  font-size: 18px;
  line-height: 1.7;
  color: #38403e;
  opacity: 0.8;
}

/* ============ About Us ============ */
.about {
  gap: 80px;
}

/* Decorative geometric pattern peeking behind the About and Pricing headings */
.about,
.pricing {
  position: relative;
}

.about::before,
.pricing::before {
  content: "";
  position: absolute;
  top: -209px;
  left: 50%;
  transform: translateX(-50%);
  width: 382px;
  height: 382px;
  background: url("assets/section-pattern.svg?v=2") center / contain no-repeat;
  z-index: -1;
  pointer-events: none;
}

.about__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 1282px;
}

.about__row {
  display: flex;
  gap: 11px;
  width: 100%;
}

.stat-card {
  position: relative;
  flex: 1 0 0;
  min-width: 1px;
  height: 320px;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16, 39, 35, 0) 0%, rgba(16, 39, 35, 0.5) 50%, #102723 100%);
}

.stat-card__body {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fefefe;
}

.stat-card__number {
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-card__unit {
  font-size: 32px;
  font-weight: 800;
}

.stat-card__label {
  font-size: 20px;
  line-height: 1.2;
}

.stat-card__desc {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #d9d9d9;
}

.about__photo {
  flex: 851 0 0;
  min-width: 1px;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.about__photo img,
.about__photo video {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  display: block;
}

.quote-card {
  position: relative;
  flex: 420 0 0;
  min-width: 1px;
  height: 480px;
  padding: 44px 0 36px;
  background: var(--deep-green);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: radial-gradient(75% 160% at 50% -60%, rgba(49, 96, 88, 0.85) 0%, rgba(49, 96, 88, 0.35) 55%, rgba(16, 39, 35, 0) 100%);
  pointer-events: none;
}

.quote-card::after {
  content: "";
  position: absolute;
  right: -67px;
  bottom: -26px;
  width: 192px;
  height: 168px;
  background: url("assets/quote-pattern.svg?v=2") center / contain no-repeat;
  pointer-events: none;
}

.quote-card__quote,
.quote-card__contact {
  position: relative;
  z-index: 1;
  width: 360px;
  max-width: calc(100% - 48px);
}

.quote-card__quote p {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  text-transform: capitalize;
}

.quote-card__quote cite {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  text-align: right;
  color: var(--amber-text);
}

.quote-card__contact {
  margin-top: 0;
}

.quote-card__contact>p {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.3px;
  color: #e6e6e6;
}

.quote-card__phone {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

/* Marquee (infinite logo/photo sliders) */
.marquee {
  position: relative;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 5s linear infinite;
  will-change: transform;
}

.partners__strip .marquee__track {
  animation-duration: 5.5s;
}

.institutions__strip .marquee__track {
  animation-duration: 6.5s;
}

.marquee__track--slow {
  animation-duration: 18s;
}

.marquee:not(.gallery__strip):hover .marquee__track {
  animation-play-state: paused;
}

.gallery__strip:is(:hover, :active) .marquee__track {
  animation-play-state: running;
}

@keyframes marquee {
  to {
    transform: translate3d(var(--marquee-shift, -50%), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* Partner logos */
.partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.partners__label {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  color: var(--deep-green);
}

.partners__strip {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.partners__strip::before,
.partners__strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 1;
  pointer-events: none;
}

.partners__strip::before {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.partners__strip::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

.partners__logos {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
  height: 39px;
}

.partners__logos img {
  flex-shrink: 0;
  width: auto;
  height: 38px;
  object-fit: contain;
}

.partners__logos img.partners__logo--wide {
  height: 28px;
}

/* ============ Why Choose Us ============ */
.section__title--light {
  color: #fff;
}

.section__title .accent {
  color: var(--amber-text);
}

.section__lead--light {
  color: #c9cfce;
}

.why {
  padding: 0;
}

.why__panel {
  position: relative;
  isolation: isolate;
  border-radius: 24px;
  background:
    radial-gradient(140% 95% at 50% 8%, rgba(16, 39, 35, 0.92) 0%, rgba(8, 21, 19, 0.78) 50%, rgba(16, 39, 35, 0.94) 100%),
    url("assets/why-bg.png") center / cover no-repeat,
    var(--deep-green);
  overflow: hidden;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.why__panel::before,
.why__panel::after {
  content: "";
  position: absolute;
  top: -170px;
  width: 395px;
  height: 445px;
  background: url("assets/why-glow.svg") center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

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

.why__panel::before {
  left: -140px;
}

.why__panel::after {
  right: -140px;
  transform: scaleX(-1);
}

.why__grid {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  max-width: 1260px;
}

.why__col {
  flex: 409 0 0;
  min-width: 1px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why__photo {
  flex: 408 0 0;
  min-width: 1px;
  height: 602px;
  border-radius: 16px;
  overflow: hidden;
}

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

.why-card {
  background: #153732;
  border: 1.5px solid var(--deep-green);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #316058;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-card__text h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.why-card__text p {
  font-size: 16px;
  line-height: normal;
  color: #c9cfce;
}

.why-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

/* ============ Certificates ============ */
.certs {
  padding: 0;
}

.certs__panel {
  background: #f8f8f8;
  border-radius: 24px;
  padding: 80px 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  width: 100%;
}

.certs__slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.certs__stage {
  position: relative;
  width: 100%;
  height: 344px;
  overflow: hidden;
}

.certs__track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  height: 100%;
  transition: transform 0.46s ease;
  will-change: transform;
}

.cert-card {
  flex: none;
  background: #fefefe;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 30px;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.08));
  transform: scale(0.8);
  transition: transform 0.46s ease;
}

.cert-card.is-active {
  transform: scale(1);
}

.certs__stage::before,
.certs__stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 2;
  pointer-events: none;
}

.certs__stage::before {
  left: 0;
  background: linear-gradient(to right, #f8f8f8, rgba(248, 248, 248, 0));
}

.certs__stage::after {
  right: 0;
  background: linear-gradient(to left, #f8f8f8, rgba(248, 248, 248, 0));
}

.cert-card__img {
  width: 460px;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.cert-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cert-card__body {
  width: 451px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding-right: 12px;
}

.cert-card__body h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
}

.cert-card__body p {
  margin-top: -16px;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

.cert-card__details {
  display: contents;
}

.cert-card__toggle {
  display: none;
}

.certs__controls {
  display: flex;
  align-items: center;
  gap: 24px;
}

.certs__arrow {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: var(--button-gradient-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) var(--ease-out);
}

.certs__arrow:hover {
  background: var(--button-gradient-deep);
  box-shadow: var(--button-shadow-hover);
}

.certs__arrow:active {
  box-shadow: none;
}

.certs__dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.certs__dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  transition: all 0.3s ease;
}

.certs__dot.is-active {
  width: 24px;
  background: var(--deep-green);
}

.institutions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.institutions__strip {
  width: 100%;
}

.institutions__strip::before,
.institutions__strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 1;
  pointer-events: none;
}

.institutions__strip::before {
  left: 0;
  background: linear-gradient(to right, #f8f8f8, rgba(248, 248, 248, 0));
}

.institutions__strip::after {
  right: 0;
  background: linear-gradient(to left, #f8f8f8, rgba(248, 248, 248, 0));
}

.institutions__logos {
  display: flex;
  align-items: center;
  gap: 140px;
  padding-right: 140px;
  height: 80px;
}

.institutions__logos img {
  object-fit: contain;
}

.institutions__logos .institutions__logo {
  width: auto;
  height: 62px;
  flex: 0 0 auto;
}

.institutions__crop {
  width: 64px;
  height: 64px;
  overflow: hidden;
  position: relative;
}

.institutions__crop img {
  position: absolute;
  top: 1.5%;
  left: 1.5%;
  width: 96%;
  height: 208%;
  object-fit: cover;
  object-position: top;
}

/* ============ Pricing ============ */
.pricing .section__head {
  max-width: 820px;
}

.pricing__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1280px;
}

.pricing__tabs {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px;
  gap: 4px;
  background: #f5f5f5;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
}

.pricing__tab {
  position: relative;
  z-index: 1;
  width: 100px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: #38403e;
  cursor: pointer;
  transition: color 0.25s ease, font-weight 0.25s ease;
}

.pricing__tab:hover {
  color: var(--deep-green);
}

.pricing__tab.is-active {
  color: var(--deep-green);
  font-weight: 600;
}

.pricing__tab-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100px;
  height: calc(100% - 8px);
  background: #fefefe;
  border-radius: 8px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.08));
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
  pointer-events: none;
}

.pricing__tab:nth-child(1).is-active ~ .pricing__tab-slider {
  transform: translateX(0);
}

.pricing__tab:nth-child(2).is-active ~ .pricing__tab-slider {
  transform: translateX(104px);
}

.pricing__grid {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  max-width: 1256px;
}

.pricing__grid[hidden] {
  display: none;
}

.pkg__included li strong {
  font-weight: 700;
  color: var(--deep-green);
}

.pkg[id],
.custom-request[id] {
  scroll-margin-top: 170px;
}

.pkg {
  flex: 1 0 0;
  min-width: 1px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 10px 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pkg__head {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--surface);
}

.pkg__head::before,
.pkg__head::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pkg__head::before {
  z-index: 0;
  background: url("assets/card-pattern.png") top left / 194px 149.5px repeat;
  opacity: 0.55;
}

.pkg__head::after {
  z-index: 1;
  background: radial-gradient(
    ellipse 712px 240px at 50% 71px,
    rgba(254, 254, 254, 0.94) 0%,
    rgba(254, 254, 254, 0.62) 100%
  );
}

.pkg__head > * {
  position: relative;
  z-index: 2;
}

.pkg__title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pkg__title h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--deep-green);
  white-space: nowrap;
}

.pkg__badge {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  margin-left: auto;
  height: 26px;
  padding: 2px 16px;
  border-radius: 6px;
  background: var(--emerald);
  box-shadow: 0 4px 8px rgba(1, 112, 92, 0.4);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.pkg__badge::after {
  content: "";
  position: absolute;
  top: -36px;
  left: 70px;
  width: 57.3053px;
  height: 56.3051px;
  background: url("assets/pkg-popular-highlight.svg") center / contain no-repeat;
  mix-blend-mode: plus-lighter;
  pointer-events: none;
}

.pkg__desc {
  margin-top: -26px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--body-muted);
  opacity: 0.8;
}

@media (min-width: 1101px) {
  .pricing__grid .pkg__desc {
    min-height: 5.1em;
  }
}

.pkg__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.pkg__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pkg__price span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--body-muted);
}

.pkg__price strong {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: var(--deep-green);
}

.pkg__pill {
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--pill-muted);
  border: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--deep-green);
  white-space: nowrap;
}

.pkg__select {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border: 1px solid var(--deep-green);
  border-radius: var(--radius-md);
  background: var(--surface);
  font-size: 18px;
  font-weight: 400;
  color: var(--deep-green);
  text-decoration: none;
  transition:
    background-color var(--motion-fast) var(--ease-out),
    border-color var(--motion-fast) var(--ease-out),
    color var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) var(--ease-out);
}

.pkg:not(.pkg--featured) .pkg__select:hover {
  background: var(--mint);
  border-color: var(--deep-green);
  color: var(--deep-green);
  transform: none;
  box-shadow: var(--button-shadow-soft);
}

.pkg__select:active {
  box-shadow: none;
}

.pkg__included {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 6px;
}

.pkg__included-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: #38403e;
}

.pkg__included ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pkg__included li,
.custom-plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #4d4d4d;
}

.pkg__included li img,
.custom-plan__list li img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 2px;
}

.pkg__hotel-item {
  margin-inline: -6px;
}

.pkg__hotel-link {
  flex: 1;
  min-width: 0;
  margin-block: -4px;
  padding: 4px 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-radius: calc(var(--radius-md) - 4px);
  color: inherit;
  text-decoration: none;
  transition:
    background-color var(--motion-fast) var(--ease-out),
    color var(--motion-fast) var(--ease-out);
}

.pkg__hotel-link > span::after,
.pkg__hotel-link > strong::after {
  content: "↗";
  display: inline-block;
  margin-left: 7px;
  color: var(--amber-text);
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1;
  vertical-align: -0.03em;
}

.pkg__hotel-link:hover {
  background: var(--mint);
  color: var(--deep-green);
}

.pkg__hotel-link:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.pkg__more {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 12px;
  background: var(--mint);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
  color: var(--deep-green);
  text-decoration: none;
  transition:
    background-color var(--motion-fast) var(--ease-out),
    color var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) var(--ease-out);
}

.pkg__more:hover {
  background: color-mix(in srgb, var(--mint) 88%, var(--deep-green));
  transform: none;
  box-shadow: none;
}

.pkg__more:active {
  box-shadow: none;
}

/* Featured (middle) package */
.pkg--featured .pkg__head {
  background: var(--deep-green);
}

.pkg--featured .pkg__head::before {
  background: url("assets/card-pattern-featured.png") center / cover no-repeat;
  opacity: 1;
}

.pkg--featured .pkg__head::after {
  background: radial-gradient(
    ellipse 390px 247px at 50% 63.5px,
    color-mix(in srgb, var(--deep-green) 94%, transparent) 0%,
    rgba(8, 21, 19, 0.52) 100%
  );
}

.pkg--featured .pkg__title h3 {
  color: var(--surface);
}

.pkg--featured .pkg__price span,
.pkg--featured .pkg__desc {
  color: var(--surface-border);
}

.pkg--featured .pkg__price strong {
  color: var(--amber-text);
}

.pkg--featured .pkg__pill {
  background: var(--featured-pill);
  border: none;
  color: var(--surface);
}

.pkg--featured .pkg__select {
  border: 1px solid var(--emerald-border);
  background: var(--button-gradient-emerald);
  background-clip: padding-box;
  box-shadow: none;
  color: var(--surface);
  line-height: 1;
  text-rendering: geometricPrecision;
}

.pkg--featured .pkg__included li img {
  padding: 1.875px;
}

.pkg--featured .pkg__select:hover {
  transform: none;
  box-shadow: none;
}

.invert-icon {
  filter: brightness(0) invert(1);
}

/* Custom plan card */
.custom-plan {
  display: flex;
  gap: 60px;
  width: 100%;
  max-width: 1256px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 24px;
  padding: 10px;
}

.custom-plan__left {
  flex: 502 0 0;
  min-width: 1px;
  border-radius: 14px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background:
    radial-gradient(180% 90% at 50% 0%, rgba(254, 254, 254, 0.94) 0%, rgba(254, 254, 254, 0.82) 100%),
    url("assets/card-pattern.png") top left / 194px 149.5px repeat;
}

.custom-plan__intro {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.custom-plan__intro .pkg__desc {
  margin-top: 0;
}

.custom-plan__tail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.custom-plan__note {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: #38403e;
}

.custom-plan__chips {
  margin-top: -20px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.custom-plan__right {
  flex: 674 0 0;
  min-width: 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding-right: 10px;
}

.custom-plan__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 12px;
}

.custom-plan__contact {
  margin-top: 18px;
  font-size: 16px;
  color: #38403e;
}

.pricing__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
}

.btn--outline {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--deep-green);
}

.btn--outline:hover {
  background: var(--mint);
  border-color: color-mix(in srgb, var(--deep-green) 45%, var(--border));
}

.btn--dark {
  background: var(--button-gradient-deep);
  color: #fff;
}

/* ============ Gallery ============ */
.gallery__panel {
  position: relative;
  border-radius: 24px;
  background: radial-gradient(120% 100% at 50% 0%, #16332d 0%, #0c1f1b 55%, #102723 100%);
  overflow: hidden;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.gallery__panel .section__title {
  text-align: center;
  padding: 0 24px;
}

.gallery__strip {
  width: 100%;
}

.gallery__group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}

.gallery__strip img {
  width: 360px;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}

/* ============ How It Works ============ */
.process__panel {
  background: #f8f8f8;
  border-radius: 24px;
  padding: 80px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.process__left {
  flex: 496 0 0;
  min-width: 1px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.process__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process__title {
  line-height: 1.2;
  text-align: left;
}

.process__photo {
  width: 100%;
  height: 405px;
  object-fit: cover;
  object-position: 0 60%;
  border-radius: 16px;
}

.process__steps {
  flex: 724 0 0;
  min-width: 1px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-card {
  background: #fff;
  border: 1px solid #c5cac9;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card__q {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.7;
  color: var(--deep-green);
}

.step-card__q span {
  width: 32px;
  flex-shrink: 0;
}

.step-card__q h3 {
  font-size: 20px;
  font-weight: 500;
}

.step-card>p {
  padding-left: 54px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: #606665;
}

/* ============ Testimonials ============ */
.testimonials .section__head {
  max-width: 1040px;
}

.testimonials__row {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
}

.testi-card {
  flex: 1 0 0;
  min-width: 1px;
  height: 506px;
  background: #fafafa;
  border: 1px solid #c5cac9;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-card__quote {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: var(--deep-green);
}

.testi-card__person {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-card__avatar {
  width: 61px;
  height: 61px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  background: linear-gradient(196deg, #f3faf9 11%, #b2bdbb 100%);
}

.testi-card__name {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: var(--deep-green);
}

.testi-card__role {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: #606665;
}

.testi-card--video {
  position: relative;
  justify-content: flex-end;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.testi-card--video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 33%, rgba(0, 0, 0, 0.6) 88%);
}

.testi-card--video .testi-card__person {
  position: relative;
}

.testi-card--video .testi-card__name {
  color: #fff;
}

.testi-card--video .testi-card__role {
  color: #fefefe;
}

.testi-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  background: rgba(254, 254, 254, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.testi-card__play span {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background: #fefefe;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-card__play img {
  width: 30px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
  margin-left: 3px;
}

/* ============ FAQ ============ */
.faq__panel {
  background: #f8f8f8;
  border-radius: 24px;
  padding: 80px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.faq__intro {
  flex: 496 0 0;
  min-width: 1px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__list {
  flex: 724 0 0;
  min-width: 1px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border: 1px solid #c5cac9;
  border-radius: 16px;
  padding: 24px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.7;
  color: var(--deep-green);
}

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

.faq-item__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.faq-item>p {
  margin-top: 0;
  padding-top: 16px;
  padding-left: 54px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: #606665;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

/* ============ CTA ============ */
.cta {
  padding: 100px 80px;
  gap: 40px;
}

.cta .section__head {
  max-width: 1040px;
}

.cta__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ============ Footer ============ */
.footer {
  padding: 0;
}

.footer__panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 864px;
  background:
    linear-gradient(to bottom, #102723 45%, rgba(16, 39, 35, 0.55) 68%, rgba(16, 39, 35, 0) 100%),
    url("assets/footer-photo.jpg") bottom center / cover no-repeat,
    var(--deep-green);
  background-attachment: scroll, fixed, scroll;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 10px;
}

.footer__inner {
  width: 100%;
  max-width: 1280px;
  padding: 80px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer__cols {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 0 40px;
}

.footer__brand {
  width: 412px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__brand>p {
  font-size: 18px;
  line-height: 1.7;
  color: #98a2a0;
}

.footer__social {
  display: flex;
  gap: 20px;
}

.footer__social a {
  opacity: 0.9;
  transition: opacity 0.15s ease;
}

.footer__social a:hover {
  opacity: 1;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 240px;
}

.footer__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--amber-text);
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__col li,
.footer__col a {
  font-size: 16px;
  line-height: 1.7;
  text-transform: capitalize;
  color: #98a2a0;
  text-decoration: none;
}

.footer__col a:hover {
  color: #d3dbd9;
}

.footer__mail {
  text-transform: none !important;
}

.footer__divider {
  border: none;
  border-top: 1px solid rgba(152, 162, 160, 0.3);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 40px;
}

.footer__bottom p {
  font-size: 16px;
  line-height: 1.7;
  color: #94979e;
}

/* ============ Packages page ============ */
.hero--packages {
  min-height: 625px;
}

.hero--compact {
  min-height: 460px;
}

.hero--about {
  min-height: 540px;
}

.hero__bg--packages {
  background-image: url("assets/hero-main-2.png");
  background-position: center bottom;
}

.hero__content--packages {
  width: 1040px;
  margin-top: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__title--packages em {
  font-style: italic;
}

/* Quote banner */
.quote-banner {
  padding: 0;
}

.quote-banner__panel {
  width: 100%;
  border-radius: 24px;
  background:
    radial-gradient(90% 120% at 50% 28%, rgba(16, 39, 35, 0.88) 0%, rgba(16, 39, 35, 0.84) 100%),
    url("assets/why-bg.png") center / cover no-repeat,
    var(--deep-green);
  overflow: hidden;
  padding: 80px;
  display: flex;
  align-items: center;
  gap: 120px;
}

.quote-banner__photo {
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

.quote-banner__quote {
  flex: 1;
  min-width: 1px;
  text-align: right;
}

.quote-banner__quote p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
  color: #fff;
}

.quote-banner__quote cite {
  display: block;
  margin-top: 32px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  color: var(--amber-text);
}

/* Flights arch cards */
.flights {
  padding: 0;
}

.flights__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 400px);
  gap: 30px;
  justify-content: center;
}

.arch-card {
  width: 400px;
  height: 240px;
  background: url("assets/arch-card.svg") center / 100% 100% no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 40px 50px;
}

.arch-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}

.arch-card p {
  max-width: 300px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.32px;
  color: #e6e6e6;
}

/* Custom plan request form */
.custom-request {
  padding: 0;
}

.custom-request__panel {
  background: #f8f8f8;
  border-radius: 24px;
  padding: 80px;
  display: flex;
  gap: 60px;
  align-items: stretch;
  justify-content: space-between;
}

.custom-request__left {
  flex: 530 0 0;
  min-width: 1px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.custom-request .process__title {
  font-size: 48px;
}

.custom-request__photo {
  width: 100%;
  flex: none;
  min-height: 0;
  height: auto;
  aspect-ratio: 53 / 43;
  object-fit: cover;
  object-position: center 60%;
  border-radius: 16px;
}

.form-card {
  flex: 620 0 0;
  max-width: 640px;
  min-width: 1px;
  background: #fff;
  border-radius: 24px;
  box-shadow:
    0 9px 10px rgba(0, 0, 0, 0.05),
    0 37px 18.5px rgba(0, 0, 0, 0.04),
    0 83px 25px rgba(0, 0, 0, 0.03);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.form-card__row {
  display: flex;
  gap: 20px;
}

.form-card__row .form-field {
  flex: 1;
  min-width: 1px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-field label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--deep-green);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  height: 51px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #f3f3f3;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--deep-green);
  outline: none;
  resize: vertical;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.form-field input:hover:not(:focus),
.form-field select:hover:not(:focus),
.form-field textarea:hover:not(:focus) {
  border-color: var(--border);
}

.form-field textarea {
  height: 135px;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("assets/caret-down.svg?v=2");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
  cursor: pointer;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #929f9d;
  opacity: 1;
}

.form-field select:invalid {
  color: var(--deep-green);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--deep-green);
  background: #fff;
}

.form-card .btn--submit {
  width: 100%;
}

.form-card__note {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: #929f9d;
}

/* Wide process variant */
.process--wide {
  background: #f8f8f8;
  margin: 0 0;
  border-radius: 24px;
  padding: 80px;
  gap: 50px;
}

.process__photo-wide {
  width: 100%;
  max-width: 1280px;
  height: 445px;
  object-fit: cover;
  border-radius: 16px;
}

.process__steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  max-width: 1280px;
}

/* ============ About page ============ */
.hero__content--about {
  width: 1040px;
  margin-top: 0;
  position: absolute;
  top: 190px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__stats {
  margin-top: 90px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.hero-stat {
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #fff;
}

.hero-stat strong {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

.hero-stat span {
  font-size: 16px;
  line-height: 1.2;
  color: #f3f3f3;
  white-space: nowrap;
}

/* Mission statement */
.mission__inner {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission__statement {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.4;
  letter-spacing: -1px;
  text-transform: capitalize;
  color: var(--deep-green);
}

.mission__statement em {
  font-style: italic;
}

.mission__lead {
  max-width: none;
}

.mission__media {
  position: relative;
  margin-top: 40px;
  border-radius: 40px;
  overflow: hidden;
}

.mission__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.mission__media>img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center 86%;
  display: block;
}

.mission__media .testi-card__play {
  z-index: 1;
}

.mission__actions {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ============ Team ============ */
.team {
  gap: 50px;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 776px;
}

.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.team-card--lead {
  grid-column: 1 / -1;
  justify-self: center;
  width: 50%;
  max-width: 388px;
}

.team-card__media {
  width: 100%;
  height: 450px;
  border: 10px solid var(--team-frame);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

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

.team-card__label {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  width: auto;
  padding: 64px 18px 18px;
  border-radius: 0 0 calc(var(--radius-lg) - 10px) calc(var(--radius-lg) - 10px);
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--deep-green) 30%, transparent) 32%,
    color-mix(in srgb, var(--deep-green) 92%, transparent) 100%
  );
  text-align: left;
  pointer-events: none;
}

.team-card__name {
  margin-bottom: 7px;
  overflow: hidden;
  color: var(--text-light);
  font-size: clamp(15px, 4.5vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-card__role {
  display: -webkit-box;
  overflow: hidden;
  color: color-mix(in srgb, var(--text-light) 82%, transparent);
  font-size: clamp(11.5px, 3.2vw, 14px);
  font-weight: 500;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Keep full-bleed panel content inside the 1260px container on wide screens */
.quote-banner__panel,
.custom-request__panel,
.process__panel,
.faq__panel {
  padding-left: max(80px, calc((100% - 1260px) / 2));
  padding-right: max(80px, calc((100% - 1260px) / 2));
}

/* ============ Contact page ============ */
.reach__row {
  display: flex;
  gap: 20px;
  align-items: stretch;
  width: 100%;
  max-width: 1280px;
}

.reach-card {
  flex: 388 0 0;
  min-width: 1px;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  background:
    radial-gradient(120% 60% at 100% 20%, rgba(49, 96, 88, 0.85) 0%, rgba(16, 39, 35, 0.15) 55%, rgba(10, 26, 23, 0) 80%),
    linear-gradient(180deg, #0d2320 0%, #133029 100%);
}

.reach-card__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reach-card__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reach-card__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.reach-card__label img {
  width: 15px;
  height: 15px;
  opacity: 0.9;
}

.reach-card__item>a,
.reach-card__item>p:not(.reach-card__label),
.reach-card__item>p:not(.reach-card__label)>a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.reach-card__item>a:hover,
.reach-card__item>p>a:hover {
  color: var(--amber-text);
}

.reach-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  border: 1px solid var(--emerald-border);
  border-radius: 12px;
  background: var(--button-gradient-emerald);
  background-clip: padding-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition:
    box-shadow var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out);
}

.reach-card__cta:hover {
  transform: none;
  box-shadow: inset 0 1px 0 color-mix(in srgb, white 25%, transparent);
}

.reach-card__cta:active {
  transform: translateY(0);
}

.reach-map {
  flex: 872 0 0;
  min-width: 1px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.reach-map iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
  border-radius: 8px;
  display: block;
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .navbar__toggle {
    display: flex;
  }

  .navbar {
    --navbar-corner-radius: calc(var(--radius-lg) - 10px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 0;
    background-color: var(--navbar-background);
    box-shadow: none;
    backdrop-filter: blur(20px) saturate(112%) brightness(82%);
    -webkit-backdrop-filter: blur(20px) saturate(112%) brightness(82%);
    transition:
      border-radius 0.34s var(--ease-out),
      background-color 0.34s var(--ease-out);
  }

  .navbar.navbar--open {
    border-color: transparent;
    background-color: color-mix(in srgb, var(--navbar-ink) 72%, transparent);
    box-shadow: none;
  }

  .navbar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: var(--navbar-control-height);
  }

  .navbar__brand,
  .navbar__actions {
    height: var(--navbar-control-height);
  }

  .navbar__brand {
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar__menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transform: translate3d(0, -8px, 0);
    transform-origin: top center;
    backface-visibility: hidden;
    will-change: max-height, opacity, transform;
    transition:
      max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.2s ease,
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      margin-top 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      padding-top 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.38s;
    margin-top: 0;
    gap: 8px;
    align-items: stretch;
    position: static;
    padding: 0;
    background: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
  }

  .navbar--open .navbar__menu {
    max-height: 310px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid color-mix(in srgb, var(--surface) 12%, transparent);
    transition-delay: 0s;
  }

  .navbar__menu .navbar__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    text-align: center;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    width: 100%;
    background: color-mix(in srgb, var(--surface) 7%, transparent);
    border: 1px solid color-mix(in srgb, var(--surface) 12%, transparent);
    color: var(--off-white);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    transition:
      background-color 0.18s ease,
      border-color 0.18s ease,
      color 0.18s ease;
  }

  .navbar__menu .navbar__link:hover {
    background: color-mix(in srgb, var(--surface) 13%, transparent);
    border-color: color-mix(in srgb, var(--surface) 18%, transparent);
    color: #fff;
  }

  .navbar__menu .navbar__link.navbar__link--contact {
    color: var(--off-white);
  }

  .navbar__menu .navbar__link--active {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--deep-green);
    font-weight: 700;
  }

  .section {
    padding: 60px 24px;
  }

  .about__row {
    flex-wrap: wrap;
  }

  .stat-card {
    flex: 1 0 300px;
  }

  .about__photo {
    flex: 1 0 100%;
    height: 380px;
  }

  .quote-card {
    flex: 1 0 100%;
  }

  .partners__logos {
    flex-wrap: nowrap;
    height: 39px;
    gap: 40px;
    padding: 0 40px 0 0;
  }

  .why__grid {
    flex-wrap: wrap;
  }

  .why__col {
    flex: 1 0 300px;
  }

  .why__photo {
    flex: 1 0 100%;
    order: -1;
    height: 420px;
  }

  .cert-card {
    flex-direction: column;
    align-items: flex-start;
    width: calc(100vw - 88px);
  }

  .certs__stage {
    height: auto;
  }

  .certs__stage::before,
  .certs__stage::after {
    display: none;
  }

  .cert-card__img {
    width: 100%;
    max-width: 460px;
    height: auto;
    aspect-ratio: 460 / 320;
  }

  .cert-card__body {
    width: auto;
    padding: 0 8px 12px;
  }

  .institutions__logos {
    flex-wrap: nowrap;
    gap: 64px;
    height: 80px;
    justify-content: flex-start;
    padding-right: 64px;
  }

  .pricing__grid {
    flex-direction: column;
  }

  .pkg {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }

  .custom-plan {
    flex-direction: column;
    gap: 24px;
  }

  .custom-plan__right {
    padding: 0 10px 16px;
  }

  .custom-plan__list {
    grid-template-columns: 1fr;
  }

  .process__panel,
  .faq__panel,
  .custom-request__panel,
  .quote-banner__panel {
    flex-direction: column;
    padding: 60px 24px;
  }

  .quote-banner__panel {
    gap: 40px;
  }

  .quote-banner__photo {
    width: min(420px, 100%);
    height: auto;
  }

  .quote-banner__quote {
    text-align: center;
  }

  .flights__grid {
    grid-template-columns: minmax(0, 400px);
  }

  .custom-request__left,
  .form-card {
    flex: none;
    width: 100%;
  }

  .process--wide {
    padding: 60px 24px;
  }

  .process__photo-wide {
    height: 280px;
  }

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

  .hero__content--packages {
    width: calc(100% - 40px);
  }

  .hero__content--about {
    width: calc(100% - 40px);
    top: 140px;
  }

  .hero__stats {
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .mission__statement {
    font-size: 30px;
  }

  .mission__media > img {
    height: 320px;
  }

  .team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 62.5%;
    max-width: 776px;
    row-gap: 20px;
  }

  .team-card__media {
    height: auto;
    aspect-ratio: 6 / 7;
  }

  .team-card__media img {
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
  }

  .reach__row {
    flex-direction: column;
  }

  .reach-card,
  .reach-map {
    flex: none;
    width: 100%;
  }

  .process__left,
  .process__steps,
  .faq__intro,
  .faq__list {
    flex: none;
    width: 100%;
  }

  .gallery__strip {
    padding: 0 24px;
  }

  .gallery__strip img {
    width: 280px;
    height: 390px;
  }

  .testimonials__row {
    flex-wrap: wrap;
  }

  .testi-card {
    flex: 1 0 300px;
    height: auto;
    min-height: 420px;
    gap: 40px;
  }

  .testi-card--video {
    min-height: 506px;
  }

  .footer__cols {
    flex-wrap: wrap;
    padding: 0 24px;
  }

  .footer__brand {
    width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    padding: 0 24px;
  }

  .cta__actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .search__fields {
    flex-wrap: wrap;
  }

  .field {
    flex: 1 0 40%;
  }
}

/* Keep decorative section motifs subtle as the viewport narrows. */
@media (max-width: 900px) {
  .about::before,
  .pricing::before {
    top: clamp(-209px, -27.5vw, -105px);
    width: clamp(190px, 50vw, 382px);
    height: clamp(190px, 50vw, 382px);
  }
}

@media (max-width: 720px) {
  input,
  select,
  textarea {
    font-size: 16px;
  }

  .btn,
  .search__tab,
  .pricing__tab,
  .tabs-btn,
  .certs__arrow,
  .faq-item summary {
    min-height: 44px;
  }

  .hero {
    min-height: 0;
  }

  .hero__title {
    font-size: clamp(34px, 10.25vw, 40px);
    line-height: 1.2;
  }

  .hero__content {
    margin-top: 120px;
    max-width: calc(100% - 24px);
  }

  .hero__actions {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .hero__actions .btn {
    flex: 0 1 auto;
    width: auto;
    padding: 12px 16px;
    font-size: 14px;
    gap: 8px;
  }

  .hero__actions .btn img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .search {
    margin-top: 48px;
    margin-bottom: 20px;
  }

  .search__tab {
    font-size: 14px;
    padding: 10px 8px;
  }

  .field {
    flex: 1 0 100%;
  }

  .btn--contact {
    width: auto;
  }

  .section__title {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .section__lead {
    font-size: 16px;
  }

  .section__lead br,
  .section__title br {
    display: none;
  }

  .quote-card {
    height: auto;
    padding: 48px 0;
  }

  .quote-card__contact {
    margin-top: 40px;
  }
}

/* ============ Package Details Page ============ */
/* Compact Package Header */
.details-hero {
  position: relative;
  min-height: 280px;
  background: var(--deep-green);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 120px 40px 40px;
  /* 120px top padding to clear the fixed navbar */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.details-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 800px;
}

.details-hero__title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

.details-hero__tagline {
  font-size: 16px;
  line-height: 1.6;
  color: var(--hint);
}

.pkg-details {
  padding: 80px 40px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.pkg-details__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
}

.pkg-details__main {
  flex: 1;
}

.pkg-details__sidebar {
  width: 440px;
  flex-shrink: 0;
}

/* Sticky booking card */
.booking-card {
  position: sticky;
  top: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 12px 32px rgba(16, 39, 35, 0.04);
}

.booking-card__mobile-btn {
  display: none;
}

.booking-modal__close {
  display: none;
}

.booking-modal__title-mobile {
  display: none;
}

.booking-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--deep-green);
  margin-bottom: 8px;
}

.booking-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.booking-card__price strong {
  font-size: 32px;
  color: var(--deep-green);
}

.booking-card__duration {
  font-size: 16px;
  color: #666;
  background: var(--mint);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* Form Styles */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-form__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-green);
}

.booking-form__input,
.booking-form__select,
.booking-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--deep-green);
  outline: none;
  background: #fff;
  transition: border-color 0.2s;
}

.booking-form__input:hover:not(:focus),
.booking-form__select:hover:not(:focus),
.booking-form__textarea:hover:not(:focus) {
  border-color: var(--hint);
}

.booking-form__select,
.booking-form__input[type="date"] {
  cursor: pointer;
}

.booking-form__input:focus,
.booking-form__select:focus,
.booking-form__textarea:focus {
  border-color: var(--amber);
}

.booking-form__textarea {
  height: 100px;
  resize: vertical;
}

.booking-form__submit {
  width: 100%;
  background: var(--amber);
  color: var(--deep-green);
  font-weight: 600;
  font-size: 16px;
  padding: 14px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    background-color var(--motion-fast) var(--ease-out),
    color var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.booking-form__submit:hover {
  background: color-mix(in srgb, var(--amber) 92%, var(--deep-green));
  color: var(--deep-green);
}

.booking-form__submit:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Dynamic Details Styling */
.pkg-details__header {
  margin-bottom: 32px;
}

.pkg-details__header-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(206, 206, 206, 0.4);
  padding-bottom: 20px;
}

.pkg-details__title-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
}

.pkg-title-select-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  max-width: 100%;
}

.pkg-title-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  z-index: 2;
  display: block;
}

.pkg-title-select-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23102723' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") no-repeat center;
  background-size: contain;
  pointer-events: none;
  flex-shrink: 0;
  align-self: center;
  margin-top: 4px;
}

.pkg-picker {
  display: none;
}

.pkg-picker__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--deep-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pkg-picker__select-wrapper {
  position: relative;
  width: 100%;
}

.pkg-picker__select {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--deep-green);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(16, 39, 35, 0.03);
  padding-right: 36px;
}

.pkg-picker__select:focus,
.pkg-picker__select:hover {
  border-color: var(--amber);
  box-shadow: 0 4px 12px rgba(16, 39, 35, 0.08);
}

.pkg-picker__select-wrapper::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23102723' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") no-repeat center;
  pointer-events: none;
}

.pkg-details__subtitle {
  display: inline-block;
  color: #d48800;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
}

.pkg-details__title {
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1.25;
  color: var(--deep-green);
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  flex: 0 1 auto;
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.pkg-details__tagline {
  font-size: 15px;
  line-height: 1.6;
  color: #555e5c;
  margin-top: 16px;
  margin-bottom: 0;
  max-width: 680px;
}

/* Interactive Tabs */
.tabs-nav {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 1px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.tabs-nav::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.tabs-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.tabs-btn:hover {
  color: var(--deep-green);
}

.tabs-btn.is-active {
  color: var(--deep-green);
  border-bottom-color: var(--amber);
}

.tabs-content__panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tabs-content__panel.is-active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Overview Panel */
.overview-text {
  font-size: 18px;
  line-height: 1.8;
  color: #3f4745;
  margin-bottom: 32px;
}

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

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s ease;
}

.highlight-card:hover {
  transform: translateX(4px);
}

.highlight-card__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--deep-green);
}

.highlight-card__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.highlight-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 4px;
}

.highlight-card__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Itinerary Panel */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 28px;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}

.itinerary-item {
  position: relative;
}

.itinerary-item__dot {
  position: absolute;
  left: -23px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--amber);
  z-index: 2;
}

.itinerary-item__grid {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.itinerary-item__day {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--amber-text);
  line-height: 1.4;
  flex-shrink: 0;
}

.itinerary-item__body {
  flex: 1;
}

.itinerary-item__title-text {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--deep-green);
  margin-bottom: 6px;
  line-height: 1.4;
}

.itinerary-item__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5452;
}

/* List details */
.list-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.list-details__section h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--deep-green);
  margin-bottom: 16px;
}

.list-details__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-details__list li {
  font-size: 16px;
  color: #3f4745;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.list-details__list li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Info Row for transport & hotels */
.info-table {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(206, 206, 206, 0.3);
  transition: transform 0.2s ease;
}

.info-row:hover {
  transform: translateX(4px);
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-row__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--deep-green);
}

.info-row__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.info-row__content {
  flex: 1;
}

.info-row__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 4px;
}

.info-row__value {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5452;
}

/* Responsive */
html,
body {
  overflow-x: hidden;
  width: 100%;
}

html.modal-open,
body.modal-open {
  overflow: hidden !important;
  height: 100% !important;
}

@media (max-width: 1100px) {
  .details-hero {
    padding: 100px 24px 32px;
  }

  .pkg-details {
    padding: 60px 24px;
  }

  .pkg-details__container {
    flex-direction: column;
    gap: 40px;
  }

  .pkg-details__sidebar {
    width: 100%;
  }

  .booking-card {
    position: static;
    padding: 24px;
  }

  .booking-card__mobile-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
  }

  .booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(10, 23, 21, 0.65);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    padding: 16px;
  }

  .booking-modal.is-open {
    display: flex;
  }

  .booking-modal__content {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 24px 24px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(16, 39, 35, 0.15);
    border: 1px solid var(--border);
    animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }

  .booking-modal__close {
    display: block;
    position: absolute;
    right: 16px;
    top: 16px;
    border: none;
    background: none;
    font-size: 28px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    z-index: 10;
  }

  .booking-modal__title-mobile {
    display: block;
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--deep-green);
    margin-bottom: 20px;
  }
}

@media (max-width: 720px) {
  .details-hero {
    padding: 90px 16px 24px;
    min-height: auto;
  }

  .details-hero__title {
    font-size: 30px;
  }

  .pkg-details {
    padding: 40px 16px;
  }

  .pkg-details__title {
    font-size: 28px;
  }

  .pkg-title-select-icon {
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23102723' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") no-repeat center;
    background-size: contain;
  }

  /* Prevent tabs scroll, display as interactive grid buttons */
  .tabs-nav {
    flex-wrap: wrap;
    border-bottom: none;
    gap: 8px;
    margin-bottom: 24px;
  }

  .tabs-btn {
    flex: 1 0 calc(50% - 8px);
    text-align: center;
    padding: 10px 8px;
    font-size: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    white-space: normal;
    height: auto;
    border-bottom: 1px solid var(--border);
  }

  .tabs-btn:hover {
    color: var(--deep-green);
    border-color: var(--amber);
  }

  .tabs-btn.is-active {
    color: var(--deep-green);
    border-color: var(--amber);
    background: var(--amber);
  }

  .highlights-grid,
  .list-details {
    grid-template-columns: 1fr;
  }

  .list-details {
    gap: 24px;
  }

  .info-table {
    gap: 16px;
  }

  .info-row {
    gap: 16px;
  }
}

/* Ultra-narrow devices navbar adjustment */
@media (max-width: 380px) {
  .hero__actions {
    gap: 8px;
  }
  .hero__actions .btn {
    flex: 0 1 auto;
    padding: 10px 10px;
    font-size: 12px;
    gap: 6px;
  }
  .hero__actions .btn img {
    width: 18px;
    height: 18px;
  }

  .btn--contact {
    padding: 8px 10px;
    font-size: 13px;
  }
  .navbar__brand {
    padding: 8px 8px;
    gap: 6px;
  }
  .navbar__logo {
    height: var(--navbar-logo-height);
  }
  .navbar__toggle {
    width: 36px;
    height: 36px;
    padding: 8px;
  }
  .navbar__toggle span {
    width: 18px;
    left: 9px;
  }
  .navbar__toggle span:nth-child(1) {
    top: calc(50% - 6px);
  }
  .navbar__toggle span:nth-child(2) {
    top: calc(50% - 1px);
  }
  .navbar__toggle span:nth-child(3) {
    top: calc(50% + 4px);
  }
  .navbar--open .navbar__toggle span:nth-child(1) {
    top: calc(50% - 1px);
  }
  .navbar--open .navbar__toggle span:nth-child(3) {
    top: calc(50% - 1px);
  }
}

/* Keep unavailable controls visibly distinct from active interactions. */
button:disabled,
input:disabled,
select:disabled,
textarea:disabled,
[aria-disabled="true"] {
  cursor: not-allowed;
}

/* ============ Responsive System Refinements ============ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

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

button,
input,
select,
textarea {
  min-width: 0;
}

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

h1,
h2 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a,
button,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

.section[id],
section[id],
.pkg[id],
.custom-request[id] {
  scroll-margin-top: 120px;
}

/* ============ Refined Package Details Page ============ */
.details-hero {
  min-height: 520px;
  margin-bottom: 10px;
  padding: 140px clamp(28px, 6vw, 88px) 64px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 15%, rgba(254, 160, 0, 0.18), transparent 30%),
    var(--deep-green);
  align-items: flex-start;
  text-align: left;
}

.details-hero__content {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 14px;
}

.details-hero__eyebrow,
.pkg-details__eyebrow,
.booking-card__eyebrow,
.booking-modal__eyebrow {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.details-hero__eyebrow {
  color: var(--amber-text);
}

.details-hero__badge {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
}

.details-hero__title {
  max-width: 840px;
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.details-hero__tagline {
  max-width: 720px;
  color: rgba(243, 243, 243, 0.76);
  font-size: 17px;
  line-height: 1.65;
}

.details-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(700px, 100%);
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.details-hero__meta-item {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.details-hero__meta-item + .details-hero__meta-item {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.details-hero__meta-item span {
  color: rgba(243, 243, 243, 0.62);
  font-size: 12px;
}

.details-hero__meta-item strong {
  color: var(--text-light);
  font-size: 17px;
  font-weight: 600;
}

.details-hero__meta-item:first-child strong {
  color: var(--amber-text);
}

.details-hero__selector {
  width: min(440px, 100%);
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.details-hero__selector label {
  color: rgba(243, 243, 243, 0.7);
  font-size: 12px;
  font-weight: 600;
}

.details-hero__select-wrap {
  position: relative;
}

.details-hero__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url("assets/caret-down.svg?v=2") center / contain no-repeat;
  pointer-events: none;
}

.details-hero__selector select {
  width: 100%;
  min-height: 48px;
  padding: 12px 48px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: var(--mint);
  color: var(--deep-green);
  font: 600 15px/1.4 var(--font-sans);
  appearance: none;
}

.pkg-details {
  margin: 0;
  padding: clamp(52px, 6vw, 84px) clamp(24px, 5vw, 72px);
  gap: 24px;
  border-radius: var(--radius-lg);
}

.breadcrumbs {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--hint);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--deep-green);
  font-weight: 600;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.pkg-details__container {
  width: 100%;
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 32px;
}

.pkg-details__main {
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(206, 206, 206, 0.65);
  border-radius: var(--radius-lg);
  background: #fff;
}

.pkg-details__intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

.pkg-details__eyebrow,
.booking-card__eyebrow,
.booking-modal__eyebrow {
  color: var(--amber-text);
}

.pkg-details__intro-title {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--deep-green);
}

.pkg-details__description {
  color: #555e5c;
  font-size: 16px;
  line-height: 1.7;
}

.tabs-nav {
  gap: 4px;
  margin-bottom: 28px;
  padding: 5px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--mint);
}

.tabs-btn {
  flex: 1 0 auto;
  min-height: 44px;
  padding: 10px 14px;
  border: 0;
  border-radius: 9px;
  color: #5f6866;
  font-size: 14px;
}

.tabs-btn.is-active {
  border: 0;
  background: var(--deep-green);
  color: var(--text-light);
}

.tabs-btn:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.7);
}

.highlights-grid {
  gap: 14px;
}

.highlight-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(206, 206, 206, 0.45);
  border-radius: var(--radius-md);
  background: var(--mint);
}

.highlight-card:hover,
.info-row:hover {
  transform: none;
}

.highlight-card__icon,
.info-row__icon {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
}

.itinerary-timeline {
  gap: 14px;
  padding-left: 0;
}

.itinerary-timeline::before,
.itinerary-item__dot {
  display: none;
}

.itinerary-item {
  padding: 18px;
  border: 1px solid rgba(206, 206, 206, 0.55);
  border-radius: var(--radius-md);
  background: #fff;
}

.itinerary-item__grid {
  gap: 14px;
}

.itinerary-item__day {
  min-width: 82px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--amber-text);
}

.itinerary-item__title-text {
  font-size: 18px;
}

.list-details {
  gap: 16px;
}

.list-details__section {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--mint);
}

.list-details__icon--excluded {
  filter: grayscale(1) opacity(0.5);
}

.info-table {
  gap: 12px;
}

.info-row {
  padding: 18px;
  border: 1px solid rgba(206, 206, 206, 0.55);
  border-radius: var(--radius-md);
  background: #fff;
}

.info-row:last-child {
  padding-bottom: 18px;
}

.pkg-details__sidebar {
  width: auto;
}

.booking-card {
  top: 112px;
  padding: 26px;
  border-color: rgba(206, 206, 206, 0.7);
  box-shadow: 0 18px 48px rgba(16, 39, 35, 0.08);
}

.booking-card__eyebrow {
  margin-bottom: 8px;
}

.booking-card__title {
  margin-bottom: 8px;
  font-size: 27px;
}

.booking-card__lead {
  margin-bottom: 22px;
  color: #606665;
  font-size: 14px;
  line-height: 1.6;
}

.booking-card__price-row {
  align-items: center;
}

.booking-card__price {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.booking-card__price span {
  color: #606665;
  font-size: 12px;
}

.booking-card__duration {
  border-radius: 999px;
}

.booking-modal__content {
  width: 100%;
}

.booking-modal__eyebrow {
  display: none;
}

.booking-form__label span {
  color: var(--hint);
  font-weight: 500;
}

.booking-form__input,
.booking-form__select,
.booking-form__textarea {
  min-height: 46px;
  font-size: 16px;
}

.booking-form__textarea {
  height: 88px;
}

.booking-form__note {
  color: var(--hint);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1100px) {
  .navbar {
    width: calc(100% - 40px);
    max-width: none;
    border-radius: calc(var(--radius-lg) - 10px);
  }

  .navbar__header,
  .navbar__actions {
    min-width: 0;
  }

  .navbar__menu {
    max-width: 100%;
  }

  .navbar--open .navbar__menu {
    max-height: min(360px, calc(100dvh - 110px));
    overflow-y: auto;
  }

  .footer__panel {
    min-height: auto;
    background-attachment: scroll;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
    width: min(520px, 100%);
  }
}

@media (max-width: 1024px) {
  .pkg-details__container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .pkg-details__sidebar {
    order: -1;
    width: 100%;
  }

  .booking-card {
    position: static;
  }

  .booking-card__mobile-btn {
    display: flex;
    min-height: 48px;
    margin-top: 16px;
  }

  .booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    padding: 20px;
    align-items: center;
    justify-content: center;
    background: rgba(16, 39, 35, 0.7);
    backdrop-filter: blur(10px);
  }

  .booking-modal.is-open {
    display: flex;
  }

  .booking-modal__content {
    position: relative;
    width: min(520px, 100%);
    max-height: calc(100dvh - 40px);
    padding: 32px 24px 24px;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    background: #fff;
  }

  .booking-modal__close {
    display: flex;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--mint);
    color: var(--deep-green);
    font-size: 25px;
  }

  .booking-modal__eyebrow,
  .booking-modal__title-mobile {
    display: block;
  }

  .booking-modal__title-mobile {
    margin: 6px 48px 22px 0;
  }
}

@media (max-width: 720px) {
  .navbar {
    --navbar-logo-height: 30px;
    --navbar-control-height: 38px;
    top: max(20px, env(safe-area-inset-top));
    width: calc(100% - 40px);
    padding: 10px;
  }

  .navbar__brand {
    min-width: 0;
    padding: 0 8px;
  }

  .navbar__actions {
    gap: 7px;
  }

  .navbar__toggle {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .navbar__toggle span {
    left: 9px;
  }

  .btn--contact {
    width: auto;
    min-width: 0;
    height: var(--navbar-control-height);
    min-height: var(--navbar-control-height);
    padding: 0 5px;
    gap: 6px;
    font-size: 15px;
  }

  .btn--contact::before {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }

  .hero {
    min-height: 0;
  }

  .hero--packages {
    min-height: 560px;
    justify-content: center;
  }

  .hero--compact {
    min-height: 440px;
  }

  .hero--about {
    min-height: 500px;
  }

  .hero__content {
    margin-top: 126px;
  }

  .hero--home .hero__content {
    margin-top: 108px;
  }

  .hero__content--packages,
  .hero__content--about {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 32px);
    max-width: 620px;
    margin: 126px auto 64px;
    transform: none;
  }

  .hero__content--about {
    margin-bottom: 48px;
  }

  .hero--compact .hero__content--packages {
    margin-top: 104px;
    margin-bottom: 36px;
  }

  .hero--about .hero__content--about {
    margin-top: 104px;
    margin-bottom: 32px;
  }

  .hero__title,
  .hero__title--packages {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.025em;
  }

  .hero__subtitle {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 32px;
    gap: 20px 12px;
  }

  .hero-stat {
    width: auto;
  }

  .hero-stat span {
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }

  .search {
    width: calc(100% - 20px);
    max-width: none;
    margin-top: 40px;
    margin-bottom: 10px;
  }

  .search__tabs,
  .search__panel {
    padding: 14px;
  }

  .search__tabs {
    border-radius: calc(var(--radius-lg) - 10px) calc(var(--radius-lg) - 10px) 0 0;
  }

  .search__panel {
    border-radius: 0 0 calc(var(--radius-lg) - 10px) calc(var(--radius-lg) - 10px);
  }

  .search__tab-slider {
    top: 14px;
    left: 14px;
    width: calc(50% - 18.5px);
    height: calc(100% - 28px);
  }

  .search__fields,
  .form-card__row,
  .flight__toolbar,
  .flight__row {
    flex-direction: column;
  }

  .field,
  .form-card__row .form-field {
    flex: 1 1 auto;
    width: 100%;
  }

  .flight__toolbar {
    align-items: stretch;
  }

  .flight__radios,
  .flight__selects {
    flex-wrap: wrap;
  }

  .flight__selects .field__control,
  .flight__route,
  .flight__date {
    width: 100%;
  }

  .flight__selects .field__control {
    flex: 1 1 140px;
  }

  .section {
    padding: 48px 20px;
    gap: 32px;
  }

  .section__head {
    gap: 12px;
  }

  .section__title,
  .custom-request .process__title {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.2;
    letter-spacing: -0.03em;
  }

  .about {
    gap: 40px;
  }

  .about__row,
  .why__grid,
  .testimonials__row {
    flex-direction: column;
  }

  .why__grid {
    align-items: stretch;
  }

  .stat-card,
  .why__col,
  .testi-card {
    flex: none;
    width: 100%;
  }

  .about__photo {
    flex: none;
    height: auto;
    aspect-ratio: 851 / 480;
  }

  .why__photo {
    height: min(105vw, 420px);
  }

  .why__photo {
    order: 0;
    flex: none;
    width: 100%;
  }

  .why-card {
    width: 100%;
  }

  .quote-card {
    width: 100%;
    padding: 40px 0;
    gap: 48px;
  }

  .quote-card__quote p {
    font-size: 24px;
    line-height: 1.45;
  }

  .partners__strip::before,
  .partners__strip::after,
  .institutions__strip::before,
  .institutions__strip::after {
    width: 44px;
  }

  .institutions__logos {
    height: 64px;
    gap: 44px;
    padding-right: 44px;
  }

  .institutions__logos .institutions__logo {
    height: 50px;
  }

  .certs__panel,
  .gallery__panel,
  .why__panel {
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 32px;
  }

  .certs__panel {
    padding-bottom: 36px;
  }

  .why__panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cert-card {
    width: calc(100vw - 68px);
    max-width: 390px;
    gap: 16px;
    padding: 10px;
    border: 1px solid rgba(206, 206, 206, 0.65);
    border-radius: var(--radius-md);
    filter: none;
    box-shadow: none;
  }

  .certs__track {
    align-items: flex-start;
  }

  .certs__stage {
    touch-action: pan-y;
  }

  .cert-card__img {
    border: 1px solid rgba(206, 206, 206, 0.55);
    border-radius: calc(var(--radius-md) - 4px);
    background: #fff;
    box-shadow: none;
  }

  .cert-card__img img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
  }

  .cert-card__body {
    width: 100%;
    gap: 0;
    padding: 0 8px 10px;
  }

  .cert-card__body h3 {
    width: 100%;
    height: 3.9em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: clamp(18px, 4.8vw, 23px);
    line-height: 1.3;
  }

  .cert-card.has-details-toggle .cert-card__details {
    display: grid;
    grid-template-rows: 0fr;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
      grid-template-rows 0.3s cubic-bezier(0.22, 1, 0.36, 1),
      margin-top 0.3s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.18s ease,
      visibility 0s linear 0.3s;
  }

  .cert-card.has-details-toggle.is-details-open .cert-card__details {
    grid-template-rows: 1fr;
    margin-top: 12px;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  .cert-card__details > p {
    min-height: 0;
    margin: 0;
    overflow: hidden;
  }

  .cert-card__toggle {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-top: 12px;
    padding: 4px 0 2px;
    border: 0;
    border-bottom: 1px solid var(--deep-green);
    border-radius: 0;
    background: transparent;
    color: var(--deep-green);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
  }

  .certs__controls {
    gap: 16px;
  }

  .pricing__body {
    gap: 24px;
  }

  .pkg {
    max-width: 420px;
  }

  .pkg__title {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .pkg__title h3 {
    min-width: 0;
    font-size: 21px;
    line-height: 1.35;
  }

  .pkg__badge {
    padding: 4px 9px;
    font-size: 11px;
  }

  .pkg__price-row {
    gap: 12px;
  }

  .pkg__price strong {
    font-size: 36px;
  }

  .custom-plan {
    padding: 8px;
  }

  .custom-plan__left,
  .custom-plan__right {
    flex: none;
    width: 100%;
  }

  .pricing__actions,
  .mission__actions,
  .cta__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .pricing__actions .btn,
  .mission__actions .btn,
  .cta__actions .btn {
    flex: 1 1 180px;
  }

  .quote-banner__panel,
  .custom-request__panel,
  .process__panel,
  .faq__panel {
    padding: 40px 20px;
    gap: 32px;
  }

  .quote-banner__photo,
  .process__photo,
  .process__photo-wide,
  .custom-request__photo {
    height: min(76vw, 320px);
  }

  .quote-banner__photo {
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
  }

  .custom-request__photo {
    flex: none;
    min-height: 0;
    height: auto;
    aspect-ratio: 53 / 43;
    object-position: center 60%;
  }

  .quote-banner__quote p {
    font-size: 21px;
  }

  .flights__grid {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    padding: 0 20px;
  }

  .arch-card {
    width: 100%;
    max-width: 400px;
    min-height: 220px;
    height: auto;
    padding: 36px 28px;
  }

  .form-card {
    padding: 18px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }

  .process--wide {
    padding: 40px 20px;
  }

  .step-card,
  .faq-item {
    padding: 20px;
  }

  .step-card__q,
  .faq-item summary {
    gap: 12px;
    font-size: 18px;
    line-height: 1.45;
  }

  .step-card__q h3 {
    font-size: 18px;
  }

  .step-card > p,
  .faq-item > p {
    padding-left: 0;
  }

  .gallery__strip {
    padding: 0;
  }

  .gallery__strip img {
    width: 240px;
    height: 330px;
  }

  .testi-card {
    min-height: 0;
    padding: 22px;
  }

  .testi-card__quote {
    font-size: 18px;
  }

  .testi-card--video {
    min-height: 430px;
  }

  .mission__statement {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.35;
  }

  .mission__media {
    margin-top: 20px;
    border-radius: var(--radius-lg);
  }

  .mission__media > img {
    height: min(110vw, 500px);
  }

  .team__grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
    width: 100%;
  }

  .team-card--lead {
    grid-column: auto;
    width: 100%;
    max-width: none;
  }

  .reach-map {
    padding: 12px;
  }

  .reach-map iframe {
    min-height: 280px;
  }

  .reach-card__item > a,
  .reach-card__item > p:not(.reach-card__label),
  .reach-card__item > p:not(.reach-card__label) > a {
    overflow-wrap: anywhere;
  }

  .cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .footer__inner {
    padding: 56px 0 28px;
  }

  .footer__panel {
    background:
      linear-gradient(
        to bottom,
        var(--deep-green) 0%,
        color-mix(in srgb, var(--deep-green) 95%, transparent) 100%
      ),
      url("assets/footer-photo.jpg") bottom center / cover no-repeat,
      var(--deep-green);
  }

  .footer__cols {
    gap: 38px 24px;
    padding: 0 20px;
  }

  .footer__brand {
    gap: 22px;
  }

  .footer__brand > p {
    font-size: 16px;
  }

  .footer__col {
    gap: 18px;
    max-width: none;
  }

  .footer__bottom {
    align-items: flex-start;
    padding: 0 20px;
  }

  .footer__bottom p {
    font-size: 14px;
  }

  .details-hero {
    min-height: auto;
    padding: 126px 20px 48px;
  }

  .details-hero__title {
    font-size: clamp(38px, 12vw, 52px);
  }

  .details-hero__tagline {
    font-size: 15px;
  }

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

  .details-hero__meta-item:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .details-hero__selector {
    width: 100%;
  }

  .pkg-details {
    padding: 44px 14px;
  }

  .breadcrumbs {
    overflow-x: auto;
    white-space: nowrap;
  }

  .pkg-details__main,
  .booking-card {
    padding: 20px;
  }

  .pkg-details__intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tabs-nav {
    flex-wrap: nowrap;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
  }

  .tabs-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .highlights-grid,
  .list-details {
    grid-template-columns: 1fr;
  }

  .highlight-card,
  .info-row {
    padding: 16px;
  }

  .itinerary-item__grid {
    flex-direction: column;
    gap: 6px;
  }

  .itinerary-item__day {
    min-width: 0;
  }

  .booking-card__price-row {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .booking-modal {
    align-items: flex-end;
    padding: 0;
  }

  .booking-modal__content {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 30px 20px max(24px, env(safe-area-inset-bottom));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
}

@media (max-width: 480px) {
  .navbar {
    --navbar-logo-height: 27px;
    width: calc(100% - 40px);
  }

  .navbar__brand {
    padding-left: 5px;
    padding-right: 5px;
  }

  .btn--contact {
    padding-left: 4px;
    padding-right: 4px;
    font-size: 15px;
    letter-spacing: 0;
  }

  .hero__actions,
  .pricing__actions,
  .mission__actions,
  .cta__actions {
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .hero__actions .btn,
  .pricing__actions .btn,
  .mission__actions .btn,
  .cta__actions .btn {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 13px;
    white-space: normal;
    text-align: center;
  }

  .hero__actions {
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .hero__actions .btn {
    flex: 0 1 auto;
    padding: 11px 12px;
    font-size: 14px;
    white-space: nowrap;
  }

  .hero__actions .btn--whatsapp {
    gap: 6px;
  }

  .hero--packages {
    min-height: 540px;
  }

  .hero--compact {
    min-height: 420px;
  }

  .hero--compact .hero__content--packages {
    margin-top: 96px;
    margin-bottom: 32px;
  }

  .hero__content--about {
    margin-bottom: 40px;
  }

  .hero--about {
    min-height: 490px;
  }

  .hero--about .hero__content--about {
    margin-top: 96px;
    margin-bottom: 28px;
  }

  .hero__stats {
    gap: 18px 8px;
  }

  .hero-stat strong {
    font-size: 27px;
  }

  .search__tab {
    gap: 6px;
    font-size: 13px;
  }

  .search__tab img {
    width: 18px;
    height: 18px;
  }

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

  .pkg__pill {
    align-self: flex-start;
  }

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

  .footer__brand {
    grid-column: auto;
  }

  .footer__mail {
    overflow-wrap: anywhere;
  }

  .details-hero__meta-item {
    padding: 12px;
  }

  .details-hero__meta-item strong {
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .hero__actions {
    gap: 4px;
  }

  .hero__actions .btn {
    padding: 10px 5px;
    gap: 5px;
    font-size: 13px;
  }

  .hero__actions .btn--whatsapp {
    gap: 4px;
  }

  .hero__actions .btn img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 340px) {
  .cert-card__body h3 {
    height: 5.2em;
    -webkit-line-clamp: 4;
  }

  .navbar {
    --navbar-logo-height: 24px;
    --navbar-control-height: 34px;
  }

  .btn--contact {
    flex: 0 0 auto;
    padding: 0 1px;
    gap: 4px;
    font-size: 14px;
  }

  .btn--contact::before {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .navbar__toggle {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .navbar__toggle span {
    left: 7px;
  }

  .section {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* Brief tactile feedback for every button-style control. */
@keyframes button-press {
  to {
    scale: var(--button-scale-press);
  }
}

@media (prefers-reduced-motion: no-preference) {
  :is(
    button:not(:disabled),
    .btn[href],
    .pkg__select[href],
    .pkg__more[href],
    .reach-card__cta[href]
  ):active {
    animation: button-press 120ms var(--ease-out) forwards;
  }
}

/* Restrained hover motion for primary, high-intent actions only. */
@media (hover: hover) and (pointer: fine) {
  :is(
    .btn--primary,
    .btn--dark,
    .btn--submit,
    .booking-form__submit,
    .reach-card__cta
  ) {
    transition-property: background-color, border-color, color, box-shadow, transform;
    transition-duration: var(--motion-fast);
    transition-timing-function: var(--ease-out);
  }

  :is(
    .btn--primary,
    .btn--dark,
    .btn--submit,
    .booking-form__submit,
    .reach-card__cta
  ):hover {
    transform: scale(var(--button-scale-hover));
  }
}

@media (hover: none) {
  .btn:hover,
  .pkg__select:hover,
  .pkg__more:hover,
  .certs__arrow:hover,
  .reach-card__cta:hover,
  .highlight-card:hover,
  .info-row:hover {
    transform: none;
  }

  .btn:hover,
  .pkg__select:hover,
  .pkg__more:hover,
  .certs__arrow:hover {
    box-shadow: none;
  }

  .btn--contact:hover {
    background: transparent;
    color: var(--text-light);
  }

  .btn--primary:hover {
    background: var(--amber);
  }

  .btn--whatsapp:hover,
  .btn--outline:hover,
  .pkg:not(.pkg--featured) .pkg__select:hover {
    background: var(--surface);
  }

  .btn--outline:hover {
    border-color: var(--border);
  }

  .btn--submit:hover,
  .btn--dark:hover {
    background: var(--button-gradient-deep);
  }

  .pkg__more:hover {
    background: var(--mint);
  }

  .certs__arrow:hover {
    background: var(--button-gradient-deep);
  }

  .reach-card__cta:hover {
    box-shadow: inset 0 1px 0 color-mix(in srgb, white 25%, transparent);
  }

  .booking-form__submit:hover {
    background: var(--amber);
    color: var(--deep-green);
  }
}

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

  :is(
    .btn--primary,
    .btn--dark,
    .btn--submit,
    .booking-form__submit,
    .reach-card__cta
  ):hover {
    transform: none;
  }
}
/* ============ Original Package Details — Responsive Adaptation ============ */
/* Restore the established package-details visual treatment. The rules below
   only add layout adaptations for narrower screens. */
.details-hero {
  min-height: 280px;
  margin-bottom: 24px;
  padding: 120px 40px 40px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--deep-green);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.details-hero__content {
  width: auto;
  max-width: 800px;
  margin: 0;
  align-items: center;
  gap: 12px;
}

.details-hero__title {
  max-width: none;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: normal;
}

.details-hero__tagline {
  max-width: none;
  color: var(--hint);
  font-size: 16px;
  line-height: 1.6;
}

.pkg-details {
  margin-top: 24px;
  padding: 80px 40px;
  gap: 60px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
}

.breadcrumbs {
  width: auto;
  max-width: none;
  margin: 0 0 24px;
  align-self: flex-start;
  color: #666;
  font-size: 14px;
}

.pkg-details__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 48px;
}

.pkg-details__main {
  min-width: 0;
  flex: 1;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.pkg-details__sidebar {
  width: 440px;
  flex-shrink: 0;
}

.pkg-details__header {
  margin-bottom: 32px;
}

.pkg-details__header-top {
  margin-bottom: 12px;
  padding-bottom: 20px;
}

.pkg-details__title {
  font-size: 40px;
  line-height: 1.25;
}

.pkg-details__tagline {
  margin-top: 16px;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.6;
}

.tabs-nav {
  gap: 8px;
  margin-bottom: 32px;
  padding: 0 0 1px;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
}

.tabs-btn {
  flex: 0 1 auto;
  min-height: 0;
  padding: 12px 24px;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #666;
  font-size: 16px;
}

.tabs-btn:hover:not(.is-active) {
  background: transparent;
  color: var(--deep-green);
}

.tabs-btn.is-active {
  border: 0;
  border-bottom: 3px solid var(--amber);
  background: transparent;
  color: var(--deep-green);
}

.highlights-grid {
  gap: 24px;
}

.highlight-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.highlight-card:hover,
.info-row:hover {
  transform: translateX(4px);
}

.highlight-card__icon,
.info-row__icon {
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.itinerary-timeline {
  gap: 24px;
  padding-left: 28px;
}

.itinerary-timeline::before {
  display: block;
}

.itinerary-item {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.itinerary-item__dot {
  display: block;
}

.itinerary-item__grid {
  gap: 6px;
}

.itinerary-item__day {
  min-width: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
}

.itinerary-item__title-text {
  font-size: 20px;
}

.list-details {
  gap: 32px;
}

.list-details__section {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.info-table {
  gap: 20px;
}

.info-row {
  padding: 0 0 20px;
  border: 0;
  border-bottom: 1px solid rgba(206, 206, 206, 0.3);
  border-radius: 0;
  background: transparent;
}

.info-row:last-child {
  padding-bottom: 0;
}

.booking-card {
  top: 40px;
  padding: 32px;
  border-color: var(--border);
  box-shadow: 0 12px 32px rgba(16, 39, 35, 0.04);
}

.booking-card__title {
  margin-bottom: 8px;
  font-size: 24px;
}

.booking-card__price-row {
  align-items: baseline;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.booking-card__duration {
  border-radius: 20px;
}

.booking-modal__content {
  width: 100%;
}

@media (max-width: 1100px) {
  .details-hero {
    padding: 100px 24px 32px;
  }

  .pkg-details {
    padding: 60px 24px;
  }

  .pkg-details__container {
    flex-direction: column;
    gap: 40px;
  }

  .pkg-details__sidebar {
    order: initial;
    width: 100%;
  }

  .booking-card {
    position: static;
    padding: 24px;
  }

  .booking-card__mobile-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
  }

  .booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    padding: 16px;
    align-items: center;
    justify-content: center;
    background: rgba(10, 23, 21, 0.65);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .booking-modal.is-open {
    display: flex;
  }

  .booking-modal__content {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90dvh;
    padding: 32px 24px 24px;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 20px 40px rgba(16, 39, 35, 0.15);
  }

  .booking-modal__close {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #666;
    font-size: 28px;
  }

  .booking-modal__title-mobile {
    display: block;
    margin: 0 40px 20px 0;
    font-size: 24px;
  }
}

@media (max-width: 720px) {
  .details-hero {
    min-height: auto;
    padding: 90px 16px 24px;
  }

  .details-hero__title {
    font-size: 30px;
  }

  .details-hero__tagline {
    font-size: 15px;
  }

  .pkg-details {
    padding: 40px 16px;
    gap: 40px;
  }

  .pkg-details__title {
    font-size: 28px;
  }

  .tabs-nav {
    flex-wrap: wrap;
    margin-right: 0;
    margin-bottom: 24px;
    padding: 0;
    overflow: visible;
    border-bottom: 0;
    border-radius: 0;
  }

  .tabs-btn {
    flex: 1 0 calc(50% - 8px);
    padding: 10px 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    font-size: 14px;
    white-space: normal;
  }

  .tabs-btn:hover:not(.is-active) {
    border-color: var(--amber);
  }

  .tabs-btn.is-active {
    border: 1px solid var(--amber);
    background: var(--amber);
  }

  .highlights-grid,
  .list-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .highlight-card,
  .info-row {
    padding-left: 0;
    padding-right: 0;
  }

  .itinerary-item__grid {
    flex-direction: row;
    gap: 6px;
  }

  .booking-card__price-row {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
  }

  .booking-modal {
    align-items: center;
    padding: 16px;
  }

  .booking-modal__content {
    width: 100%;
    max-height: calc(100dvh - 32px);
    padding: 32px 20px 24px;
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 420px) {
  .itinerary-item__grid {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 28px;
  }

  .about {
    gap: 36px;
  }

  .certs__panel,
  .gallery__panel,
  .why__panel {
    padding-top: 36px;
    padding-bottom: 36px;
    gap: 28px;
  }

  .certs__panel {
    padding-bottom: 32px;
  }

  .quote-banner__panel,
  .custom-request__panel,
  .process__panel,
  .faq__panel,
  .process--wide {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .quote-banner__panel,
  .custom-request__panel,
  .process__panel,
  .faq__panel {
    gap: 28px;
  }

  .cta {
    padding-top: 56px;
    padding-bottom: 56px;
    gap: 32px;
  }
}

/* ============ Mobile Section Rhythm ============ */
@media (max-width: 720px) {
  body > :is(section, footer) + :is(section, footer) {
    margin-top: var(--section-gap);
  }

  body > .process--wide {
    margin-top: var(--section-gap);
  }
}

/* ============ Touch Form Focus Stability ============ */
/* iOS zooms the viewport when an editable control is focused below 16px.
   Apply the minimum to every touch-first device, including tablets. */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* ============ Package Details Hero Alignment ============ */
/* Reuse the same visual proportions as the other compact secondary heroes. */
.details-hero.hero {
  min-height: 460px;
  margin-bottom: 0;
  padding: 0;
  border-radius: var(--radius-lg);
  background: transparent;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.details-hero .details-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1040px;
  max-width: calc(100% - 40px);
  margin: 0;
  transform: translate(-50%, -50%);
  align-items: center;
  gap: 0;
}

.details-hero .details-hero__title {
  max-width: none;
  font-size: 64px;
  line-height: 1.4;
  letter-spacing: normal;
}

.details-hero .details-hero__tagline {
  max-width: 831px;
  margin-top: 8px;
  color: var(--text-light);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.details-hero + .pkg-details {
  margin-top: var(--section-gap);
}

@media (max-width: 720px) {
  .details-hero.hero {
    min-height: 440px;
    padding: 0;
  }

  .details-hero .details-hero__content {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 32px);
    max-width: 620px;
    margin: 104px auto 36px;
    transform: none;
  }

  .details-hero .details-hero__title {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.025em;
  }

  .details-hero .details-hero__tagline {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .details-hero.hero {
    min-height: 420px;
  }

  .details-hero .details-hero__content {
    margin-top: 96px;
    margin-bottom: 32px;
  }
}

input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
select,
textarea {
  font-size: 16px !important;
}

input,
select,
textarea,
button,
a,
summary,
[role="button"] {
  touch-action: manipulation;
}

input[type="date"] {
  min-height: 48px;
  color-scheme: light;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  min-width: 22px;
  min-height: 22px;
  cursor: pointer;
  opacity: 1;
}

/* ============ Package Cards: Small Screens ============ */
@media (max-width: 720px) {
  .pkg {
    min-width: 0;
    padding: 8px 8px 14px;
    gap: 16px;
  }

  .pkg__head {
    min-width: 0;
    padding: 14px;
    gap: 16px;
  }

  .pkg__title {
    min-width: 0;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .pkg__title > img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }

  .pkg__title h3 {
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(18px, 5.2vw, 21px);
    line-height: 1.3;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .custom-plan .pkg__title {
    align-items: flex-start;
  }

  .custom-plan .pkg__title > img {
    margin-top: 2px;
  }

  .custom-plan .pkg__title h3 {
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  .pkg__badge {
    flex: 0 0 auto;
    width: auto;
    min-width: 68px;
    height: 24px;
    margin-left: auto;
    padding: 2px 8px;
    font-size: 10px;
    line-height: 1.4;
  }

  .pkg__desc {
    margin-top: 0;
  }

  .pkg__price-row {
    min-width: 0;
    flex-direction: row;
    align-items: flex-end;
    gap: 8px;
  }

  .pkg__price {
    min-width: 0;
  }

  .pkg__price strong {
    font-size: clamp(31px, 9vw, 36px);
  }

  .pkg__pill {
    flex: 0 0 auto;
    align-self: flex-end;
    padding: 5px 9px;
    font-size: 12px;
  }

  .pkg__select {
    font-size: 16px;
  }

  .pkg__included {
    padding: 0 4px;
  }

  .pkg__included li {
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
  }

  .pkg__included li img {
    flex: 0 0 20px;
    margin-top: 1px;
  }

  .pkg__hotel-link {
    align-items: flex-start;
  }

}

/* ============ Process Image Alignment ============ */
/* On wide layouts, let the image fill the remaining left-column height so its
   lower edge aligns precisely with the final process card. */
@media (min-width: 1101px) {
  .process__panel {
    align-items: stretch;
  }

  .process__left {
    align-self: stretch;
  }

  .process__photo {
    height: auto;
    min-height: 405px;
    flex: 1 1 405px;
  }
}

/* ============ Custom Request Form Alignment ============ */
.form-field textarea.form-field__textarea--fixed {
  height: 108px;
  min-height: 108px;
  max-height: 108px;
  overflow-y: auto;
  resize: none;
  scrollbar-gutter: stable;
  overscroll-behavior: contain;
}

@media (min-width: 1101px) {
  .custom-request__left:has(.custom-request__photo) {
    align-self: stretch;
  }

  .custom-request__left .custom-request__photo {
    height: 0;
    min-height: 0;
    aspect-ratio: auto;
    flex: 1 1 0;
  }
}

/* ============ Compact About Hero ============ */
.hero--about {
  min-height: 460px;
}

.hero--about .hero__content--about {
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero--about .hero__title {
  font-size: 64px;
}

.hero--about .hero__stats {
  margin-top: 24px;
  gap: 36px;
}

@media (max-width: 720px) {
  .hero--about {
    min-height: 440px;
  }

  .hero--about .hero__content--about {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 32px);
    max-width: 620px;
    margin: 88px auto 22px;
    transform: none;
  }

  .hero--about .hero__title {
    font-size: clamp(36px, 10vw, 46px);
  }

  .hero--about .hero__subtitle {
    line-height: 1.55;
  }

  .hero--about .hero__stats {
    margin-top: 24px;
    gap: 14px 8px;
  }
}

@media (max-width: 480px) {
  .hero--about {
    min-height: 420px;
  }

  .hero--about .hero__content--about {
    margin-top: 84px;
    margin-bottom: 16px;
  }

  .hero--about .hero__stats {
    margin-top: 22px;
    gap: 12px 8px;
  }
}

/* ============ Secondary Hero Sizing ============ */
/* Size each secondary hero according to its actual content rather than using
   one oversized height for every page. */
.hero--listing,
.details-hero.hero {
  min-height: 350px;
}

.hero--contact {
  min-height: 370px;
}

.hero--contact .hero__content--packages {
  top: calc(50% + 10px);
}

.hero--about {
  min-height: 420px;
}

.hero--about .hero__stats {
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .hero--listing,
  .details-hero.hero {
    min-height: 360px;
  }

  .hero--contact {
    min-height: 390px;
  }

  .hero--listing .hero__title,
  .hero--contact .hero__title,
  .details-hero .details-hero__title {
    font-size: clamp(44px, 5.4vw, 56px);
    line-height: 1.2;
  }

  .hero--about .hero__title {
    font-size: clamp(48px, 5.1vw, 54px);
    line-height: 1.2;
  }

  .hero--about .hero__stats {
    margin-top: 18px;
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .hero--listing,
  .details-hero.hero {
    min-height: 360px;
  }

  .hero--contact {
    min-height: 390px;
  }

  .hero--listing .hero__content--packages,
  .hero--contact .hero__content--packages,
  .details-hero .details-hero__content {
    position: absolute;
    top: calc(50% + 16px);
    left: 50%;
    width: calc(100% - 32px);
    max-width: 620px;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .hero--listing .hero__title,
  .hero--contact .hero__title,
  .details-hero .details-hero__title {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.12;
  }

  .hero--listing .hero__subtitle,
  .hero--contact .hero__subtitle,
  .details-hero .details-hero__tagline {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero--about {
    min-height: 420px;
  }

  .hero--about .hero__content--about {
    margin: 80px auto 18px;
  }

  .hero--about .hero__title {
    font-size: clamp(36px, 9.5vw, 44px);
  }

  .hero--about .hero__subtitle {
    font-size: 14.5px;
    line-height: 1.5;
  }

  .hero--about .hero__stats {
    margin-top: 18px;
    gap: 10px 8px;
  }
}

@media (max-width: 480px) {
  .hero--listing,
  .details-hero.hero {
    min-height: 340px;
  }

  .hero--contact {
    min-height: 380px;
  }

  .hero--contact .hero__subtitle {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero--about {
    min-height: 400px;
  }

  .hero--about .hero__content--about {
    margin: 76px auto 12px;
  }

  .hero--about .hero__title {
    font-size: 36px;
  }

  .hero--about .hero__subtitle {
    font-size: 14px;
  }

  .hero--about .hero__stats {
    margin-top: 16px;
    gap: 8px;
  }

  .hero--about .hero-stat strong {
    font-size: 25px;
  }

  .hero--about .hero-stat span {
    font-size: 13px;
  }
}

/* ============ About Hero — compact content distribution ============ */
.hero--about {
  min-height: 370px;
}

.hero--about .hero__content--about {
  position: absolute;
  top: 118px;
  bottom: 24px;
  left: 50%;
  width: 1040px;
  max-width: calc(100% - 40px);
  margin: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero--about .hero__title {
  font-size: 64px;
  line-height: 1.12;
}

.hero--about .hero__subtitle {
  margin-top: 6px;
}

.hero--about .hero__stats {
  width: 100%;
  margin-top: auto;
  padding-top: 28px;
  gap: 36px;
}

@media (max-width: 1100px) {
  .hero--about {
    min-height: 390px;
  }

  .hero--about .hero__content--about {
    top: 104px;
    bottom: 22px;
    width: calc(100% - 40px);
  }

  .hero--about .hero__title {
    font-size: clamp(48px, 5.1vw, 54px);
  }

  .hero--about .hero__stats {
    padding-top: 26px;
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .hero--about {
    min-height: 440px;
  }

  .hero--about .hero__content--about {
    top: 94px;
    bottom: 18px;
    width: calc(100% - 32px);
  }

  .hero--about .hero__title {
    font-size: clamp(36px, 9.5vw, 44px);
  }

  .hero--about .hero__subtitle {
    font-size: 14.5px;
    line-height: 1.5;
  }

  .hero--about .hero__stats {
    margin-top: auto;
    padding-top: 24px;
    gap: 10px 8px;
  }
}

@media (max-width: 480px) {
  .hero--about .hero__content--about {
    top: 88px;
    bottom: 16px;
  }

  .hero--about .hero__title {
    font-size: 36px;
  }

  .hero--about .hero__subtitle {
    font-size: 14px;
  }

  .hero--about .hero__stats {
    padding-top: 22px;
    gap: 8px;
  }
}

/* ============ Mobile Quote Card Spacing ============ */
@media (max-width: 480px) {
  .quote-card {
    padding-top: 28px;
    padding-bottom: 40px;
    gap: 56px;
  }

  .quote-card__quote,
  .quote-card__contact {
    width: calc(100% - 48px);
    max-width: none;
  }

  .quote-card__contact {
    margin-top: 0;
  }

  .quote-card__quote cite {
    margin-top: 16px;
  }

  .quote-card__contact > p {
    font-size: clamp(10.5px, 3vw, 12px);
    line-height: 1.4;
    letter-spacing: -0.025em;
    white-space: nowrap;
  }

  .quote-card__phone {
    margin-top: 14px;
  }
}

/* ============ Hotel Directory ============ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hotel-hero__eyebrow,
.hotel-directory__kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hotel-hero__eyebrow {
  margin-bottom: 12px;
  color: var(--amber-text);
}

.hotel-directory__kicker {
  color: var(--emerald);
}

.hotel-directory {
  padding-top: 88px;
  padding-bottom: 88px;
  gap: 0;
}

.hotel-directory__intro {
  width: min(880px, calc(100% - 40px));
  max-width: none;
  margin: 0 auto 36px;
  gap: 14px;
}

.hotel-process .section__title {
  margin-top: 8px;
}

.hotel-directory__intro .section__title {
  margin: 0;
  line-height: 1.25;
}

.hotel-directory__intro .section__lead {
  max-width: 780px;
}

.hotel-filters {
  position: sticky;
  top: 104px;
  z-index: 20;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto 28px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 12px 34px color-mix(in srgb, var(--deep-green) 7%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hotel-filter {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hotel-filter__label {
  flex-shrink: 0;
  color: var(--body-muted);
  font-size: 13px;
  font-weight: 700;
}

.hotel-filter__options {
  display: flex;
  gap: 6px;
}

.hotel-filter__button {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: calc(var(--radius-md) - 2px);
  background: var(--off-white);
  color: var(--deep-green);
  font: 600 14px/1.4 var(--font-sans);
  white-space: nowrap;
  transition: background-color var(--motion-fast) var(--ease-out), color var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out);
}

.hotel-filter__button:hover {
  border-color: color-mix(in srgb, var(--deep-green) 20%, transparent);
}

.hotel-filter__button.is-active {
  border-color: var(--deep-green);
  background: var(--deep-green);
  color: var(--text-light);
}

.hotel-results {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.hotel-results__head {
  min-height: 34px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--body-muted);
  font-size: 14px;
}

.hotel-results__head strong {
  color: var(--deep-green);
  font-size: 16px;
}

.hotel-results__note {
  text-align: right;
}

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

.hotel-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(200px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 12px 36px color-mix(in srgb, var(--deep-green) 6%, transparent);
}

.hotel-card[hidden] {
  display: none;
}

.hotel-card__media {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: var(--text-light);
  text-decoration: none;
  isolation: isolate;
}

.hotel-card__media::before,
.hotel-card__media::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hotel-card__media::before {
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 76% 20%, color-mix(in srgb, var(--amber) 20%, transparent) 0%, transparent 34%),
    linear-gradient(160deg, color-mix(in srgb, var(--deep-green) 92%, transparent), color-mix(in srgb, var(--emerald) 70%, transparent)),
    url("assets/section-pattern.svg?v=2") center / 540px auto;
  transition: transform 480ms var(--ease-out);
}

.hotel-card__media--madinah::before {
  background:
    radial-gradient(circle at 76% 20%, color-mix(in srgb, var(--amber) 16%, transparent) 0%, transparent 34%),
    linear-gradient(160deg, color-mix(in srgb, var(--deep-green) 80%, transparent), color-mix(in srgb, var(--emerald) 82%, var(--deep-green))),
    url("assets/section-pattern.svg?v=2") center / 540px auto;
}

.hotel-card__media::after {
  z-index: -1;
  width: 190px;
  height: 190px;
  right: -72px;
  bottom: -60px;
  border: 44px solid color-mix(in srgb, var(--amber) 42%, transparent);
  border-radius: var(--radius-round);
  opacity: 0.58;
}

.hotel-card__media:hover::before {
  transform: scale(1.025);
}

.hotel-card__city {
  align-self: flex-start;
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, white 26%, transparent);
  border-radius: var(--radius-round);
  background: color-mix(in srgb, var(--deep-green) 34%, transparent);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hotel-card__media-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 650;
}

.hotel-card__media-action img,
.hotel-card__button img {
  width: 16px;
  height: 16px;
}

.hotel-card__media-action img {
  filter: brightness(0) invert(1);
}

.hotel-card__body {
  min-width: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.hotel-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.hotel-card__rating {
  flex-shrink: 0;
  padding-top: 4px;
  color: var(--amber-text);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hotel-card__details {
  min-width: 0;
}

.hotel-card__heading h3 {
  min-width: 0;
  flex: 1;
  color: var(--deep-green);
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.hotel-card__status {
  flex-shrink: 0;
  padding: 6px 9px;
  border-radius: var(--radius-round);
  background: var(--mint);
  color: var(--emerald);
  font-size: 11px;
  font-weight: 750;
}

.hotel-card__summary {
  margin-top: 14px;
  color: var(--body-muted);
  font-size: 14px;
  line-height: 1.65;
}

.hotel-card__proximity {
  margin-top: 12px;
  padding: 0;
  display: block;
}

.hotel-card__proximity div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.hotel-card__proximity span {
  color: var(--team-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.hotel-card__proximity strong {
  color: var(--deep-green);
  font-size: 13px;
  line-height: 1.45;
}

.hotel-card__proximity span small {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.hotel-card__actions {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8px;
}

.hotel-card__button {
  width: 100%;
  min-height: 45px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--deep-green);
  font-size: 13px;
  line-height: 1.3;
}

.hotel-card__button:hover {
  border-color: var(--deep-green);
  background: var(--mint);
}

.hotel-card__button--primary {
  border-color: var(--deep-green);
  background: var(--deep-green);
  color: var(--text-light);
}

.hotel-card__button--primary:hover {
  background: color-mix(in srgb, var(--deep-green) 92%, white);
  color: var(--text-light);
}

.hotel-availability,
.hotel-empty {
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--mint);
}

.hotel-availability[hidden],
.hotel-empty[hidden] {
  display: none;
}

.hotel-availability {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid color-mix(in srgb, var(--emerald) 18%, transparent);
}

.hotel-availability__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.hotel-availability__icon img {
  width: 26px;
  height: 26px;
}

.hotel-availability h3,
.hotel-empty h3 {
  margin: 5px 0 7px;
  color: var(--deep-green);
  font-size: 25px;
  line-height: 1.25;
}

.hotel-availability p:not(.hotel-directory__kicker),
.hotel-empty p {
  max-width: 700px;
  color: var(--body-muted);
  font-size: 14px;
  line-height: 1.65;
}

.hotel-empty {
  text-align: center;
}

.hotel-empty .btn {
  margin-top: 20px;
}

.hotel-directory__disclaimer {
  width: min(1220px, calc(100% - 40px));
  margin: 24px auto 0;
  padding: 18px 20px;
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--off-white);
  color: var(--body-muted);
  font-size: 13px;
  line-height: 1.6;
}

.hotel-directory__disclaimer strong {
  color: var(--deep-green);
}

.hotel-process {
  width: 100%;
  padding: 0;
}

.hotel-process__panel {
  width: 100%;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(color-mix(in srgb, var(--deep-green) 98%, transparent), color-mix(in srgb, var(--deep-green) 98%, transparent)),
    url("assets/why-bg.png") center / cover no-repeat;
}

.hotel-process .section__head {
  margin-bottom: 32px;
}

.hotel-process .section__title,
.hotel-process .section__lead {
  color: var(--text-light);
}

.hotel-process__grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hotel-process__card {
  min-height: 168px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: center;
  align-items: baseline;
  column-gap: 10px;
  row-gap: 12px;
  border: 1px solid color-mix(in srgb, var(--text-light) 13%, transparent);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--deep-green) 72%, transparent);
}

.hotel-process__card span {
  grid-column: 1;
  color: var(--amber-text);
  font-size: 14px;
  font-weight: 750;
}

.hotel-process__card h3 {
  grid-column: 2;
  margin: 0;
  color: var(--text-light);
  font-size: 22px;
}

.hotel-process__card p {
  grid-column: 2;
  color: color-mix(in srgb, var(--text-light) 72%, transparent);
  font-size: 14px;
  line-height: 1.65;
}

.hotel-panel-link {
  margin-top: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: var(--radius-md);
  background: var(--mint);
  color: var(--deep-green);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.hotel-panel-link img {
  width: 18px;
  height: 18px;
}

@media (max-width: 1180px) {
  .hotel-card {
    grid-template-columns: 1fr;
  }

  .hotel-card__media {
    min-height: 230px;
  }

}

@media (max-width: 900px) {
  .hotel-directory {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hotel-directory__intro {
    gap: 12px;
  }

  .hotel-filters {
    position: static;
    flex-direction: column;
    gap: 12px;
  }

  .hotel-filter {
    justify-content: space-between;
  }

  .hotel-availability {
    grid-template-columns: auto 1fr;
  }

  .hotel-availability .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hotel-process__grid {
    grid-template-columns: 1fr;
  }

  .hotel-process__card {
    min-height: 0;
  }

  .hotel-process__card h3 {
    margin-top: 0;
  }

}

@media (max-width: 720px) {
  .hotel-hero__eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .hotel-directory {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .hotel-directory__intro,
  .hotel-filters,
  .hotel-results,
  .hotel-directory__disclaimer {
    width: calc(100% - 20px);
  }

  .hotel-directory__intro {
    margin-bottom: 24px;
  }

  .hotel-filters {
    padding: 12px;
    border-radius: var(--radius-md);
  }

  .hotel-filter {
    display: block;
  }

  .hotel-filter__label {
    display: block;
    margin-bottom: 8px;
  }

  .hotel-filter__options {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .hotel-filter__options::-webkit-scrollbar {
    display: none;
  }

  .hotel-results__head {
    display: block;
  }

  .hotel-results__note {
    margin-top: 5px;
    text-align: left;
  }

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

  .hotel-card__media {
    min-height: 195px;
  }

  .hotel-card__body {
    padding: 20px;
  }

  .hotel-card__heading h3 {
    font-size: 22px;
  }

  .hotel-availability,
  .hotel-empty {
    padding: 26px 20px;
  }

  .hotel-availability {
    grid-template-columns: 1fr;
  }

  .hotel-availability__icon {
    width: 48px;
    height: 48px;
  }

  .hotel-availability .btn {
    grid-column: auto;
  }

  .hotel-directory__disclaimer {
    margin-top: 18px;
    padding: 15px 16px;
  }

  .hotel-process__panel {
    padding: 36px 20px;
  }

  .hotel-process .section__head {
    margin-bottom: 24px;
  }

  .hotel-process__card {
    padding: 20px;
  }

  .hotel-process__card h3 {
    margin-top: 0;
  }

}

@media (max-width: 430px) {
  .hotel-card__heading {
    display: block;
  }

  .hotel-card__status {
    display: inline-block;
    margin-top: 10px;
  }

  .hotel-card__actions {
    grid-template-columns: 1fr;
  }

  .hotel-filter__button {
    min-height: 40px;
    padding-inline: 13px;
  }
}

/* ============ Hotel Directory — media and view refinements ============ */
.hotel-directory__kicker,
.hotel-card__city,
.hotel-card__proximity span {
  letter-spacing: 0;
  text-transform: none;
}

.hotel-directory__kicker {
  font-size: 15px;
  font-weight: 650;
}

.hotel-toolbar {
  position: sticky;
  top: 104px;
  z-index: 20;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto 28px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 12px 34px color-mix(in srgb, var(--deep-green) 7%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hotel-toolbar .hotel-filters {
  position: static;
  width: auto;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hotel-view {
  flex-shrink: 0;
  padding: 4px;
  display: flex;
  gap: 3px;
  border-radius: var(--radius-md);
  background: var(--off-white);
}

.hotel-view__button {
  min-height: 38px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: calc(var(--radius-md) - 3px);
  background: transparent;
  color: var(--body-muted);
  font: 650 13px/1 var(--font-sans);
  transition: background-color var(--motion-fast) var(--ease-out), color var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out);
}

.hotel-view__button img {
  width: 17px;
  height: 17px;
}

.hotel-view__button.is-active {
  background: var(--surface);
  color: var(--deep-green);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--deep-green) 10%, transparent);
}

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

.hotel-card {
  display: flex;
  flex-direction: column;
}

.hotel-card__media {
  width: 100%;
  min-height: 228px;
  padding: 16px;
  border: 0;
  border-radius: 0;
  background: var(--deep-green);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.hotel-card__media:not(.hotel-card__media--placeholder)::before,
.hotel-card__media:not(.hotel-card__media--placeholder)::after {
  display: none;
}

.hotel-card__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms var(--ease-out);
}

.hotel-card__media:not(.hotel-card__media--placeholder)::after {
  content: "";
  display: block;
  z-index: -1;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--deep-green) 15%, transparent), color-mix(in srgb, var(--deep-green) 12%, transparent) 50%, color-mix(in srgb, var(--deep-green) 78%, transparent));
  opacity: 1;
}

.hotel-card__media:not(.hotel-card__media--placeholder):hover .hotel-card__image {
  transform: scale(1.035);
}

.hotel-card__media--placeholder {
  cursor: default;
}

.hotel-card__media-note {
  align-self: flex-start;
  color: color-mix(in srgb, var(--text-light) 72%, transparent);
  font-size: 13px;
  font-weight: 600;
}

.hotel-card__city {
  position: relative;
  z-index: 2;
  font-size: 12px;
}

.hotel-card__media-action {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  padding: 8px 11px;
  border: 1px solid color-mix(in srgb, white 28%, transparent);
  border-radius: var(--radius-round);
  background: color-mix(in srgb, var(--deep-green) 54%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hotel-card__body {
  flex: 1;
  min-height: 0;
  padding: 24px;
}

.hotel-card__heading h3 {
  min-height: 2.4em;
  font-size: clamp(20px, 1.5vw, 24px);
}

.hotel-card__status--review {
  background: color-mix(in srgb, var(--amber) 13%, var(--surface));
  color: color-mix(in srgb, var(--deep-green) 78%, var(--amber));
}

.hotel-card__summary {
  min-height: 4.8em;
  margin-bottom: 20px;
}

.hotel-card__proximity {
  margin-top: 16px;
}

.hotel-card__proximity small {
  margin-top: 3px;
  color: var(--body-muted);
  font-size: 11px;
  line-height: 1.45;
}

.hotel-card__actions {
  margin-top: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hotel-card__actions > :only-child {
  grid-column: 1 / -1;
}

.hotel-card__button--source {
  grid-column: 1 / -1;
}

.hotel-grid:not(.is-list) .hotel-card__actions > :last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.hotel-card__pending {
  min-height: 45px;
  padding: 9px 12px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius-round);
  color: var(--body-muted);
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
}

.hotel-grid.is-list {
  grid-template-columns: 1fr;
  gap: 12px;
}

.hotel-grid.is-list .hotel-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  border-radius: calc(var(--radius-md) + 4px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--deep-green) 5%, transparent);
}

.hotel-grid.is-list .hotel-card__media {
  min-height: 112px;
  height: 100%;
  padding: 10px;
}

.hotel-grid.is-list .hotel-card__body {
  min-height: 112px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
  align-items: center;
  gap: 16px;
}

.hotel-grid.is-list .hotel-card__heading h3,
.hotel-grid.is-list .hotel-card__summary {
  min-height: 0;
}

.hotel-grid.is-list .hotel-card__heading {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px;
}

.hotel-grid.is-list .hotel-card__heading h3 {
  flex: 0 1 auto;
  font-size: clamp(17px, 1.25vw, 21px);
}

.hotel-grid.is-list .hotel-card__rating {
  padding-top: 3px;
  font-size: 11px;
}

.hotel-grid.is-list .hotel-card__summary {
  display: none;
}

.hotel-grid.is-list .hotel-card__actions {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: stretch;
}

.hotel-grid.is-list .hotel-card__actions > :only-child {
  grid-column: auto;
  width: 100%;
  max-width: 160px;
  justify-self: start;
}

.hotel-grid.is-list .hotel-card__button {
  min-height: 36px;
  padding: 7px 9px;
  font-size: 11px;
}

.hotel-grid.is-list .hotel-card__media-action {
  display: none;
}

.hotel-directory__disclaimer {
  display: grid;
  gap: 8px;
}

/* Hotel photo viewer */
.hotel-gallery {
  position: fixed;
  inset: 50% auto auto 50%;
  width: min(980px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100dvh - 48px);
  margin: 0;
  padding: 0;
  overflow: hidden;
  transform: translate(-50%, -50%);
  border: 1px solid color-mix(in srgb, var(--deep-green) 14%, transparent);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  color: var(--deep-green);
  box-shadow: 0 28px 80px color-mix(in srgb, black 30%, transparent);
}

.hotel-gallery::backdrop {
  background: color-mix(in srgb, var(--deep-green) 48%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hotel-gallery__panel {
  max-height: calc(100dvh - 48px);
  padding: 20px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 12px;
  overflow: auto;
  overscroll-behavior: contain;
}

.hotel-gallery__head,
.hotel-gallery__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hotel-gallery__head h2 {
  color: var(--deep-green);
  font: 500 clamp(24px, 3vw, 36px)/1.08 var(--font-serif);
  letter-spacing: -0.025em;
}

.hotel-gallery__head {
  padding: 2px 2px 13px;
  border-bottom: 1px solid color-mix(in srgb, var(--deep-green) 10%, transparent);
}

.hotel-gallery__close {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--deep-green);
  font: 300 32px/1 var(--font-sans);
  opacity: 0.78;
  transition: color 180ms ease, opacity 180ms ease;
}

.hotel-gallery__close:hover {
  background: transparent;
  color: var(--deep-green);
  opacity: 1;
}

.hotel-gallery__close:focus-visible {
  outline: none;
  color: var(--emerald);
  opacity: 1;
  filter: none;
}

.hotel-gallery__stage {
  position: relative;
  height: clamp(300px, 55dvh, 540px);
  overflow: hidden;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--off-white) 86%, var(--deep-green));
}

.hotel-gallery__stage > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: contain;
}

.hotel-gallery__nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border: 1px solid color-mix(in srgb, var(--text-light) 40%, transparent);
  border-radius: var(--radius-round);
  background: color-mix(in srgb, var(--deep-green) 84%, transparent);
  color: var(--text-light);
  font: 400 22px/1 var(--font-sans);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hotel-gallery__nav--prev { left: 16px; }
.hotel-gallery__nav--next { right: 16px; }

.hotel-gallery__count {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--text-light) 32%, transparent);
  border-radius: var(--radius-round);
  background: color-mix(in srgb, var(--deep-green) 82%, transparent);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 650;
}

.hotel-gallery__thumbs {
  display: flex;
  gap: 8px;
  padding: 1px 1px 3px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.hotel-gallery__thumbs button {
  width: 84px;
  height: 58px;
  flex: 0 0 84px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
  opacity: 0.55;
}

.hotel-gallery__thumbs button.is-active {
  border-color: var(--amber);
  opacity: 1;
}

.hotel-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-gallery__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--off-white);
  color: var(--body-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hotel-gallery__foot {
  padding: 10px 2px 1px;
  border-top: 1px solid color-mix(in srgb, var(--deep-green) 10%, transparent);
  color: color-mix(in srgb, var(--deep-green) 62%, transparent);
  font-size: 12px;
}

.hotel-gallery__foot a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--deep-green);
  font-weight: 650;
  text-decoration: none;
}

.hotel-gallery__foot a img {
  width: 15px;
  height: 15px;
}

@media (max-width: 1180px) {
  .hotel-toolbar {
    align-items: flex-end;
  }

  .hotel-toolbar .hotel-filters {
    flex-direction: column;
    gap: 10px;
  }

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

@media (max-width: 900px) {
  .hotel-toolbar {
    position: static;
    align-items: stretch;
  }

  .hotel-view {
    align-self: flex-end;
  }

  .hotel-grid.is-list .hotel-card {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .hotel-grid.is-list .hotel-card__body {
    min-height: 118px;
    grid-template-columns: minmax(0, 1fr) minmax(210px, 270px);
    gap: 12px;
  }

  .hotel-grid.is-list .hotel-card__media {
    min-height: 118px;
  }

  .hotel-grid.is-list .hotel-card__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-grid.is-list .hotel-card__button--source {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .hotel-toolbar {
    width: calc(100% - 20px);
    padding: 12px;
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .hotel-toolbar .hotel-filters {
    width: 100%;
  }

  .hotel-view {
    width: 100%;
    align-self: auto;
  }

  .hotel-view__button {
    flex: 1;
    justify-content: center;
  }

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

  .hotel-card__body,
  .hotel-grid.is-list .hotel-card__body {
    min-height: 0;
    padding: 20px;
  }

  .hotel-card__heading h3,
  .hotel-card__summary {
    min-height: 0;
  }

  .hotel-grid.is-list .hotel-card {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .hotel-grid.is-list .hotel-card__media {
    min-height: 128px;
    padding: 8px;
  }

  .hotel-grid.is-list .hotel-card__body {
    min-height: 128px;
    padding: 9px 11px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 8px;
  }

  .hotel-grid.is-list .hotel-card__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .hotel-grid.is-list .hotel-card__button {
    min-height: 34px;
    padding: 5px 4px;
    gap: 4px;
    font-size: 10px;
    white-space: nowrap;
  }

  .hotel-grid.is-list .hotel-card__button img {
    width: 12px;
    height: 12px;
  }

  .hotel-grid.is-list .hotel-card__class {
    margin-bottom: 4px;
    padding: 4px 6px;
    font-size: 10px;
  }

  .hotel-grid.is-list .hotel-card__heading h3 {
    font-size: 16px;
  }

  .hotel-gallery__panel {
    padding: 14px;
  }

  .hotel-gallery__stage {
    height: min(50dvh, 480px);
  }

  .hotel-gallery__foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 430px) {
  .hotel-card__heading {
    display: flex;
  }

  .hotel-card__status {
    margin-top: 0;
  }

  .hotel-card__actions {
    grid-template-columns: 1fr;
  }

  .hotel-grid.is-list .hotel-card__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-card__button--source,
  .hotel-grid.is-list .hotel-card__button--source {
    grid-column: auto;
  }

  .hotel-gallery {
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
  }

  .hotel-gallery__panel {
    max-height: calc(100dvh - 24px);
    padding: 12px;
    gap: 10px;
  }

  .hotel-gallery__head {
    padding-bottom: 10px;
  }

  .hotel-gallery__head h2 {
    font-size: 23px;
  }

  .hotel-gallery__stage {
    height: min(43dvh, 390px);
  }

  .hotel-gallery__nav {
    width: 40px;
    height: 40px;
  }

  .hotel-gallery__nav--prev { left: 10px; }
  .hotel-gallery__nav--next { right: 10px; }

  .hotel-gallery__thumbs button {
    width: 76px;
    height: 52px;
    flex-basis: 76px;
  }
}

/* ============ Hotel Directory — compact layout and motion ============ */
@keyframes hotel-image-enter {
  from {
    opacity: 0.65;
    transform: scale(1.008);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hotel-gallery-enter {
  from {
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes hotel-backdrop-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hotel-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.hotel-card {
  height: 100%;
  align-self: stretch;
  border-radius: calc(var(--radius-md) + 6px);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.hotel-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--deep-green) 18%, var(--surface-border));
  box-shadow: 0 14px 34px color-mix(in srgb, var(--deep-green) 9%, transparent);
}

.hotel-card__media {
  min-height: 178px;
  padding: 14px;
}

.hotel-card__image {
  animation: hotel-image-enter 180ms var(--ease-out) both;
}

.hotel-card__body {
  padding: 18px;
}

.hotel-card__heading h3 {
  min-height: 2.4em;
  font-size: clamp(18px, 1.3vw, 22px);
}

.hotel-card__summary {
  min-height: 3.2em;
  max-height: 3.2em;
  margin-top: 10px;
  margin-bottom: 16px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.6;
}

.hotel-card__actions {
  gap: 7px;
}

.hotel-card__button {
  min-height: 39px;
  padding: 7px 9px;
  font-size: 12px;
  transition: background-color 160ms var(--ease-out), border-color 160ms var(--ease-out), color 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.hotel-card__button:hover {
  transform: translateY(-1px);
}

.hotel-grid.is-list {
  grid-template-columns: 1fr;
  gap: 9px;
}

.hotel-grid.is-list .hotel-card {
  width: 100%;
  grid-template-columns: 122px minmax(0, 1fr);
  border-radius: calc(var(--radius-md) + 2px);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--deep-green) 4%, transparent);
}

.hotel-grid.is-list .hotel-card__media {
  min-height: 96px;
  height: 96px;
  padding: 8px;
  background: color-mix(in srgb, var(--off-white) 88%, var(--deep-green));
}

.hotel-grid.is-list .hotel-card__media:not(.hotel-card__media--placeholder)::after {
  display: none;
}

.hotel-grid.is-list .hotel-card__image {
  object-fit: contain;
}

.hotel-grid.is-list .hotel-card__city {
  padding: 5px 8px;
  font-size: 10px;
}

.hotel-grid.is-list .hotel-card__body {
  min-height: 96px;
  padding: 9px 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.hotel-grid.is-list .hotel-card__heading h3 {
  min-height: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.15;
}

.hotel-grid.is-list .hotel-card__class {
  margin-bottom: 4px;
  padding: 4px 7px;
  font-size: 10px;
}

.hotel-grid.is-list .hotel-card__actions {
  width: auto;
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.hotel-grid.is-list .hotel-card__button,
.hotel-grid.is-list .hotel-card__actions > :only-child {
  width: auto;
  min-width: 122px;
  max-width: none;
  min-height: 34px;
  padding: 6px 9px;
  justify-self: auto;
  font-size: 11px;
  white-space: nowrap;
}

.hotel-gallery[open] {
  animation: hotel-gallery-enter 220ms var(--ease-out) both;
}

.hotel-gallery[open]::backdrop {
  animation: hotel-backdrop-enter 180ms ease both;
}

@media (max-width: 1180px) {
  .hotel-grid:not(.is-list) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hotel-grid.is-list .hotel-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .hotel-grid.is-list .hotel-card__media,
  .hotel-grid.is-list .hotel-card__body {
    min-height: 100px;
  }

  .hotel-grid.is-list .hotel-card__media {
    height: 100px;
  }

  .hotel-grid.is-list .hotel-card__button,
  .hotel-grid.is-list .hotel-card__actions > :only-child {
    min-width: 110px;
  }
}

@media (max-width: 900px) {
  .hotel-grid:not(.is-list) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-grid.is-list .hotel-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .hotel-grid.is-list .hotel-card__media,
  .hotel-grid.is-list .hotel-card__body {
    min-height: 106px;
  }

  .hotel-grid.is-list .hotel-card__media {
    height: 106px;
  }

  .hotel-grid.is-list .hotel-card__body {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 8px 11px;
    gap: 9px;
  }

  .hotel-grid.is-list .hotel-card__button,
  .hotel-grid.is-list .hotel-card__actions > :only-child {
    min-width: 102px;
    padding-inline: 7px;
    font-size: 10px;
  }
}

@media (max-width: 720px) {
  .hotel-grid:not(.is-list) {
    grid-template-columns: 1fr;
  }

  .hotel-grid:not(.is-list) .hotel-card__media {
    min-height: 166px;
  }

  .hotel-grid:not(.is-list) .hotel-card__body {
    padding: 16px;
  }

  .hotel-grid:not(.is-list) .hotel-card__heading h3 {
    min-height: 2.4em;
  }

  .hotel-grid:not(.is-list) .hotel-card__summary {
    min-height: 3.2em;
  }

  .hotel-grid.is-list .hotel-card {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .hotel-grid.is-list .hotel-card__media,
  .hotel-grid.is-list .hotel-card__body {
    min-height: 116px;
  }

  .hotel-grid.is-list .hotel-card__media {
    height: 116px;
    padding: 6px;
  }

  .hotel-grid.is-list .hotel-card__body {
    padding: 7px 9px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 6px;
  }

  .hotel-grid.is-list .hotel-card__heading h3 {
    font-size: 15px;
  }

  .hotel-grid.is-list .hotel-card__class {
    margin-bottom: 3px;
    padding: 3px 5px;
    font-size: 9px;
  }

  .hotel-grid.is-list .hotel-card__actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .hotel-grid.is-list .hotel-card__button {
    width: 100%;
    min-width: 0;
    min-height: 32px;
    padding: 4px 3px;
    gap: 3px;
    font-size: 9px;
  }

  .hotel-grid.is-list .hotel-card__actions > :only-child {
    width: 118px;
    min-width: 0;
    grid-column: 1 / -1;
  }

  .hotel-grid.is-list .hotel-card__button img {
    width: 11px;
    height: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hotel-card,
  .hotel-card__image,
  .hotel-gallery[open],
  .hotel-gallery[open]::backdrop {
    animation: none;
  }

  .hotel-card,
  .hotel-card__button {
    transition: none;
  }
}

/* ============ Hotel Directory — compact filter toolbar ============ */
.hotel-toolbar {
  padding: 12px 14px;
  align-items: center;
  gap: 20px;
}

.hotel-view-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hotel-view-group__label {
  color: var(--deep-green);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.hotel-view {
  width: auto;
  padding: 3px;
  gap: 2px;
  border: 1px solid color-mix(in srgb, var(--deep-green) 8%, var(--surface-border));
  border-radius: calc(var(--radius-md) - 2px);
  background: color-mix(in srgb, var(--off-white) 76%, var(--surface));
}

.hotel-view__button {
  min-height: 34px;
  padding: 7px 10px;
  gap: 6px;
  border-radius: calc(var(--radius-md) - 5px);
  font-size: 12px;
  font-weight: 600;
}

.hotel-view__button img {
  width: 15px;
  height: 15px;
}

.hotel-view__button.is-active {
  box-shadow: 0 1px 5px color-mix(in srgb, var(--deep-green) 9%, transparent);
}

.hotel-grid.is-list .hotel-card__media {
  padding: 0;
}

.hotel-grid.is-list .hotel-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-grid.is-list .hotel-card__city {
  position: absolute;
  top: 8px;
  left: 8px;
  margin: 0;
}

.hotel-grid.is-list .hotel-card__media--placeholder::before {
  background-size: auto, auto, 180px auto;
}

@media (max-width: 1180px) {
  .hotel-toolbar {
    align-items: center;
  }

  .hotel-toolbar__filters {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .hotel-toolbar {
    align-items: center;
  }

  .hotel-toolbar__filters {
    flex-wrap: wrap;
  }

  .hotel-view {
    align-self: auto;
  }
}

@media (max-width: 720px) {
  .hotel-toolbar {
    width: 100%;
    padding: 10px;
    flex-direction: row;
    align-items: end;
    gap: 8px;
  }

  .hotel-toolbar__filters {
    min-width: 0;
    flex: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .hotel-select {
    gap: 4px;
  }

  .hotel-select > span:first-child,
  .hotel-view-group__label {
    font-size: 10px;
    font-weight: 600;
  }

  .hotel-select__control select {
    min-height: 38px;
    padding: 7px 24px 7px 8px;
    font-size: 11.5px;
  }

  .hotel-select__control img {
    right: 7px;
    width: 11px;
    height: 11px;
  }

  .hotel-view-group {
    display: none;
  }

  .hotel-view {
    width: auto;
    min-height: 38px;
    padding: 2px;
  }

  .hotel-view__button {
    flex: 0 0 auto;
    min-width: 32px;
    min-height: 32px;
    padding: 6px 8px;
  }

  .hotel-view__button span {
    display: none;
  }

  .hotel-grid.is-list .hotel-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .hotel-grid.is-list .hotel-card__media,
  .hotel-grid.is-list .hotel-card__body {
    min-height: 110px;
  }

  .hotel-grid.is-list .hotel-card__media {
    height: 110px;
  }

  .hotel-grid.is-list .hotel-card__city {
    top: 6px;
    left: 6px;
  }

  .hotel-grid.is-list .hotel-card__body {
    padding: 8px 10px;
    gap: 7px;
  }

  .hotel-grid.is-list .hotel-card__actions {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .hotel-grid.is-list .hotel-card__button {
    width: auto;
    min-width: 0;
    min-height: 30px;
    padding: 5px 7px;
    flex: 1 1 0;
    gap: 3px;
    font-size: 9px;
  }

  .hotel-grid.is-list .hotel-card__actions > :only-child {
    width: auto;
    min-width: 104px;
    max-width: 100%;
    flex: 0 1 auto;
    grid-column: auto;
  }
}
