:root {
  --blue: #06345a;
  --blue-deep: #041f3a;
  --green: #1f7a5b;
  --green-bright: #2fb37c;
  --mamey: #f47c3c;
  --mamey-soft: #ffa15f;
  --paper: #fffaf4;
  --mist: #eef8f4;
  --night: var(--blue-deep);
  --night-soft: #0b4265;
  --ocean: var(--green);
  --teal: var(--green-bright);
  --gold: var(--mamey);
  --sand: #fff0e6;
  --warm-white: #fffdf8;
  --charcoal: #263238;
  --muted: #68767a;
  --coral: #e85f2e;
  --line: rgba(4, 31, 58, 0.14);
  --white-line: rgba(255, 255, 255, 0.2);
  --shadow-soft: 0 24px 70px rgba(4, 31, 58, 0.14);
  --shadow-deep: 0 32px 90px rgba(4, 31, 58, 0.26);
  --ease-premium: cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-premium: 320ms var(--ease-premium);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(4, 31, 58, 0.04) 0%,
      rgba(255, 253, 248, 0.98) 14%,
      var(--paper) 48%,
      rgba(238, 248, 244, 0.62) 74%,
      var(--warm-white) 100%
    ),
    var(--warm-white);
  color: var(--charcoal);
  font-family:
    "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
}

main {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 250, 244, 0.72) 42%, rgba(238, 248, 244, 0.42) 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

*:focus-visible {
  outline: 3px solid rgba(47, 179, 124, 0.56);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 60;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(238, 248, 244, 0.88)),
    rgba(255, 253, 248, 0.88);
  box-shadow:
    0 18px 54px rgba(4, 31, 58, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  padding: 0 18px;
  animation: headerEntrance 720ms var(--ease-premium) both;
  backdrop-filter: blur(18px);
  transition:
    background var(--transition-premium),
    border-color var(--transition-premium),
    box-shadow var(--transition-premium);
}

.site-header::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 124, 60, 0.5), rgba(47, 179, 124, 0.42), transparent);
  content: "";
  opacity: 0.78;
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 230px;
}

.brand img {
  width: 230px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(10px, 1.25vw, 20px);
  color: rgba(38, 50, 56, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mamey), var(--green-bright));
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-premium);
}

.desktop-nav a,
.site-footer a,
.plain-link {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--ocean);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.partner-logo {
  display: flex;
  width: 72px;
  height: 58px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(4, 31, 58, 0.08);
  border-radius: 8px;
  background: white;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.partner-logo img {
  width: 64px;
  height: 54px;
  object-fit: contain;
}

.partner-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 124, 60, 0.34);
  box-shadow: 0 12px 28px rgba(4, 31, 58, 0.12);
}

.nav-cta,
.btn,
.search-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform var(--transition-premium),
    box-shadow var(--transition-premium),
    background var(--transition-premium),
    color var(--transition-premium),
    border-color var(--transition-premium);
}

.nav-cta {
  background: var(--night);
  box-shadow: 0 16px 36px rgba(4, 31, 58, 0.2);
  color: white;
  padding: 0 22px;
}

.nav-cta:hover,
.btn:hover,
.search-form button:hover {
  transform: translateY(-2px);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--night), var(--green));
  box-shadow: 0 22px 46px rgba(4, 31, 58, 0.28);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 380px);
  gap: clamp(30px, 4vw, 54px);
  align-items: center;
  overflow: hidden;
  color: white;
  isolation: isolate;
  padding:
    clamp(118px, 14vh, 150px)
    max(24px, calc((100vw - 1180px) / 2))
    clamp(46px, 8vh, 72px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--night);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
  will-change: opacity, transform;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(4, 31, 58, 0.97), rgba(6, 52, 90, 0.76) 42%, rgba(31, 122, 91, 0.2)),
    linear-gradient(0deg, rgba(4, 31, 58, 0.8), rgba(4, 31, 58, 0.08) 48%, rgba(255, 161, 95, 0.06) 100%);
  content: "";
}

.hero-slide-beach {
  opacity: 1;
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2400&q=86");
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-slide-capadoccia {
  background-image: url("public/capadoccia.jpg");
  animation: heroCapadocciaFade 6s ease-in-out infinite;
}

@keyframes heroCapadocciaFade {
  0%,
  22% {
    opacity: 0;
    transform: scale(1.015);
  }

  42%,
  66% {
    opacity: 1;
    transform: scale(1.028);
  }

  86%,
  100% {
    opacity: 0;
    transform: scale(1.015);
  }
}

@keyframes heroDrift {
  0% {
    transform: scale(1.015);
  }

  100% {
    transform: scale(1.035);
  }
}

@keyframes headerEntrance {
  from {
    opacity: 0;
    transform: translate(-50%, -16px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes heroCopyEntrance {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(8px);
  }

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

@keyframes glassCardEntrance {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    filter: blur(8px);
  }

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

@keyframes bookingEntrance {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(6px);
  }

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

@keyframes packageScenicDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.065) translate3d(-1.4%, -0.8%, 0);
  }
}

@keyframes packageWaveGlow {
  0%,
  100% {
    opacity: 0.92;
  }

  50% {
    opacity: 1;
  }
}

@keyframes packageCardPop {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: blur(7px);
  }

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

@keyframes packageImageSheen {
  from {
    transform: translateX(-125%) skewX(-18deg);
  }

  to {
    transform: translateX(220%) skewX(-18deg);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow:
      0 20px 46px rgba(4, 31, 58, 0.28),
      0 0 0 0 rgba(34, 197, 94, 0.28);
  }

  50% {
    box-shadow:
      0 22px 50px rgba(4, 31, 58, 0.32),
      0 0 0 10px rgba(34, 197, 94, 0);
  }
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -24vw;
  z-index: -1;
  width: 46vw;
  min-width: 440px;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 124, 60, 0.28);
  border-radius: 50%;
  content: "";
}

.hero::before {
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  z-index: -1;
  height: 128px;
  background:
    radial-gradient(ellipse at 14% 100%, rgba(255, 250, 244, 0.58) 0 28%, transparent 64%),
    radial-gradient(ellipse at 42% 112%, rgba(255, 253, 248, 0.7) 0 31%, transparent 68%),
    radial-gradient(ellipse at 74% 104%, rgba(238, 248, 244, 0.56) 0 27%, transparent 62%),
    radial-gradient(ellipse at 96% 118%, rgba(255, 240, 230, 0.5) 0 28%, transparent 66%),
    linear-gradient(180deg, transparent 0%, rgba(255, 250, 244, 0.34) 100%);
  content: "";
  pointer-events: none;
}

.hero-content {
  width: 100%;
  max-width: 920px;
  min-width: 0;
  transform: translateY(-34px);
}

.hero-content .eyebrow,
.hero-content h1,
.hero-text,
.hero-actions {
  animation: heroCopyEntrance 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-content h1 {
  animation-delay: 120ms;
}

.hero-text {
  animation-delay: 240ms;
}

.hero-actions {
  animation-delay: 360ms;
}

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

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(5.2rem, 6.75vw, 7.05rem);
  line-height: 0.86;
}

