:root {
  --bg: #ffffff;
  --bg-muted: #f6f4ef;
  --ink: #1c2430;
  --ink-soft: #55606e;
  --line: #e7e3da;
  --brand: #3988c8;
  --brand-ink: #2b6fa5;
  --accent: #e8a94b;
  --radius: 18px;
  --shadow: 0 18px 45px -22px rgba(20, 40, 45, 0.35);
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }

h1 em { font-style: italic; color: var(--brand); }

p { margin: 0 0 1rem; color: var(--ink-soft); }

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

img { max-width: 100%; }

/* Anchored sections land below the sticky header */
section[id] { scroll-margin-top: 96px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(57, 136, 200, 0.55);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

/* Header nav gets a wider canvas than page content so translated
   (longer) labels still fit on one line */
.site-header .container { max-width: 1380px; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 96px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  flex-shrink: 0;
}

.brand-slogan {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--brand-ink);
  white-space: nowrap;
}

.brand-slogan-footer { color: #9fb3c8; }

.brand-mark { color: var(--brand); }

.brand-logo { display: block; height: 58px; width: auto; }
.brand-logo-footer { height: 64px; }

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2.4rem);
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--brand); }

/* Attention-grabbing Deals link */
.nav-deals {
  color: var(--brand) !important;
  font-weight: 700 !important;
  animation: deals-flash 1.1s ease-in-out infinite;
}

.nav-deals:hover { color: var(--brand-ink) !important; }

@keyframes deals-flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

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

.nav-phone {
  font-weight: 600;
  color: var(--ink) !important;
  white-space: nowrap;
}

/* Applied by JS when translated labels would overflow the bar */
.nav.nav-compact .nav-phone { display: none; }
.nav.nav-tight .nav-links { gap: 0.85rem; }
.nav.nav-tight .nav-links a { font-size: 0.86rem; }
.nav.nav-tight .lang-select { font-size: 0.82rem; max-width: 110px; }

.nav-phone:hover { color: var(--brand) !important; }

.nav-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--brand-ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lang-select {
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  cursor: pointer;
  max-width: 130px;
}

.lang-select:hover { border-color: var(--brand); color: var(--brand); }
.lang-select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(57, 136, 200, 0.15); }

/* Hide the Google Translate widget UI + banner (we drive it from our own select) */
#google_translate_element { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.goog-te-banner-frame,
.goog-te-gadget-icon,
#goog-gt-tt,
.goog-te-balloon-frame { display: none !important; }
.goog-te-gadget { height: 0; overflow: hidden; }
body { top: 0 !important; }
/* Keep translated text inheriting our styles, not Google's highlight */
font { font: inherit !important; color: inherit !important; background: transparent !important; box-shadow: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s, box-shadow 0.2s;
}

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

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover { background: var(--brand-ink); }

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-carousel,
.hero-carousel img,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-carousel { z-index: -2; }

/* Slides crossfade while a slow, continuous zoom runs on every image.
   The zoom never restarts or resets on slide change, so there is no
   visible snap back to normal size before the fade. */
.hero-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: opacity, transform;
}

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

@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

.hero-veil {
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.82) 42%,
    rgba(255, 255, 255, 0.55) 70%,
    rgba(255, 255, 255, 0.3) 100%
  );
}

.hero-inner { max-width: 760px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-ink);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(57, 136, 200, 0.25);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 2.6rem;
}

.hero-stats {
  display: inline-flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  list-style: none;
  margin: 0;
  padding: 1.4rem 1.8rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 32px -18px rgba(20, 40, 45, 0.3);
}

.hero-stats strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.9rem;
  color: var(--ink);
  line-height: 1;
}

.hero-stats span { font-size: 0.9rem; color: var(--ink-soft); }

/* Sections */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-muted { background: var(--bg-muted); }

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(2.2rem, 4vw, 3.2rem);
  text-align: center;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.6rem;
}

.section-sub { font-size: 1.05rem; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.media-card {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.ticks {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.ticks li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--ink);
  font-weight: 500;
}

.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.3rem;
  height: 1.3rem;
  display: grid;
  place-items: center;
  background: rgba(57, 136, 200, 0.12);
  color: var(--brand);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

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

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  background: var(--bg-muted);
  border-radius: 14px;
  margin-bottom: 1rem;
}