.hero-text {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.1vw, 1.13rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  min-width: 205px;
  border: 1px solid transparent;
  padding: 0 26px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--mamey), var(--mamey-soft));
  box-shadow: 0 18px 44px rgba(244, 124, 60, 0.25);
  color: var(--night);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff8b46, #ffc08b);
  box-shadow: 0 24px 56px rgba(244, 124, 60, 0.32);
}

.btn-primary:active,
.btn-secondary:active,
.nav-cta:active {
  transform: translateY(0);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: white;
}

.btn-secondary:hover {
  border-color: rgba(255, 161, 95, 0.62);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 42px rgba(4, 31, 58, 0.18);
}

.hero-card {
  align-self: center;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    rgba(4, 31, 58, 0.34);
  box-shadow: var(--shadow-deep);
  padding: 28px;
  animation: glassCardEntrance 980ms 420ms var(--ease-premium) both;
  backdrop-filter: blur(18px);
  transition:
    transform var(--transition-premium),
    border-color var(--transition-premium),
    background var(--transition-premium);
}

.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 161, 95, 0.38);
}

.card-kicker {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 14px 0 0;
  color: white;
  font-size: clamp(1.85rem, 2.6vw, 2.2rem);
  line-height: 1.04;
}

.hero-card dl {
  display: grid;
  gap: 1px;
  margin: 22px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-card dl div {
  padding: 15px 18px;
  background: rgba(4, 31, 58, 0.28);
}

.hero-card dt {
  color: white;
  font-size: 1.25rem;
  font-weight: 900;
}

.hero-card dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.42;
}

.booking-panel {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr);
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  overflow: hidden;
  margin: -42px auto 0;
  border: 1px solid rgba(4, 31, 58, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(238, 248, 244, 0.78) 52%, rgba(255, 240, 230, 0.82)),
    var(--warm-white);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  animation: bookingEntrance 900ms 620ms var(--ease-premium) both;
}

.booking-panel::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 124, 60, 0.5), rgba(47, 179, 124, 0.42), transparent);
  content: "";
}

.booking-copy h2,
.section-heading h2,
.section-copy h2,
.vip-copy h2,
.about h2,
.final-cta h2 {
  margin: 0;
  color: var(--night);
  font-size: 4rem;
  line-height: 0.96;
}

.booking-panel .booking-copy h2 {
  max-width: 560px;
  font-size: 3.05rem;
}

.booking-copy p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.booking-mini-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(4, 31, 58, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(4, 31, 58, 0.98), rgba(31, 122, 91, 0.9)),
    var(--night);
  box-shadow: 0 20px 50px rgba(4, 31, 58, 0.18);
  color: white;
  padding: 24px;
  transition:
    transform var(--transition-premium),
    box-shadow var(--transition-premium),
    border-color var(--transition-premium),
    background var(--transition-premium);
}

.booking-mini-card::after {
  position: absolute;
  right: -64px;
  bottom: -88px;
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 124, 60, 0.34);
  border-radius: 50%;
  content: "";
}

.booking-mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 124, 60, 0.42);
  box-shadow: var(--shadow-deep);
  background:
    linear-gradient(135deg, rgba(4, 31, 58, 0.98), rgba(6, 52, 90, 0.94) 44%, rgba(31, 122, 91, 0.92)),
    var(--night);
}

.booking-mini-mark {
  position: relative;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.booking-mini-mark::before,
.booking-mini-mark::after {
  position: absolute;
  content: "";
}

.booking-mini-mark::before {
  width: 24px;
  height: 24px;
  border: 3px solid var(--mamey-soft);
  border-radius: 50%;
}

.booking-mini-mark::after {
  right: 13px;
  bottom: 14px;
  width: 15px;
  height: 3px;
  border-radius: 999px;
  background: var(--mamey-soft);
  transform: rotate(45deg);
}

.booking-mini-card span:not(.booking-mini-mark),
.search-note span {
  color: var(--mamey-soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-mini-card h3 {
  margin: 8px 0 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.08;
}

.booking-mini-card p {
  max-width: 480px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.booking-mini-card strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mamey), var(--mamey-soft));
  color: var(--night);
  font-size: 0.92rem;
  padding: 0 20px;
  white-space: nowrap;
}

.section-heading p,
.section-copy p,
.vip-copy p,
.about p,
.final-cta p {
  color: var(--muted);
  line-height: 1.8;
}

.booking-engine {
  overflow: hidden;
  border: 1px solid rgba(4, 31, 58, 0.12);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 48px rgba(4, 31, 58, 0.1);
}

.bm-engine-shell {
  width: 100%;
  min-height: 370px;
  background: white;
  padding: 14px;
}

.booking-engine noscript p {
  margin: 0;
  border-top: 1px solid rgba(4, 31, 58, 0.08);
  background: rgba(255, 240, 230, 0.36);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 12px 16px;
}

.booking-engine a {
  color: var(--green);
  font-weight: 900;
}

.booking-engine #bmEngine,
.booking-engine .frame-engine,
.booking-engine .search-content,
.booking-engine .tab-content {
  width: 100% !important;
}

.booking-engine .frame-engine {
  color: var(--charcoal);
  font-family: "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
}

.booking-engine .frame-engine label {
  color: var(--night);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-engine .frame-engine .form-control {
  min-height: 42px;
  border-color: rgba(4, 31, 58, 0.16);
  border-radius: 8px;
  box-shadow: none;
}

.booking-engine .frame-engine .btn,
.booking-engine .frame-engine .btn-primary {
  min-width: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mamey), var(--mamey-soft)) !important;
  color: var(--night) !important;
  font-weight: 900;
}

.booking-engine .frame-engine .nav-tabs > li > a {
  color: var(--green);
  font-weight: 900;
}

.search-body {
  background:
    linear-gradient(180deg, rgba(4, 31, 58, 0.98) 0%, rgba(6, 52, 90, 0.96) 34%, rgba(255, 240, 230, 0.62) 34.2%, var(--paper) 68%, var(--warm-white)),
    var(--warm-white);
}

.search-hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: end;
  overflow: hidden;
  color: white;
  isolation: isolate;
  padding: 172px max(24px, calc((100vw - 1180px) / 2)) 82px;
}

.search-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 31, 58, 0.96), rgba(6, 52, 90, 0.72) 48%, rgba(31, 122, 91, 0.24)),
    linear-gradient(0deg, rgba(4, 31, 58, 0.76), rgba(4, 31, 58, 0.04) 58%),
    url("public/capadoccia.jpg") center/cover;
  content: "";
}

.search-hero h1 {
  max-width: 860px;
  font-size: 5.45rem;
  line-height: 0.92;
}

.search-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.13rem;
  line-height: 1.85;
}

.search-note {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(4, 31, 58, 0.38);
  box-shadow: var(--shadow-deep);
  padding: 28px;
  backdrop-filter: blur(16px);
  transition:
    transform var(--transition-premium),
    border-color var(--transition-premium),
    background var(--transition-premium);
}

.search-note:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 161, 95, 0.36);
  background: rgba(4, 31, 58, 0.46);
}

.search-note strong {
  display: block;
  margin-top: 14px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.08;
}

.search-note p {
  margin-top: 16px;
}

.booking-full {
  position: relative;
  width: 100%;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 240, 230, 0.56), rgba(255, 253, 248, 0.98) 38%, rgba(238, 248, 244, 0.46));
  padding: 90px 0 112px;
}

.booking-full > .section-heading,
.booking-full > .booking-engine {
  width: min(1180px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.booking-engine-full {
  min-height: 640px;
  transition:
    border-color var(--transition-premium),
    box-shadow var(--transition-premium);
}

.booking-engine-full:hover {
  border-color: rgba(47, 179, 124, 0.26);
  box-shadow: 0 28px 72px rgba(4, 31, 58, 0.14);
}

.booking-engine-full .bm-engine-shell {
  min-height: 620px;
  padding: 18px;
}

.agt-booking-frame {
  display: block;
  width: 100%;
  min-height: 820px;
  border: 0;
  background: white;
}

.engine-loading {
  display: grid;
  min-height: 560px;
  place-items: center;
  border: 1px dashed rgba(4, 31, 58, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 240, 230, 0.62), rgba(255, 253, 248, 0.96)),
    white;
  color: var(--night);
  text-align: center;
  padding: 42px;
}

.engine-loading span {
  color: var(--mamey);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.engine-loading strong {
  display: block;
  max-width: 560px;
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1.08;
}

.engine-loading p {
  max-width: 520px;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.engine-loading .plain-link {
  justify-self: center;
  margin-top: 18px;
}

.packages-body {
  background:
    linear-gradient(145deg, rgba(47, 179, 124, 0.14), transparent 28%),
    linear-gradient(220deg, rgba(244, 124, 60, 0.13), transparent 30%),
    linear-gradient(180deg, #041f3a 0%, #06345a 36%, #fff0e6 36.2%, #fffdf8 100%);
}

.packages-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: end;
  overflow: hidden;
  color: white;
  isolation: isolate;
  padding: 174px max(24px, calc((100vw - 1180px) / 2)) 132px;
}

.packages-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 31, 58, 0.98), rgba(6, 52, 90, 0.78) 50%, rgba(31, 122, 91, 0.2)),
    linear-gradient(0deg, rgba(4, 31, 58, 0.82), rgba(4, 31, 58, 0.12) 58%),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2200&q=84") center/cover;
  content: "";
  transform: scale(1.02);
  transform-origin: center;
  animation: packageScenicDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.packages-hero::after {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 56px;
  z-index: -1;
  width: 320px;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 124, 60, 0.28);
  border-radius: 50%;
  content: "";
}

.packages-hero h1 {
  max-width: 880px;
  font-size: 5.6rem;
  line-height: 0.92;
}

.packages-hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.85;
}

.package-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.packages-hero-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    rgba(4, 31, 58, 0.42);
  box-shadow: var(--shadow-deep);
  padding: 30px;
  backdrop-filter: blur(18px);
  transition:
    transform var(--transition-premium),
    border-color var(--transition-premium),
    background var(--transition-premium);
}

.packages-hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 161, 95, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.08)),
    rgba(4, 31, 58, 0.48);
}

.packages-hero-card span,
.package-content > span {
  color: var(--mamey-soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.packages-hero-card strong {
  display: block;
  margin-top: 14px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.08;
}

.packages-hero-card ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.packages-hero-card li {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  padding-top: 13px;
}

.package-showcase {
  position: relative;
  z-index: 5;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(130deg, rgba(244, 124, 60, 0.11), transparent 32%),
    linear-gradient(225deg, rgba(47, 179, 124, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 248, 1), rgba(255, 240, 230, 0.66) 54%, rgba(255, 253, 248, 0.98)),
    var(--warm-white);
  box-shadow: none;
  padding: 92px 0 112px;
}

.package-showcase::before {
  position: absolute;
  top: -92px;
  right: 0;
  left: 0;
  z-index: -1;
  height: 150px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 1)),
    var(--warm-white);
  clip-path: polygon(0 36%, 18% 20%, 38% 31%, 59% 13%, 78% 26%, 100% 8%, 100% 100%, 0 100%);
  content: "";
  animation: packageWaveGlow 5.4s ease-in-out infinite;
}

.package-showcase::after {
  position: absolute;
  top: -16px;
  right: 0;
  left: 0;
  z-index: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(244, 124, 60, 0.16), rgba(244, 124, 60, 0));
  content: "";
  pointer-events: none;
}

.package-showcase > .section-heading,
.package-showcase > .package-toolbar,
.package-showcase > .packages-grid,
.package-showcase > .package-empty {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.package-heading {
  margin-bottom: 28px;
}

.package-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 240, 230, 0.5)),
    white;
  box-shadow: 0 18px 48px rgba(4, 31, 58, 0.08);
  padding: 14px;
  backdrop-filter: blur(16px);
  transition:
    border-color var(--transition-premium),
    box-shadow var(--transition-premium),
    background var(--transition-premium);
}

.package-toolbar:hover {
  border-color: rgba(47, 179, 124, 0.24);
  box-shadow: 0 24px 58px rgba(4, 31, 58, 0.1);
}

.package-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.package-filter {
  min-height: 38px;
  border: 1px solid rgba(4, 31, 58, 0.14);
  border-radius: 999px;
  background: white;
  color: var(--night);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0 14px;
  transition:
    transform var(--transition-premium),
    border-color var(--transition-premium),
    background var(--transition-premium),
    color var(--transition-premium),
    box-shadow var(--transition-premium);
}

.package-filter:hover,
.package-filter.is-active {
  border-color: rgba(244, 124, 60, 0.46);
  background: var(--night);
  box-shadow: 0 12px 28px rgba(4, 31, 58, 0.16);
  color: white;
  transform: translateY(-1px);
}

.package-search {
  display: grid;
  gap: 6px;
}

.package-search span,
.package-count {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-search input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--night);
  outline: none;
  padding: 0 13px;
}

.package-search input:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(47, 179, 124, 0.14);
}

.package-count {
  margin: 0;
  white-space: nowrap;
}

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

.package-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(4, 31, 58, 0.1);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 42px rgba(4, 31, 58, 0.09);
  transition:
    transform var(--transition-premium),
    box-shadow var(--transition-premium),
    border-color var(--transition-premium),
    filter var(--transition-premium);
  animation: packageCardPop 620ms var(--ease-premium) both;
  will-change: transform, opacity, filter;
}

.package-card:nth-child(3n + 2) {
  animation-delay: 80ms;
}

.package-card:nth-child(3n + 3) {
  animation-delay: 150ms;
}

.package-card[hidden] {
  display: none;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 179, 124, 0.32);
  box-shadow: 0 26px 70px rgba(4, 31, 58, 0.18);
  filter: saturate(1.03);
}