.card h3 { margin-bottom: 0.4rem; }
.card p { margin: 0; }

/* Services as photo bubbles: a coloured overlay crossfades on hover to
   reveal the background photo. Text stays put. */
.cards--photo .card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.7s ease;
}

.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(43, 111, 165, 0.5) 0%, rgba(10, 40, 66, 0.92) 100%);
  transition: opacity 0.55s ease;
}

.cards--photo .card > *:not(.card-bg):not(.card-overlay) { position: relative; z-index: 2; }
.cards--photo .card:hover { transform: translateY(-4px); }
.cards--photo .card:hover .card-overlay { opacity: 0.45; }
.cards--photo .card:hover .card-bg { transform: scale(1.07); }
.cards--photo .card-icon { background: rgba(255, 255, 255, 0.22); backdrop-filter: blur(2px); }
.cards--photo .card h3 { color: #fff; }
.cards--photo .card p { color: rgba(255, 255, 255, 0.92); }

/* Book with confidence — trust badges */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 900px;
  margin: 0 auto;
}

.trust-badge { text-align: center; }

.trust-mark {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  border: 2.5px solid var(--brand-ink);
  color: var(--brand-ink);
  background: #fff;
  box-shadow: 0 10px 24px -14px rgba(20, 40, 45, 0.4);
}

.trust-mark-text {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
}

/* Official ABTA / ATOL logo images sit inside the white circle, equally sized */
.trust-mark-logo { padding: 0; overflow: hidden; }
.trust-mark-logo img {
  width: 66%;
  height: 66%;
  object-fit: contain;
}

/* Peace of Mind Guarantee — white badge to match the others */
.trust-mark-pom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  color: var(--brand-ink);
}
.trust-mark-pom .pom-main {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 0.86rem;
  line-height: 1.05;
}
.trust-mark-pom .pom-sub {
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
}

.trust-badge p { margin: 0; font-size: 0.92rem; font-weight: 500; color: var(--ink); max-width: 15ch; margin-inline: auto; }

/* WhatsApp floating button */
.wa-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 120;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pop 0.4s ease both;
}

.wa-fab:hover { transform: scale(1.08); box-shadow: 0 16px 36px -8px rgba(37, 211, 102, 0.7); }

@keyframes wa-pop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* Destinations marquee */
.dest-marquee {
  --strip-h: clamp(300px, 40vw, 460px);
  --tile-gap: 1.1rem;
  overflow: hidden;
  position: relative;
}

.dest-marquee::before,
.dest-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(24px, 6vw, 90px);
  z-index: 3;
  pointer-events: none;
}

.dest-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.dest-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.dest-track {
  display: flex;
  width: max-content;
  animation: dest-slide 65s linear infinite;
}

.dest-marquee:hover .dest-track,
.dest-track:focus-within {
  animation-play-state: paused;
}

@keyframes dest-slide {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.dest-group {
  display: flex;
  gap: var(--tile-gap);
  padding-right: var(--tile-gap);
}

.dest-col {
  display: flex;
  flex-direction: column;
  gap: var(--tile-gap);
}

.dest-tall { height: var(--strip-h); }
.dest-sq { height: calc((var(--strip-h) - var(--tile-gap)) / 2); }

.w-lg { width: clamp(280px, 30vw, 430px); }
.w-md { width: clamp(230px, 25vw, 340px); }
.w-sm { width: clamp(210px, 23vw, 310px); }

.dest {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.3rem;
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 500;
  box-shadow: var(--shadow);
}

.dest img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.4s ease;
}

.dest:hover img { transform: scale(1.06); }

.dest::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 25, 30, 0.65));
  z-index: 1;
}

.dest span { position: relative; z-index: 2; }

/* Quotes marquee — same continuous slide as destinations, opposite direction */
.quotes-marquee {
  --q-gap: 1.4rem;
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0;
}

.quotes-marquee::before,
.quotes-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(24px, 6vw, 90px);
  z-index: 3;
  pointer-events: none;
}

.quotes-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-muted), transparent);
}

.quotes-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-muted), transparent);
}