.package-media {
  position: relative;
  min-height: 218px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(4, 31, 58, 0.82), rgba(31, 122, 91, 0.42)),
    url("public/capadoccia.jpg") center/cover,
    var(--night);
}

.package-media::before {
  position: absolute;
  inset: -18%;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
  transform: translateX(-125%) skewX(-18deg);
  pointer-events: none;
}

.package-media img {
  width: 100%;
  height: 218px;
  color: transparent;
  font-size: 0;
  object-fit: cover;
  transition: transform 760ms var(--ease-premium);
}

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

.package-card:hover .package-media::before {
  animation: packageImageSheen 860ms ease;
}

.package-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(4, 31, 58, 0.76), rgba(4, 31, 58, 0.04) 58%);
  content: "";
}

.package-tags {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}

.package-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(4, 31, 58, 0.62);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0 11px;
  backdrop-filter: blur(10px);
}

.package-tags span:last-child {
  background: rgba(244, 124, 60, 0.92);
  color: var(--night);
}

.package-content {
  display: flex;
  min-height: 300px;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.package-content h3 {
  margin: 8px 0 0;
  color: var(--night);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  font-weight: 500;
  line-height: 1.1;
}

.package-date {
  margin: 11px 0 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-content p:not(.package-date) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.package-content strong {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  border-bottom: 2px solid rgba(244, 124, 60, 0.72);
  color: var(--night);
  font-size: 0.84rem;
  padding-top: 18px;
  text-transform: uppercase;
  transition:
    border-color var(--transition-premium),
    color var(--transition-premium),
    transform var(--transition-premium);
}

.package-card:hover .package-content strong {
  border-color: rgba(47, 179, 124, 0.72);
  color: var(--green);
  transform: translateX(3px);
}

.package-empty {
  margin: 24px 0 0;
  border: 1px dashed rgba(4, 31, 58, 0.18);
  border-radius: 8px;
  color: var(--muted);
  padding: 24px;
  text-align: center;
}

.package-concierge {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 720px) auto;
  gap: 28px;
  align-items: center;
  margin: 76px auto 0;
  background:
    linear-gradient(120deg, rgba(4, 31, 58, 0.96), rgba(31, 122, 91, 0.9)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1800&q=82") center/cover;
  color: white;
  padding: 62px;
}

.package-concierge::before {
  position: absolute;
  top: 0;
  right: 34px;
  left: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 161, 95, 0.54), rgba(47, 179, 124, 0.42), transparent);
  content: "";
}

.package-concierge h2 {
  margin: 0;
  color: white;
  font-size: 3.5rem;
  line-height: 1;
}

.package-concierge p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.local-offers-body {
  background:
    radial-gradient(circle at 10% 12%, rgba(244, 124, 60, 0.12), transparent 30%),
    radial-gradient(circle at 90% 4%, rgba(47, 179, 124, 0.15), transparent 32%),
    linear-gradient(180deg, #0d1324 0%, #fffdf8 34%, #fffdf8 100%);
}

.local-offers-body main {
  overflow: visible;
  background: transparent;
}

.local-offers-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(13, 19, 36, 0.98), rgba(20, 28, 52, 0.96)),
    #0d1324;
  box-shadow: 0 18px 44px rgba(4, 31, 58, 0.22);
  color: white;
  backdrop-filter: blur(16px);
}

.local-offers-header-inner {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
}

.local-logo-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-logo-lockup img {
  width: 132px;
  height: 48px;
  border-radius: 999px;
  background: white;
  object-fit: contain;
  padding: 4px 10px;
}

.local-header-nav {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

.local-header-nav a,
.local-header-cta,
.local-btn {
  transition:
    transform var(--transition-premium),
    border-color var(--transition-premium),
    background var(--transition-premium),
    color var(--transition-premium),
    box-shadow var(--transition-premium);
}

.local-header-nav a:hover {
  color: white;
  transform: translateY(-1px);
}

.local-header-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 45%, rgba(244, 124, 60, 0.5), transparent 30%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 42px rgba(4, 31, 58, 0.22);
  color: white;
  font-weight: 900;
  padding: 0 22px;
}

.local-header-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 195, 22, 0.45);
  background: rgba(255, 255, 255, 0.13);
}

.local-offers-hero,
.local-offers-showcase {
  width: min(1180px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
  color: white;
}

.local-offers-showcase {
  background:
    radial-gradient(circle at 16% 26%, rgba(255, 138, 31, 0.18), transparent 28%),
    radial-gradient(circle at 72% 34%, rgba(25, 66, 150, 0.38), transparent 34%),
    radial-gradient(circle at 90% 6%, rgba(204, 211, 255, 0.14), transparent 24%),
    linear-gradient(145deg, #040817, #070b1a 48%, #030614);
}

.local-offers-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 78px);
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: 54px;
  align-items: center;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(90deg, rgba(4, 8, 23, 0.96) 0%, rgba(7, 11, 26, 0.86) 42%, rgba(4, 31, 58, 0.5) 100%),
    linear-gradient(0deg, rgba(4, 8, 23, 0.92), rgba(4, 8, 23, 0.2) 58%, rgba(255, 138, 31, 0.12)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2200&q=86") center/cover;
  box-shadow: 0 28px 90px rgba(4, 31, 58, 0.34);
  padding: 70px 34px 82px;
  isolation: isolate;
}

.local-offers-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(255, 138, 31, 0.28), transparent 32%),
    radial-gradient(ellipse at 86% 82%, rgba(47, 179, 124, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 28%, rgba(255, 195, 22, 0.045)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 26px
    );
  content: "";
  animation: localAmbientGlow 9s ease-in-out infinite alternate;
}

.local-offers-hero::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 138, 31, 0.24);
  border-radius: 50%;
  content: "";
}

.local-hero-copy,
.local-hero-card {
  animation: localHeroRise 780ms var(--ease-premium) both;
}

.local-hero-card {
  animation-delay: 160ms;
}

.local-kicker {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  border: 1px solid rgba(204, 211, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #ffd7af;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0 16px;
}

.local-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a1f, #ffc316);
  box-shadow: 0 0 18px rgba(255, 138, 31, 0.72);
}

.local-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: #eef2ff;
  font-family: "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: clamp(4.05rem, 7.4vw, 6.25rem);
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.38);
}

.local-hero-copy h1 strong {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 20px;
  border: 1px solid rgba(255, 215, 175, 0.36);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.2), rgba(47, 179, 124, 0.14)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  color: #ffd7af;
  font-family: "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 1.45vw, 1.22rem);
  font-weight: 950;
  line-height: 1;
  padding: 0 18px;
  text-transform: uppercase;
  text-shadow: none;
  backdrop-filter: blur(14px);
}

.local-hero-copy h1 strong::after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffc316 0 34%, transparent 35%),
    rgba(255, 195, 22, 0.22);
  box-shadow: 0 0 22px rgba(255, 195, 22, 0.82);
  content: "";
}

.local-hero-copy > p:not(.local-kicker) {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(235, 244, 255, 0.82);
  font-size: 1.14rem;
  line-height: 1.78;
}

.local-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.local-hero-badges span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(204, 211, 255, 0.22);
  border-radius: 999px;
  color: #ffd7af;
  font-size: 0.86rem;
  font-weight: 850;
  padding: 0 14px;
}

.local-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.local-btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 950;
  padding: 0 26px;
}

.local-btn-primary {
  border: 0;
  background: linear-gradient(135deg, #ff7a1a, #ffc316);
  box-shadow:
    0 18px 42px rgba(255, 138, 31, 0.28),
    0 0 0 1px rgba(255, 195, 22, 0.18);
  color: #070b1a;
}

.local-btn-secondary {
  border: 1px solid rgba(204, 211, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.local-btn:hover {
  transform: translateY(-3px);
}

.local-hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(204, 211, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    rgba(7, 11, 26, 0.6);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  padding: 30px;
  backdrop-filter: blur(18px);
}

.local-hero-card::before {
  position: absolute;
  inset: -40% auto auto -20%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 138, 31, 0.16);
  content: "";
  filter: blur(26px);
}

.local-card-topline,
.local-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.local-card-topline span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 138, 31, 0.38);
  border-radius: 999px;
  background: rgba(255, 138, 31, 0.14);
  color: #ffd7af;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0 12px;
}

.local-card-topline small {
  color: rgba(215, 226, 255, 0.72);
}

.local-hero-card h2 {
  margin: 24px 0 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.15;
}

.local-hero-card p {
  margin: 12px 0 0;
  color: rgba(215, 226, 255, 0.78);
  line-height: 1.7;
}

.local-card-footer {
  margin-top: 28px;
  border-top: 1px solid rgba(204, 211, 255, 0.18);
  color: #ffd7af;
  line-height: 1.45;
  padding-top: 20px;
}

.local-card-footer strong {
  color: #ffc316;
  font-size: 1.28rem;
}

.local-card-footer span {
  max-width: 150px;
  color: rgba(215, 226, 255, 0.7);
  text-align: right;
}

.local-offers-showcase {
  position: relative;
  padding: 44px 34px 72px;
}

.local-section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.local-section-heading h2 {
  margin: 0;
  color: white;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.96;
}

.local-section-heading p:not(.local-kicker) {
  max-width: 640px;
  color: rgba(215, 226, 255, 0.78);
  line-height: 1.75;
}

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

.local-offer-card {
  min-width: 0;
  animation: localCardEntrance 720ms var(--ease-premium) both;
}

.local-offer-card:nth-child(3n + 2) {
  animation-delay: 90ms;
}

.local-offer-card:nth-child(3n + 3) {
  animation-delay: 170ms;
}

.local-offer-card a {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(204, 211, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(12, 19, 42, 0.96), rgba(5, 8, 23, 0.98)),
    #050817;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  transition:
    transform var(--transition-premium),
    border-color var(--transition-premium),
    box-shadow var(--transition-premium);
}

.local-offer-card a:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 195, 22, 0.34);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.34);
}

.local-offer-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.78;
  background: #0d1324;
}

.local-offer-media::after {
  position: absolute;
  inset: -22%;
  background: linear-gradient(100deg, transparent 22%, rgba(255, 255, 255, 0.26), transparent 58%);
  content: "";
  transform: translateX(-130%) skewX(-14deg);
  pointer-events: none;
}

.local-offer-card a:hover .local-offer-media::after {
  animation: localOfferShine 900ms ease;
}

.local-offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 820ms var(--ease-premium);
}

.local-offer-card a:hover .local-offer-media img {
  transform: scale(1.035);
}

.local-offer-media span {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(7, 11, 26, 0.78);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0 13px;
  backdrop-filter: blur(12px);
}

.local-offer-content {
  display: flex;
  min-height: 236px;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.local-offer-content > div {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.local-offer-content h3 {
  margin: 0;
  color: white;
  font-size: 1.22rem;
  line-height: 1.2;
}

.local-offer-content div > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(204, 211, 255, 0.28);
  border-radius: 999px;
  background: rgba(98, 73, 255, 0.22);
  color: #d6dcff;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0 11px;
}

.local-offer-content p {
  margin: 16px 0 0;
  color: rgba(215, 226, 255, 0.68);
  line-height: 1.6;
}

.local-offer-content strong {
  margin-top: auto;
  color: #ffd7af;
  line-height: 1.5;
  padding-top: 20px;
}

.local-offer-content small {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  border-bottom: 2px solid rgba(255, 195, 22, 0.62);
  color: #d6dcff;
  font-size: 0.86rem;
  font-weight: 900;
  padding-bottom: 3px;
  transition:
    color var(--transition-premium),
    border-color var(--transition-premium),
    transform var(--transition-premium);
}

.local-offer-card a:hover small {
  border-color: rgba(255, 138, 31, 0.82);
  color: white;
  transform: translateX(4px);
}

.local-offers-cta {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: minmax(0, 720px) auto;
  gap: 28px;
  align-items: center;
  margin: 0 auto;
  background:
    linear-gradient(120deg, rgba(7, 11, 26, 0.98), rgba(13, 34, 91, 0.9)),
    #070b1a;
  color: white;
  padding: 56px 34px;
}

.local-offers-cta h2 {
  margin: 0;
  color: white;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 1;
}

.local-offers-cta p:not(.local-kicker) {
  max-width: 620px;
  color: rgba(215, 226, 255, 0.72);
  line-height: 1.75;
}

@keyframes localHeroRise {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
  }

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

@keyframes localCardEntrance {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    filter: blur(8px);
  }

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

@keyframes localOfferShine {
  from {
    transform: translateX(-130%) skewX(-14deg);
  }

  to {
    transform: translateX(220%) skewX(-14deg);
  }
}

@keyframes localAmbientGlow {
  from {
    opacity: 0.7;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .local-offers-header-inner {
    min-height: 72px;
  }

  .local-header-nav {
    display: none;
  }

  .local-offers-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 58px 22px 64px;
  }

  .local-hero-copy h1 {
    font-size: clamp(3.35rem, 10vw, 4.8rem);
  }

  .local-hero-copy h1 strong {
    font-size: clamp(0.86rem, 2.2vw, 1.05rem);
  }

  .local-hero-card {
    max-width: 620px;
  }

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

  .local-offers-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .local-logo-lockup img {
    width: 120px;
    height: 44px;
  }

  .local-logo-lockup span {
    display: none;
  }

  .local-header-cta {
    min-height: 42px;
    padding: 0 15px;
  }

  .local-offers-hero,
  .local-offers-showcase,
  .local-offers-cta {
    width: 100%;
  }

  .local-offers-hero {
    border-radius: 0;
    padding: 42px 16px 54px;
  }

  .local-kicker {
    min-height: 36px;
    font-size: 0.74rem;
  }

  .local-hero-copy h1 {
    font-size: clamp(3.1rem, 16vw, 4.25rem);
  }

  .local-hero-copy h1 strong {
    border-radius: 999px;
    font-size: 0.82rem;
    padding-right: 18px;
  }

  .local-hero-copy h1 strong::after {
    width: 10px;
    height: 10px;
  }

  .local-hero-badges {
    gap: 8px;
  }

  .local-hero-actions,
  .local-card-topline,
  .local-card-footer,
  .local-offer-content > div {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .local-offers-showcase {
    padding: 42px 16px 56px;
  }

  .local-section-heading h2 {
    font-size: 2.6rem;
  }

  .local-offers-grid {
    grid-template-columns: 1fr;
  }

  .local-offer-media {
    aspect-ratio: 0.82;
  }

  .local-offers-cta {
    padding: 46px 16px;
  }
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 0.78fr 0.72fr auto;
  gap: 12px;
}

.search-form label {
  display: grid;
  gap: 8px;
}

.search-form span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.search-form input,
.search-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--charcoal);
  outline: none;
  padding: 0 14px;
}