.quotes-track {
  display: flex;
  width: max-content;
  animation: quotes-slide 80s linear infinite;
}

.quotes-marquee:hover .quotes-track,
.quotes-track:focus-within {
  animation-play-state: paused;
}

@keyframes quotes-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.quotes-group {
  display: flex;
  gap: var(--q-gap);
  padding-right: var(--q-gap);
}

.quote {
  width: clamp(280px, 32vw, 400px);
  flex-shrink: 0;
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.quote .stars {
  display: block;
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 0.7rem;
}

.quote blockquote {
  margin: 0 0 1rem;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.5;
}

.quote figcaption { color: var(--brand); font-weight: 600; font-size: 0.95rem; }

/* Deals */
.deals-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.deals-search {
  position: relative;
  flex: 1 1 260px;
  max-width: 340px;
}

.deals-search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  opacity: 0.6;
  pointer-events: none;
}

.deals-search input {
  width: 100%;
  font: inherit;
  padding: 0.7rem 1rem 0.7rem 2.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}

.deals-search input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(57, 136, 200, 0.15);
}

.deals-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.deal-filter {
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg-muted);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.deal-filter:hover { border-color: var(--brand); color: var(--brand); }

.deal-filter.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.deal-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid var(--brand);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Keep the blue border on every interaction state */
.deal-card,
.deal-card:hover,
.deal-card:focus,
.deal-card:active,
.deal-card:visited,
.deal-card:focus-visible {
  border-color: var(--brand);
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.deal-price { display: inline-flex; align-items: center; gap: 0.25rem; }

.deal-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.deal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.deal-price {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-ink);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px -6px rgba(20, 40, 45, 0.4);
}

.deal-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.3rem 1.4rem 1.5rem;
  flex: 1;
}

.deal-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.deal-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-ink);
  background: rgba(57, 136, 200, 0.1);
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
}

.deal-body h3 { font-size: 1.15rem; margin: 0; }
.deal-body p { margin: 0; font-size: 0.92rem; }

.deal-link {
  margin-top: auto;
  padding-top: 0.4rem;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
}

.deals-empty,
.deals-error {
  text-align: center;
  color: var(--ink-soft);
  padding: 1.5rem 0;
}

.deals-empty a, .deals-error a { color: var(--brand); font-weight: 500; }

.deals-note {
  margin: 2rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.deals-note a { color: var(--brand); font-weight: 600; }

/* Why book with us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.why-card {
  background: var(--bg-muted);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  text-align: left;
}

.why-icon {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  font-size: 1.6rem;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px -12px rgba(20, 40, 45, 0.35);
}

.why-card h3 { font-size: 1.15rem; margin: 0 0 0.4rem; }
.why-card p { margin: 0; font-size: 0.94rem; }

/* Contact */
.contact {
  position: relative;
  isolation: isolate;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(9, 30, 48, 0.9) 0%, rgba(12, 50, 80, 0.78) 55%, rgba(43, 111, 165, 0.6) 100%),
    url("assets/contact-bg.jpg") center / cover no-repeat fixed;
}