.search-form input:focus,
.search-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(47, 179, 124, 0.13);
}

.search-form button {
  align-self: end;
  border: 0;
  background: var(--ocean);
  color: white;
  cursor: pointer;
  padding: 0 24px;
}

.section,
.destinations,
.vip-section,
.journey-proof,
.testimonials,
.about,
.final-cta {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 108px 0;
}

.section::before,
.destinations::before,
.vip-section::before,
.journey-proof::before,
.testimonials::before,
.about::before,
.final-cta::before,
.booking-full::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 124, 60, 0.34), rgba(47, 179, 124, 0.32), transparent);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.section-heading {
  max-width: 810px;
  margin-bottom: 46px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.992);
  filter: blur(9px);
  transition:
    opacity 860ms var(--ease-premium),
    transform 860ms var(--ease-premium),
    filter 860ms var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.js .final-cta > .reveal,
.js .site-footer > .reveal {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
}

.section-heading.split p {
  max-width: 390px;
}

.benefits {
  position: relative;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(238, 248, 244, 0.52) 56%, rgba(255, 253, 248, 0.98));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
}

.services {
  width: 100%;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 240, 230, 0.58) 54%, rgba(255, 253, 248, 0.98)),
    var(--paper);
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
}

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

.benefit-card,
.service-card,
.testimonial-grid article,
.why-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.82)),
    var(--warm-white);
  box-shadow: 0 16px 44px rgba(4, 31, 58, 0.08);
  transition:
    transform var(--transition-premium),
    box-shadow var(--transition-premium),
    border-color var(--transition-premium),
    background var(--transition-premium);
}

.benefit-card {
  min-height: 245px;
  padding: 28px;
}

.benefit-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 124, 60, 0.4);
  border-radius: 50%;
  background: rgba(255, 240, 230, 0.58);
  color: var(--gold);
  font-weight: 900;
  transition:
    background var(--transition-premium),
    border-color var(--transition-premium),
    color var(--transition-premium);
}

.benefit-card h3,
.service-card h3,
.vip-list h3,
.why-card h3,
.founder h3 {
  margin: 22px 0 0;
  color: var(--night);
}

.benefit-card p,
.service-card p,
.destination-card p,
.testimonial-grid p,
.why-card li,
.founder p {
  color: var(--muted);
  line-height: 1.7;
}

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

.service-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.service-card span,
.destination-card span,
.vip-list span,
.plain-link {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card:hover,
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 179, 124, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(238, 248, 244, 0.72) 60%, rgba(255, 240, 230, 0.58)),
    white;
  box-shadow: 0 24px 60px rgba(4, 31, 58, 0.14);
}

.benefit-card:hover span {
  border-color: rgba(47, 179, 124, 0.46);
  background: rgba(238, 248, 244, 0.9);
  color: var(--green);
}

.destinations {
  width: 100%;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(238, 248, 244, 0.74) 46%, rgba(255, 240, 230, 0.62));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
}

.plain-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 2px solid rgba(244, 124, 60, 0.72);
  color: var(--night);
  white-space: nowrap;
}

.plain-link:hover {
  border-color: var(--ocean);
  color: var(--ocean);
  transform: translateY(-2px);
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.destination-card {
  min-height: 310px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  background: var(--night);
  box-shadow: 0 18px 50px rgba(4, 31, 58, 0.18);
  isolation: isolate;
  transition:
    transform var(--transition-premium),
    box-shadow var(--transition-premium),
    filter var(--transition-premium);
}

.destination-card.featured {
  grid-row: span 2;
  min-height: 638px;
}

.destination-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 780ms var(--ease-premium);
}

.destination-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(4, 31, 58, 0.92), rgba(6, 52, 90, 0.38) 52%, rgba(31, 122, 91, 0.04));
  content: "";
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
  filter: saturate(1.04);
}

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

.destination-card div {
  padding: 26px;
}

.destination-card h3 {
  margin: 9px 0 0;
  color: white;
  font-size: 1.85rem;
}

.destination-card p {
  color: rgba(255, 255, 255, 0.78);
}

.destination-card strong {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.92rem;
}

.vip-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 48px;
  align-items: center;
}

.vip-list {
  display: grid;
  gap: 14px;
}

.vip-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(4, 31, 58, 0.95), rgba(31, 122, 91, 0.9)),
    var(--night);
  box-shadow: 0 18px 46px rgba(4, 31, 58, 0.18);
  color: white;
  padding: 30px;
  transition:
    transform var(--transition-premium),
    border-color var(--transition-premium),
    box-shadow var(--transition-premium),
    background var(--transition-premium);
}

.vip-list article:hover {
  transform: translateX(6px);
  border-color: rgba(255, 161, 95, 0.38);
  background:
    linear-gradient(135deg, rgba(4, 31, 58, 0.98), rgba(6, 52, 90, 0.94) 48%, rgba(31, 122, 91, 0.92)),
    var(--night);
  box-shadow: var(--shadow-deep);
}

.vip-list h3 {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.12;
}

.journey-proof {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 38px;
  align-items: center;
}

.proof-grid {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.proof-grid article {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  padding: 18px;
  transition:
    transform var(--transition-premium),
    border-color var(--transition-premium),
    background var(--transition-premium),
    box-shadow var(--transition-premium);
}

.proof-grid article:hover {
  transform: translateX(5px);
  border-color: rgba(47, 179, 124, 0.28);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(4, 31, 58, 0.08);
}

.proof-grid span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 124, 60, 0.44);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.proof-grid strong {
  display: block;
  color: var(--night);
  font-size: 1rem;
}

.proof-grid p {
  grid-column: 2;
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.proof-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--night);
  box-shadow: var(--shadow-soft);
  min-height: 520px;
}

.proof-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.proof-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 31, 58, 0.6), rgba(4, 31, 58, 0.04) 58%);
  content: "";
}

.proof-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(4, 31, 58, 0.58);
  color: white;
  padding: 22px;
  backdrop-filter: blur(16px);
}

.proof-panel span {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-panel strong {
  display: block;
  max-width: 520px;
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.72rem;
  font-weight: 500;
  line-height: 1.12;
}

.testimonials {
  width: 100%;
  background:
    linear-gradient(135deg, rgba(4, 31, 58, 1), rgba(6, 52, 90, 0.98) 48%, rgba(31, 122, 91, 0.88)),
    var(--night);
  color: white;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
}

.testimonials .section-heading h2 {
  color: white;
}

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

.testimonial-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--white-line);
  box-shadow: none;
  padding: 30px;
}

.testimonial-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 161, 95, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.testimonial-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.testimonial-grid span {
  display: block;
  margin-top: 24px;
  color: var(--gold);
  font-weight: 900;
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 0.78fr;
  gap: 56px;
  align-items: center;
}

.founder {
  display: flex;
  max-width: 640px;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 42px rgba(4, 31, 58, 0.08);
  padding: 20px;
  transition:
    transform var(--transition-premium),
    box-shadow var(--transition-premium),
    border-color var(--transition-premium);
}

.founder:hover,
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 179, 124, 0.28);
  box-shadow: 0 24px 58px rgba(4, 31, 58, 0.12);
}

.founder img {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 253, 248, 0.9);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 44%;
  box-shadow: 0 10px 24px rgba(4, 31, 58, 0.14);
}

.founder h3 {
  margin-top: 0;
}

.founder p {
  margin: 5px 0 0;
}

.why-card {
  background:
    linear-gradient(145deg, rgba(255, 240, 230, 0.78), rgba(255, 253, 248, 0.95)),
    white;
  padding: 34px;
}

.why-card ul {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.why-card li {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.final-cta {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 720px) auto;
  gap: 28px;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(4, 31, 58, 0.97), rgba(6, 52, 90, 0.92) 48%, rgba(31, 122, 91, 0.88)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1800&q=82") center/cover;
  color: white;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
}

.final-cta h2 {
  color: white;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.light.btn-primary {
  background: var(--warm-white);
  color: var(--night);
}

.light.btn-secondary {
  border-color: rgba(255, 255, 255, 0.58);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(47, 179, 124, 0.22), transparent 34%),
    radial-gradient(circle at 84% 0%, rgba(255, 161, 95, 0.22), transparent 30%),
    linear-gradient(135deg, #041f3a 0%, #06345a 44%, #1f7a5b 100%);
  color: white;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
}

.site-footer::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 24px
    );
  content: "";
  opacity: 0.72;
}

.site-footer::after {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: -68px;
  z-index: -1;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 161, 95, 0.3);
  border-radius: 50%;
  content: "";
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(180px, 0.7fr) minmax(230px, 0.75fr);
  gap: 34px;
  align-items: start;
  padding: 54px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand p,
.footer-bottom p {
  margin: 0;
}

.footer-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.footer-logo {
  display: inline-flex;
  height: 68px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 18px 48px rgba(4, 31, 58, 0.2);
  padding: 8px 12px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.footer-logo:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 161, 95, 0.76);
  box-shadow: 0 24px 58px rgba(4, 31, 58, 0.28);
}

.footer-logo-main {
  width: 226px;
}

.footer-logo-partner {
  width: 82px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 0.95;
  font-weight: 700;
}

.footer-brand span {
  display: block;
  max-width: 420px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
}

.footer-nav a,
.footer-contact a,
.footer-bottom a {
  width: fit-content;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 18px;
}

.footer-nav a::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mamey-soft);
  content: "";
}