.contact .section-tag { color: #bfe0ff; }
.contact h2 { color: #fff; }
.contact .section-sub { color: rgba(255, 255, 255, 0.88); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-methods { display: grid; gap: 1rem; margin-top: 1.8rem; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, transform 0.15s, background 0.2s;
}

.contact-method:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.cm-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-size: 1.2rem;
}

.contact-method small {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form {
  background: var(--brand);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-radius: var(--radius);
  display: grid;
  gap: 1.1rem;
  box-shadow: 0 22px 50px -24px rgba(9, 30, 48, 0.7);
}

.field { display: grid; gap: 0.4rem; }

.field label { font-weight: 600; font-size: 0.9rem; color: #fff; }

.field input,
.field textarea {
  font: inherit;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder { color: #9aa6b2; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.contact-form .btn-primary {
  background: #fff;
  color: var(--brand-ink);
}

.contact-form .btn-primary:hover {
  background: var(--ink);
  color: #fff;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #cfd6dd;
  padding: 3.2rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col { display: flex; flex-direction: column; gap: 0.55rem; align-items: flex-start; }

.footer-col h4 {
  font-family: "Fraunces", serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.4rem;
}

.footer-col a { color: #cfd6dd; font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }

.brand-footer { color: #fff; }

.social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #cfd6dd;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.social-links a:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #8b97a3;
  margin-top: 0.5rem;
}

.footer-bottom { padding-top: 1.6rem; }
.copyright { margin: 0; font-size: 0.85rem; color: #8b97a3; }

/* Scroll progress plane */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: 200;
  pointer-events: none;
}

.scroll-progress .sp-track {
  height: 3px;
  width: var(--p, 0%);
  background: linear-gradient(90deg, rgba(57, 136, 200, 0), var(--brand) 60%);
  border-radius: 0 3px 3px 0;
}

.scroll-progress .sp-plane {
  position: absolute;
  top: -9px;
  left: var(--p, 0%);
  transform: translateX(-55%);
  font-size: 1.4rem;
  line-height: 1;
  filter:
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.95))
    drop-shadow(0 2px 4px rgba(20, 40, 45, 0.45));
}

@media (max-width: 640px) {
  .scroll-progress { display: none; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  z-index: 100;
  width: min(680px, calc(100vw - 2rem));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -20px rgba(20, 40, 45, 0.45);
  padding: 1.1rem 1.4rem;
}

.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; flex: 1 1 320px; font-size: 0.92rem; }
.cookie-banner a { color: var(--brand); font-weight: 600; }
.cookie-actions { display: flex; gap: 0.6rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.92rem; }

/* Legal pages */
.legal-hero {
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(57, 136, 200, 0.14), transparent 60%),
    var(--bg-muted);
  padding: clamp(2.8rem, 6vw, 4.5rem) 0;
}

.legal-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 0.3em; }
.legal-hero .updated { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

.legal-body { max-width: 780px; }
.legal-body h2 { font-size: 1.45rem; margin-top: 2.2em; }
.legal-body h3 { font-size: 1.1rem; margin-top: 1.6em; }
.legal-body ul { color: var(--ink-soft); padding-left: 1.3rem; }
.legal-body li { margin-bottom: 0.45rem; }
.legal-body a { color: var(--brand); font-weight: 500; }
.legal-body a:hover { text-decoration: underline; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-carousel img { transition: none; animation: none; }
  .dest-track { animation: none; }
  .dest-marquee { overflow-x: auto; }
  .quotes-track { animation: none; }
  .quotes-marquee { overflow-x: auto; }
  .scroll-progress { display: none; }
  .wa-fab { animation: none; }
  .card-bg, .cards--photo .card:hover .card-bg { transition: none; }
}

/* Responsive */
/* Roomy desktop only: show phone in the bar */
@media (max-width: 1380px) and (min-width: 1025px) {
  .nav-phone { display: none; }
}

@media (max-width: 1100px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.4rem; }
}

@media (max-width: 900px) {
  .deals-grid { grid-template-columns: repeat(2, 1fr); }
  /* fixed backgrounds are janky on mobile */
  .contact { background-attachment: scroll; }
}

/* Collapse the nav into the burger menu early enough that translated
   (longer) labels never wrap onto a second line */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 26px 44px -28px rgba(20, 40, 45, 0.35);
    padding: 0.6rem 1.4rem 1.4rem;
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s;
    z-index: -1;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links li { padding: 0.35rem 0; }
  .nav-links a { display: block; font-size: 1.05rem; padding: 0.4rem 0; white-space: normal; }
  .nav-phone { display: block; }
  .nav-cta { text-align: center; margin-top: 0.5rem; padding: 0.85rem 1.1rem; }
  .lang-select { width: 100%; max-width: none; border-radius: 12px; padding: 0.65rem 0.8rem; }
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .media-card { aspect-ratio: 16 / 10; order: 2; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
  .deals-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .wa-fab { width: 52px; height: 52px; }
  .deals-controls { flex-direction: column; align-items: stretch; }
  .deals-search { flex: 0 0 auto; max-width: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-logo { height: 44px; }
  .brand-slogan { font-size: 0.72rem; }
  .nav { height: 84px; }
  .hero-stats { padding: 1.2rem 1.3rem; gap: 1.4rem; }
}