.footer-nav a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-contact {
  display: grid;
  justify-self: end;
  gap: 12px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.footer-contact span {
  color: var(--mamey-soft);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-contact a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 900;
  padding: 0 18px;
  backdrop-filter: blur(12px);
}

.footer-contact a:hover {
  border-color: rgba(255, 161, 95, 0.62);
  background: rgba(255, 255, 255, 0.14);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: #ffd3b8;
  font-weight: 950;
}

.footer-bottom a:hover {
  color: white;
  transform: translateY(-1px);
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 84px;
  z-index: 72;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 20px 46px rgba(4, 31, 58, 0.28);
  color: white;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.whatsapp-widget svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-widget:hover {
  background: #16a34a;
  box-shadow: 0 26px 56px rgba(4, 31, 58, 0.34);
  transform: translateY(-3px) scale(1.02);
  animation-play-state: paused;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 70;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(6, 52, 90, 0.96), rgba(4, 31, 58, 0.98)),
    var(--night);
  box-shadow: 0 18px 38px rgba(4, 31, 58, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.94);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.back-to-top span {
  width: 13px;
  height: 13px;
  border-top: 3px solid var(--mamey-soft);
  border-left: 3px solid var(--mamey-soft);
  transform: translateY(3px) rotate(45deg);
}

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

.back-to-top:hover {
  border-color: rgba(255, 161, 95, 0.62);
  box-shadow: 0 22px 46px rgba(4, 31, 58, 0.32);
  transform: translateY(-2px) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .hero-slide {
    animation: none !important;
    transform: none !important;
  }

  .hero-slide-beach {
    opacity: 1;
  }

  .hero-slide-capadoccia {
    opacity: 0;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

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

  .packages-hero::before,
  .package-showcase::before,
  .package-card,
  .package-card:hover .package-media::before,
  .local-offers-hero::before,
  .local-hero-copy,
  .local-hero-card,
  .local-offer-card,
  .local-offer-card a:hover .local-offer-media::after,
  .whatsapp-widget {
    animation: none !important;
  }
}

@media (min-width: 861px) and (max-height: 920px) {
  .site-header {
    top: 14px;
    min-height: 68px;
  }

  .brand img {
    width: 210px;
    height: 52px;
  }

  .partner-logo {
    width: 66px;
    height: 52px;
  }

  .partner-logo img {
    width: 58px;
    height: 48px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 360px);
    gap: 38px;
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .hero-content {
    max-width: 960px;
    transform: translateY(-58px);
  }

  h1 {
    font-size: clamp(5.35rem, 6.25vw, 6.8rem);
    line-height: 0.84;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .hero-text {
    margin-top: 18px;
    line-height: 1.62;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-card {
    padding: 24px;
  }

  .hero-card h2 {
    font-size: 1.95rem;
  }

  .hero-card dl {
    margin-top: 18px;
  }

  .hero-card dl div {
    padding: 13px 16px;
  }

  .hero-card dt {
    font-size: 1.14rem;
  }

  .hero-card dd {
    font-size: 0.94rem;
    line-height: 1.35;
  }
}

@media (max-width: 1080px) {
  .site-header {
    gap: 16px;
  }

  .brand {
    min-width: 200px;
  }

  .brand img {
    width: 200px;
  }

  .desktop-nav {
    gap: 10px;
    font-size: 0.78rem;
  }

  .header-actions {
    gap: 10px;
  }

  .partner-logo {
    width: 58px;
  }

  .partner-logo img {
    width: 52px;
  }

  .nav-cta {
    padding: 0 14px;
  }

  .hero,
  .booking-panel,
  .search-hero,
  .packages-hero,
  .package-concierge,
  .vip-section,
  .journey-proof,
  .about,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
    padding-top: clamp(124px, 15vh, 142px);
    padding-bottom: 56px;
  }

  .hero-content {
    max-width: 880px;
    transform: translateY(-18px);
  }

  h1 {
    font-size: clamp(5.15rem, 10vw, 6.35rem);
    line-height: 0.88;
  }

  .hero-text {
    max-width: 820px;
    font-size: 1.16rem;
    line-height: 1.72;
  }

  .booking-copy h2,
  .section-heading h2,
  .section-copy h2,
  .vip-copy h2,
  .about h2,
  .final-cta h2 {
    font-size: 3.2rem;
  }

  .hero-card {
    max-width: 640px;
  }

  .search-hero {
    min-height: auto;
  }

  .search-hero h1,
  .packages-hero h1 {
    font-size: 4.45rem;
  }

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

  .package-toolbar {
    grid-template-columns: 1fr;
  }

  .booking-mini-card {
    grid-template-columns: 58px 1fr;
  }

  .booking-mini-card strong {
    grid-column: 2;
    justify-self: start;
  }

  .search-form,
  .benefit-grid,
  .service-grid,
  .destination-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-card.featured {
    grid-row: auto;
    min-height: 390px;
  }

  .search-form button {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    max-width: calc(100vw - 20px);
    min-height: 70px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    margin-left: auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    background: var(--night);
  }

  .mobile-nav {
    position: fixed;
    top: 90px;
    right: 10px;
    left: 10px;
    z-index: 55;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--warm-white);
    box-shadow: var(--shadow-soft);
    padding: 12px;
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    border-radius: 8px;
    color: var(--night);
    font-weight: 900;
    padding: 14px;
  }

  .mobile-nav a:last-child {
    background: var(--night);
    color: white;
  }

  .hero {
    display: flex;
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 42px;
    padding-top: 138px;
    padding-bottom: 76px;
  }

  h1 {
    font-size: 3.45rem;
    line-height: 1;
  }

  .hero-card {
    max-width: 100%;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 46px 0 28px;
  }

  .footer-contact {
    justify-self: start;
  }

  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-nav a {
    min-height: 40px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    padding: 0 14px;
  }

  .footer-nav a::before {
    display: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .whatsapp-widget {
    right: 16px;
    bottom: 78px;
  }

  .back-to-top {
    right: 16px;
    bottom: 18px;
  }
}

@media (max-width: 620px) {
  h1,
  h2,
  h3,
  p,
  strong,
  .btn,
  .plain-link {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 164px;
  }

  .brand small {
    display: none;
  }

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

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-widget {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 68px;
  }

  .whatsapp-widget svg {
    width: 29px;
    height: 29px;
  }

  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .footer-inner {
    padding: 38px 0 24px;
  }

  .footer-logo-row {
    gap: 10px;
    margin-bottom: 18px;
  }

  .footer-logo {
    height: 60px;
  }

  .footer-logo-main {
    width: min(100%, 206px);
  }

  .footer-logo-partner {
    width: 74px;
  }

  .footer-brand span {
    font-size: 0.95rem;
  }

  .footer-contact {
    width: 100%;
  }

  .footer-contact a {
    width: 100%;
    justify-content: center;
  }

  .hero {
    gap: 46px;
    padding: 128px 16px 58px;
  }

  .hero-content,
  .hero-text,
  .hero-actions,
  .hero-card,
  .booking-copy,
  .booking-mini-card,
  .section-heading,
  .search-hero > div,
  .search-note,
  .packages-hero-copy,
  .packages-hero-card,
  .package-showcase,
  .package-concierge {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    width: 100%;
    font-size: 2.58rem;
    line-height: 1.04;
  }

  .booking-copy h2,
  .section-heading h2,
  .section-copy h2,
  .vip-copy h2,
  .about h2,
  .final-cta h2 {
    font-size: 2.55rem;
    line-height: 1;
  }

  .booking-panel .booking-copy h2,
  .search-hero h1,
  .packages-hero h1 {
    font-size: 2.28rem;
    line-height: 1;
  }

  .search-hero .hero-actions,
  .package-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .destination-card h3 {
    font-size: 1.55rem;
  }

  .hero-text {
    font-size: 1.03rem;
  }

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

  .hero-card,
  .booking-panel {
    padding: 22px;
  }

  .booking-mini-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px;
  }

  .booking-mini-card strong {
    grid-column: auto;
    width: 100%;
  }

  .booking-mini-card h3 {
    font-size: 1.42rem;
  }

  .bm-engine-shell {
    min-height: 520px;
    padding: 12px;
  }

  .booking-engine noscript p {
    padding: 12px 14px;
  }

  .booking-panel {
    width: 100%;
    margin-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .search-form,
  .benefit-grid,
  .service-grid,
  .destination-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .search-form button {
    grid-column: auto;
  }

  .section,
  .destinations,
  .booking-full,
  .vip-section,
  .journey-proof,
  .testimonials,
  .about,
  .final-cta {
    width: 100%;
    padding: 76px 16px;
  }

  .search-hero {
    padding: 128px 16px 64px;
  }

  .search-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .search-note {
    padding: 22px;
  }

  .search-note strong {
    font-size: 1.55rem;
  }

  .booking-full .section-heading h2 {
    font-size: 2.18rem;
  }

  .packages-hero {
    padding: 128px 16px 64px;
  }

  .packages-hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .packages-hero-card {
    padding: 22px;
  }

  .packages-hero-card strong {
    font-size: 1.55rem;
  }

  .package-showcase {
    width: 100%;
    margin-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    padding: 76px 0;
  }

  .package-showcase::before {
    top: -58px;
    height: 94px;
    clip-path: polygon(0 30%, 24% 14%, 50% 25%, 76% 10%, 100% 24%, 100% 100%, 0 100%);
  }

  .package-showcase > .section-heading,
  .package-showcase > .package-toolbar,
  .package-showcase > .packages-grid,
  .package-showcase > .package-empty {
    width: calc(100% - 32px);
  }

  .packages-grid,
  .package-toolbar {
    grid-template-columns: 1fr;
  }

  .package-filter {
    flex: 1 1 auto;
  }

  .package-content {
    min-height: auto;
  }

  .package-concierge {
    width: 100%;
    margin-top: 54px;
    padding: 48px 16px;
  }

  .package-concierge h2 {
    font-size: 2.28rem;
  }

  .engine-loading {
    min-height: 420px;
    padding: 26px;
  }

  .engine-loading strong {
    font-size: 1.65rem;
  }

  .booking-engine-full {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .agt-booking-frame {
    min-height: 980px;
  }

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

  .benefit-card,
  .service-card,
  .testimonial-grid article,
  .proof-grid article,
  .vip-list article,
  .why-card {
    padding: 24px;
  }

  .proof-media,
  .proof-media img {
    min-height: 390px;
  }

  .proof-panel {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 18px;
  }

  .proof-panel strong {
    font-size: 1.38rem;
  }

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