/* =====================================================
   PRINCIPATO LUXURY TRAVEL
   Mobile-first · Navy + Red + Gold + Ivory
   ===================================================== */

:root {
  /* Brand */
  --red-700: #7C0F14;
  --red-600: #9A1319;
  --red-500: #B5191E;
  --red-400: #C82F35;
  --red-300: #E04A50;

  --navy-900: #070E18;
  --navy-800: #0C1624;
  --navy-700: #132135;
  --navy-600: #1E324B;

  --gold-500: #C9A961;
  --gold-400: #D9BE7C;
  --gold-300: #E8D4A1;

  --ivory: #FAF7F1;
  --cream: #F4EEE2;
  --stone-100: #EDE6D6;
  --stone-200: #DED3BB;
  --stone-300: #BFB198;

  --ink-900: #0A0D11;
  --ink-700: #2A2F36;
  --ink-500: #5B6472;
  --ink-400: #8B94A1;
  --ink-300: #B4BAC3;

  --line: rgba(12, 22, 36, 0.08);
  --line-dark: rgba(12, 22, 36, 0.14);
  --line-light: rgba(255, 255, 255, 0.12);

  /* Type */
  --ff-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-script: "Allura", "Great Vibes", cursive;

  /* Geometry */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Motion */
  --ease: cubic-bezier(.22,.8,.3,1);
  --ease-out: cubic-bezier(.2,.7,.2,1);
  --dur: 380ms;
  --dur-fast: 220ms;

  /* Shadow */
  --shadow-sm: 0 4px 12px rgba(7,14,24,0.06);
  --shadow: 0 16px 40px -12px rgba(7,14,24,0.2);
  --shadow-lg: 0 40px 80px -30px rgba(7,14,24,0.28);
  --shadow-red: 0 18px 40px -12px rgba(181,25,30,0.38);
  --shadow-red-lg: 0 30px 70px -18px rgba(181,25,30,0.5);

  /* Safe area */
  --safe-b: env(safe-area-inset-bottom, 0);
  --safe-t: env(safe-area-inset-top, 0);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--red-500); }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--red-500); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red-500);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.display,
.h1,
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}

.display {
  font-size: clamp(2.25rem, 6.2vw, 4.75rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ivory);
  padding-top: 0.1em;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--stone-300);
}
.display .line {
  display: block;
  padding-bottom: 0.08em;
}
.display .line .script-accent,
.script-accent {
  font-family: var(--ff-script);
  font-weight: 400;
  color: var(--red-500);
  font-style: normal;
  font-size: 1.15em;
  line-height: 0.8;
}
.section--dark .script-accent,
.testimonials .script-accent {
  color: var(--gold-400);
}

.h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.05;
}

h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
h4 {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--ff-body);
  letter-spacing: 0;
  color: var(--navy-800);
}

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 20px;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 0 4px rgba(181,25,30,.14);
  flex-shrink: 0;
}
.eyebrow--light { color: var(--gold-300); }
.eyebrow--light .eyebrow__dot {
  background: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(201,169,97,.22);
}

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 40px);
}

.section {
  padding: clamp(64px, 9vw, 140px) 0;
  position: relative;
}
.section--dark {
  background: var(--navy-800);
  color: var(--ink-300);
  overflow: hidden;
}
.section--dark .h1,
.section--dark h3,
.section--dark h4 {
  color: var(--ivory);
}

.section__head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 80px);
  text-align: center;
}
.section__lead {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--ink-500);
  margin: 22px auto 0;
  max-width: 600px;
}
.section--dark .section__lead { color: var(--ink-300); }

.section__grid {
  position: absolute !important;
  inset: 0 !important;
  opacity: .6;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  min-height: 44px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all var(--dur-fast) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  -webkit-tap-highlight-color: transparent;
}
.btn svg { transition: transform var(--dur-fast) var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.btn--lg { padding: 16px 30px; font-size: .95rem; min-height: 52px; }
.btn--sm { padding: 10px 18px; font-size: .8rem; min-height: 38px; }
.btn--block { width: 100%; }

.btn--red,
.btn--gold {
  background: var(--red-500);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn--red:hover,
.btn--gold:hover {
  background: var(--red-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-lg);
}
.btn--red:active { transform: translateY(0); }

.btn--line {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--line-dark);
}
.btn--line:hover {
  background: var(--navy-900);
  color: var(--ivory);
  border-color: var(--navy-900);
}
.section--dark .btn--line,
.hero .btn--line {
  color: var(--ivory);
  border-color: var(--line-light);
}
.section--dark .btn--line:hover,
.hero .btn--line:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold-400);
  color: var(--ivory);
}

.btn--dark {
  color: var(--ivory);
  background: var(--navy-800);
  border-color: var(--navy-800);
}
.btn--dark:hover {
  background: var(--red-500);
  border-color: var(--red-500);
  color: #fff;
}

/* =====================================================
   TOP BAR
   ===================================================== */
.topbar {
  background: var(--navy-900);
  color: var(--ink-300);
  font-size: .75rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 101;
}
.topbar__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 24px);
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  color: var(--ink-300);
}
.topbar__item:hover { color: var(--gold-400); }
.topbar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #27C167;
  box-shadow: 0 0 0 3px rgba(39,193,103,.25);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 3px rgba(39,193,103,.25); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 5px rgba(39,193,103,.15); }
}
.topbar__sep { width: 1px; height: 12px; background: rgba(255,255,255,0.12); }
@media (max-width: 560px) {
  .topbar { font-size: .7rem; }
  .topbar__hide-sm { display: none !important; }
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(250, 247, 241, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background-color 280ms ease, border-bottom-color 280ms ease, box-shadow 280ms ease;
  will-change: background-color, box-shadow;
}
.nav.is-scrolled {
  background: rgba(250, 247, 241, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -20px rgba(7,14,24,0.2);
}

.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 40px);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all var(--dur) var(--ease);
}
.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}
.nav__links {
  flex: 1 1 auto;
  justify-content: center;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Mobile: two rows — logo on top, switcher + toggle below */
@media (max-width: 767px) {
  .nav__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .nav__brand {
    flex-basis: 100%;
    justify-content: center;
  }
  .nav__right {
    flex-basis: 100%;
    justify-content: center;
  }
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  flex-shrink: 0;
}
.nav__logo-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  transition: all var(--dur) var(--ease);
}
.nav__logo-img img {
  height: clamp(60px, 5vw, 80px);
  width: auto;
  object-fit: contain;
  display: block;
  transition: height 280ms ease;
}
.nav__brand:hover .nav__logo-img { transform: scale(1.02); }

@media (max-width: 767px) {
  .nav__logo-img img { height: clamp(64px, 16vw, 84px); }
}
@media (max-width: 480px) {
  .nav__logo-img img { height: clamp(56px, 14vw, 72px); }
}

/* =====================================================
   LANGUAGE SWITCHER
   ===================================================== */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: rgba(12, 22, 36, 0.06);
  border-radius: 999px;
  border: 1px solid var(--line);
}
.lang-switch__opt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-500);
  background: transparent;
  transition: all var(--dur-fast) var(--ease);
  cursor: pointer;
  min-height: 30px;
  border: none;
}
.lang-switch__opt svg {
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(12, 22, 36, 0.1);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease);
}
.lang-switch__opt span {
  line-height: 1;
}
.lang-switch__opt:hover {
  color: var(--navy-900);
}
.lang-switch__opt:hover svg {
  transform: scale(1.08);
}
.lang-switch__opt.is-active {
  background: #fff;
  color: var(--red-500);
  box-shadow: 0 2px 8px rgba(12, 22, 36, 0.1);
}
.nav.is-scrolled .lang-switch {
  background: rgba(12, 22, 36, 0.04);
}
.nav__mobile .lang-switch {
  margin-top: 16px;
  align-self: center;
}
@media (max-width: 480px) {
  .lang-switch__opt { padding: 5px 8px; font-size: .68rem; }
  .lang-switch__opt svg { width: 18px; height: 12px; }
}

.nav__logo-fallback {
  display: none;
  align-items: center;
  gap: 12px;
}
.nav__mark {
  display: inline-flex;
  color: var(--red-500);
  transition: transform var(--dur) var(--ease);
}
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__name {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--red-500);
  text-transform: uppercase;
}
.nav__tag {
  font-family: var(--ff-script);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--red-700);
  margin-top: 2px;
}

.nav__links {
  display: none;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}
.nav__links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy-900);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  transform: translateX(-50%) scaleX(0);
  width: 26px; height: 1.5px;
  background: var(--red-500);
  transition: transform .3s var(--ease);
}
.nav__links a:hover { color: var(--red-500); }
.nav__links a:hover::after { transform: translateX(-50%) scaleX(1); }

.nav__cta { display: none; }

.nav__toggle {
  width: 44px; height: 44px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  transition: background .2s var(--ease);
}
.nav__toggle:hover { background: rgba(12,22,36,0.05); }
.nav__toggle span {
  display: block;
  width: 100%;
  height: 1.8px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
  transform-origin: center;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 18px clamp(18px, 4vw, 40px) 32px;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  max-height: calc(100dvh - 80px);
  overflow-y: auto;
}
.nav__mobile a {
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a.btn {
  margin-top: 18px;
  border-bottom: none;
  justify-content: center;
}
.nav__mobile-contact {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.nav__mobile-contact a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line-dark);
  color: var(--navy-900);
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}
.nav__mobile.is-open { display: flex; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: calc(100dvh - 110px);
  display: flex;
  align-items: center;
  color: var(--ivory);
  padding: clamp(60px, 10vw, 110px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
  background: var(--navy-900);
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 15%, rgba(181,25,30,0.28), transparent 55%),
    radial-gradient(ellipse 70% 60% at 10% 95%, rgba(201,169,97,0.15), transparent 55%),
    radial-gradient(ellipse 100% 70% at 50% 110%, rgba(30,50,75,0.6), transparent 70%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 85% 65% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 85% 65% at 50% 50%, #000 30%, transparent 85%);
}
.hero__bg-noise {
  position: absolute;
  inset: 0;
  opacity: .08;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03) 1px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03) 1px, transparent 2px);
  background-size: 3px 3px, 5px 5px;
}
.hero__bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__bg-glow--red {
  top: -8%; right: -10%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(181,25,30,0.5), transparent 70%);
  animation: float 18s ease-in-out infinite;
}
.hero__bg-glow--gold {
  bottom: -15%; left: -12%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(201,169,97,0.3), transparent 70%);
  animation: float 22s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-30px) scale(1.08); }
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  width: 100%;
}

.hero__text { max-width: 680px; }

.hero__lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65;
  color: var(--stone-200);
  margin: 24px 0 32px;
  max-width: 560px;
}
.hero__lead strong { color: var(--ivory); font-weight: 600; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 28px);
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--stone-200);
  font-weight: 500;
}
.hero__trust-item svg {
  color: var(--gold-400);
  flex-shrink: 0;
}

/* Hero media — frameless floating coach */
.hero__media {
  position: relative;
  margin: 0;
  max-width: 560px;
  width: 100%;
  justify-self: center;
  padding: 20px 0;
}
.hero__media-halo {
  position: absolute;
  inset: 5% -5%;
  background:
    radial-gradient(ellipse 70% 45% at 50% 65%, rgba(181,25,30,0.55), transparent 65%),
    radial-gradient(ellipse 50% 35% at 50% 75%, rgba(201,169,97,0.3), transparent 70%);
  filter: blur(40px);
  opacity: .9;
  z-index: 0;
  pointer-events: none;
}
.hero__media-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 16/11;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}
.hero__media-frame::before { content: none; }
.hero__media-frame img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 40px 50px rgba(0,0,0,0.5)) drop-shadow(0 20px 30px rgba(181,25,30,0.25));
  transition: transform 1.2s var(--ease);
  animation: floatLg 7s ease-in-out infinite;
}
.hero__media:hover .hero__media-frame img { transform: scale(1.04); }

.hero__badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  margin-top: clamp(16px, 2.4vw, 24px);
  opacity: 0;
  transform: translateY(12px);
  animation: badgesIn 600ms ease-out 200ms forwards;
}
@keyframes badgesIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__badges-row {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(250, 247, 241, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy-900);
  box-shadow: 0 10px 24px -10px rgba(7, 14, 24, 0.18);
  flex: 1 1 auto;
  min-width: 0;
  transition: transform 280ms ease-out, box-shadow 280ms ease-out;
}
.hero__badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -12px rgba(7, 14, 24, 0.24);
}
@media (prefers-reduced-motion: reduce) {
  .hero__badge:hover { transform: none; }
}
.hero__badge--bottom {
  padding: 12px 20px;
}
@media (max-width: 540px) {
  .hero__badges-row { gap: 10px; }
  .hero__badge { padding: 10px 14px; }
  .hero__badge--bottom { padding: 10px 16px; }
}
.hero__badge svg { color: var(--red-500); }
.hero__badge strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 600;
  color: var(--navy-900);
}
.hero__badge span {
  font-size: .68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.hero__badge-num {
  font-family: var(--ff-display);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
  color: var(--red-500);
}
.hero__badge-num small {
  font-size: .7em;
  color: var(--gold-500);
  margin-left: -2px;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: var(--ink-300);
  font-size: .7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold-400), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

@media (min-width: 960px) {
  .hero__container { grid-template-columns: 1.1fr 0.9fr; }
  .hero__scroll-indicator { display: inline-flex; }
}
@media (max-width: 540px) {
  .hero__media { max-width: 380px; padding: 10px 0; }
  .hero__media-frame { aspect-ratio: 16/10; }
  .hero__badge strong { font-size: .95rem; }
  .hero__badge span { font-size: .6rem; }
  .hero__badge-num { font-size: 1.7rem; }
}

/* =====================================================
   MARQUEE / PARTNERS
   ===================================================== */
.partners {
  background: linear-gradient(180deg, var(--cream), var(--ivory));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 7vw, 88px) 0 clamp(36px, 5vw, 56px);
  overflow: hidden;
  position: relative;
}
.partners::before {
  content: "";
  position: absolute;
  top: 10%; left: -5%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(201,169,97,0.1), transparent 70%);
  pointer-events: none;
}

.partners__featured {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
  position: relative;
}
.partners__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
  margin: 0 0 24px;
}
.partners__label-line {
  width: clamp(24px, 5vw, 56px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}
.partners__label-line:last-child {
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.partners__current {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(8px, 1.5vw, 16px) 0;
}
.partners__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(38px, 6vw, 64px);
  transition: transform var(--dur-fast) var(--ease), filter var(--dur-fast) var(--ease);
  filter: saturate(0.92);
}
.partners__logo img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
/* Optical sizing — Kuoni wordmark is a single bold word, Globus has a dot/registered mark.
   Match perceived height by scaling Kuoni slightly smaller. */
.partners__logo--kuoni {
  height: clamp(30px, 5vw, 52px);
}
.partners__logo:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
}
@media (prefers-reduced-motion: reduce) {
  .partners__logo { transition: none; }
  .partners__logo:hover { transform: none; }
}
.partners__current-sep {
  display: inline-flex;
  color: var(--gold-500);
  opacity: 0.5;
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .partners__current { gap: 22px; }
  .partners__current-sep svg { width: 10px; height: 10px; }
}

.partners__past {
  text-align: center;
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--line);
}
.partners__past-label {
  font-size: .72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 500;
  margin: 0 0 22px;
  font-style: italic;
  font-family: var(--ff-display);
  letter-spacing: 0.06em;
  font-size: .95rem;
  text-transform: none;
}
.partners__past .marquee__group span:not(.marquee__dot) {
  font-size: clamp(.9rem, 1.4vw, 1.15rem);
  color: var(--ink-500);
  font-weight: 500;
  letter-spacing: 0.14em;
  opacity: .75;
}
.partners__past .marquee__dot {
  background: var(--stone-300);
  width: 4px; height: 4px;
}

.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex;
  gap: 0;
  animation: marquee 40s linear infinite;
  flex-shrink: 0;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding-right: clamp(24px, 4vw, 48px);
  flex-shrink: 0;
}
.marquee__group span:not(.marquee__dot) {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease);
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group span:hover { color: var(--red-500); }
.marquee__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====================================================
   STATS
   ===================================================== */
.stats {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--ivory);
  position: relative;
}
.stats::after {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: .5;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.stats__item {
  text-align: center;
  padding: 10px 6px;
}
.stats__num {
  font-family: var(--ff-display);
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 500;
  line-height: 1;
  color: var(--red-500);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stats__num small {
  font-size: .55em;
  color: var(--gold-500);
  margin-left: 2px;
}
.stats__lbl {
  font-size: .78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
}
@media (min-width: 700px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}

/* =====================================================
   FLEET SHOWCASE (tabs)
   ===================================================== */
.fleet-show {
  position: relative;
  z-index: 1;
}
.fleet-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 32px;
}
@media (min-width: 700px) {
  .fleet-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
.fleet-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  text-align: left;
  transition: all var(--dur-fast) var(--ease);
  color: var(--ink-300);
  position: relative;
  overflow: hidden;
  min-height: 68px;
}
.fleet-tab::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--red-500);
  transition: width var(--dur) var(--ease);
}
.fleet-tab:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,169,97,0.3);
}
.fleet-tab.is-active {
  background: linear-gradient(160deg, rgba(181,25,30,0.15), rgba(201,169,97,0.06));
  border-color: rgba(201,169,97,0.4);
  color: var(--ivory);
}
.fleet-tab.is-active::before { width: 100%; }
.fleet-tab__brand {
  font-size: .68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 4px;
}
.fleet-tab__model {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: inherit;
}
.fleet-tab.is-active .fleet-tab__model { color: var(--ivory); }

.fleet-stage {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.03), transparent);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
  overflow: hidden;
}
.fleet-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  animation: fadeIn .5s var(--ease-out);
}
.fleet-panel.is-active { display: grid; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.fleet-panel__media {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(201,169,97,0.12), rgba(7,14,24,0.4));
  border: 1px solid rgba(201,169,97,0.18);
}
.fleet-panel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, rgba(7,14,24,0.45) 100%),
    linear-gradient(180deg, transparent 60%, rgba(7,14,24,0.5));
  z-index: 2;
  pointer-events: none;
}
.fleet-panel__halo {
  position: absolute;
  inset: 5%;
  background: radial-gradient(ellipse 60% 45% at 50% 65%, rgba(181,25,30,0.35), transparent 70%);
  filter: blur(28px);
  z-index: 0;
}
.fleet-panel__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.fleet-panel.is-active .fleet-panel__media img {
  animation: floatLg 7s ease-in-out infinite;
}
/* Special handling for transparent-background image (Setra) */
.fleet-panel__media--transparent {
  background:
    radial-gradient(ellipse 70% 50% at 50% 65%, rgba(181,25,30,0.4), transparent 65%),
    linear-gradient(160deg, rgba(201,169,97,0.08), rgba(7,14,24,0.6));
}
.fleet-panel__media--transparent img {
  object-fit: contain;
  padding: 18px;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5)) drop-shadow(0 20px 30px rgba(181,25,30,0.25));
}
.fleet-panel__media--transparent::after { content: none; }
@keyframes floatLg {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fleet-panel__brand {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 8px;
}
.fleet-panel__info h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--ivory);
  margin-bottom: 14px;
}
.fleet-panel__info p {
  color: var(--ink-300);
  margin-bottom: 24px;
}
.fleet-panel__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin: 0 0 22px;
}
.fleet-panel__specs > div { display: flex; flex-direction: column; gap: 2px; }
.fleet-panel__specs dt {
  font-size: .68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.fleet-panel__specs dd {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ivory);
  margin: 0;
}
.fleet-panel__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.fleet-panel__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--ink-300);
}
.fleet-panel__features li::before {
  content: "";
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--red-500);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .fleet-panel { grid-template-columns: 1.1fr 1fr; }
}
@media (max-width: 500px) {
  .fleet-panel__specs { grid-template-columns: 1fr; gap: 10px; }
  .fleet-panel__features { grid-template-columns: 1fr; }
}

/* =====================================================
   SERVICES
   ===================================================== */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all var(--dur) var(--ease);
  overflow: hidden;
  color: var(--ink-700);
  min-height: 260px;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--red-500), var(--gold-500));
  transition: width var(--dur) var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(181,25,30,0.35);
  box-shadow: var(--shadow);
  color: var(--ink-700);
}
.service-card:hover::before { width: 100%; }

.service-card--featured {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  color: var(--ink-300);
  border-color: transparent;
}
.service-card--featured h3 { color: var(--ivory); }
.service-card--featured .service-card__icon {
  background: rgba(201,169,97,0.14);
  color: var(--gold-400);
  border-color: rgba(201,169,97,0.3);
}
.service-card--featured:hover { color: var(--ink-300); }

.service-card__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--cream);
  border: 1px solid var(--stone-200);
  border-radius: 12px;
  color: var(--red-500);
  margin-bottom: 22px;
  transition: all var(--dur) var(--ease);
}
.service-card:hover .service-card__icon {
  background: var(--red-500);
  color: #fff;
  border-color: var(--red-500);
}
.service-card--featured:hover .service-card__icon {
  background: var(--gold-500);
  color: var(--navy-900);
}

.service-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.service-card p { font-size: .9rem; margin: 0; flex-grow: 1; }

.service-card__arrow {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  margin-top: 22px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--red-500);
  transition: all var(--dur) var(--ease);
}
.service-card:hover .service-card__arrow {
  background: var(--red-500);
  color: #fff;
  transform: translateX(4px);
}
.service-card--featured .service-card__arrow {
  background: rgba(201,169,97,0.14);
  color: var(--gold-400);
}

/* =====================================================
   DESTINATIONS + ITALY MAP
   ===================================================== */
.section--heritage {
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
}
.section--heritage::before {
  content: "";
  position: absolute;
  top: 10%; right: -5%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(181,25,30,0.08), transparent 70%);
  pointer-events: none;
}

.map-destinations {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}
@media (min-width: 900px) {
  .map-destinations { grid-template-columns: 0.85fr 1.15fr; }
}

.italy-map {
  position: relative;
  aspect-ratio: 475/560;
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}
.italy-map svg {
  width: 100%;
  height: 100%;
  display: block;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  padding: 4px;
}
.map-pin__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red-500);
  border: 2px solid var(--ivory);
  box-shadow:
    0 0 0 0 rgba(181,25,30,0.5),
    0 4px 10px rgba(181,25,30,0.4);
  transition: transform var(--dur-fast) var(--ease);
  animation: pinPulse 2.5s ease-in-out infinite;
}
@keyframes pinPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(181,25,30,0.55), 0 4px 10px rgba(181,25,30,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(181,25,30,0), 0 4px 10px rgba(181,25,30,0.4); }
}
.map-pin__label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy-900);
  background: var(--ivory);
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(7,14,24,0.1);
  opacity: .85;
  transform: translateY(0);
  transition: all var(--dur-fast) var(--ease);
  pointer-events: none;
  white-space: nowrap;
}
.map-pin:hover .map-pin__dot,
.map-pin.is-active .map-pin__dot {
  transform: scale(1.35);
  background: var(--red-600);
}
.map-pin:hover .map-pin__label,
.map-pin.is-active .map-pin__label {
  opacity: 1;
  color: var(--red-600);
  border-color: var(--red-500);
}
.map-pin.is-active .map-pin__label {
  background: var(--red-500);
  color: #fff;
  border-color: var(--red-500);
}

.destinations-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) and (max-width: 900px) {
  .destinations-list { grid-template-columns: 1fr 1fr; }
  .destinations-list > :first-child { grid-column: 1 / -1; }
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: block;
  isolation: isolate;
}
.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.dest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7,14,24,0.85));
  z-index: 1;
  transition: opacity var(--dur) var(--ease);
}
.dest-card:hover img { transform: scale(1.08); }

.dest-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(18px, 3vw, 28px);
  color: var(--ivory);
}
.dest-card__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 12px;
  margin-bottom: 12px;
  background: var(--red-500);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
}
.dest-card__overlay h3 {
  color: var(--ivory);
  margin: 0 0 4px;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
}
.dest-card__overlay p {
  margin: 0;
  font-size: .82rem;
  color: var(--stone-200);
  opacity: .9;
}

/* =====================================================
   HERITAGE
   ===================================================== */
.heritage {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (min-width: 900px) { .heritage { grid-template-columns: 1fr 1.1fr; } }

.heritage__media { position: relative; max-width: 460px; margin: 0 auto; width: 100%; }
.heritage__frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.heritage__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,14,24,0.45));
  z-index: 1;
}
.heritage__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.heritage__stat {
  position: absolute;
  bottom: -20px;
  right: 10px;
  padding: 20px 26px;
  background: var(--red-500);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-red);
  text-align: center;
  z-index: 2;
}
.heritage__stat strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}
.heritage__stat span {
  display: block;
  margin-top: 4px;
  font-size: .68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.heritage__text p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-500);
  margin: 22px 0 32px;
}

.pillars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 560px) { .pillars { grid-template-columns: 1fr 1fr; } }
.pillars li { display: flex; gap: 14px; }
.pillars__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--cream);
  border: 1px solid var(--stone-200);
  border-radius: 10px;
  color: var(--red-500);
}
.pillars h4 { margin: 0 0 3px; font-size: .95rem; color: var(--navy-900); }
.pillars p { margin: 0; font-size: .85rem; color: var(--ink-500); line-height: 1.5; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials { padding-bottom: clamp(72px, 10vw, 120px); }
.testimonial-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .testimonial-track { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  margin: 0;
  padding: 32px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  color: var(--ink-300);
  backdrop-filter: blur(10px);
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.testimonial:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,169,97,0.3);
  transform: translateY(-4px);
}
.testimonial__stars {
  display: flex;
  gap: 3px;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.testimonial p {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ivory);
  margin: 0 0 24px;
  font-style: italic;
  flex-grow: 1;
}
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: .9rem;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial strong {
  font-family: var(--ff-body);
  font-weight: 600;
  color: var(--ivory);
  font-size: .88rem;
  display: block;
  margin-bottom: 2px;
}
.testimonial footer span {
  font-size: .75rem;
  color: var(--ink-400);
}

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: flex-start;
}
@media (min-width: 900px) { .faq { grid-template-columns: 0.8fr 1.2fr; } }

.faq__head p {
  font-size: 1rem;
  color: var(--ink-500);
  margin: 20px 0 28px;
  max-width: 400px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--dur-fast) var(--ease);
}
.faq-item[open] {
  border-color: rgba(181,25,30,0.25);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--dur-fast) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red-500); }
.faq-item[open] summary { color: var(--red-500); }

.faq-item__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  position: relative;
  transition: all var(--dur-fast) var(--ease);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  transition: transform var(--dur-fast) var(--ease);
}
.faq-item__icon::before {
  width: 10px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-item__icon::after {
  width: 1.5px; height: 10px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-item__icon {
  background: var(--red-500);
  border-color: var(--red-500);
  color: #fff;
}
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-item__body {
  padding: 0 22px 22px;
  color: var(--ink-500);
  line-height: 1.65;
  font-size: .95rem;
  animation: fadeIn .3s var(--ease-out);
}
.faq-item__body p { margin: 0; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section {
  background: linear-gradient(180deg, var(--ivory), var(--cream));
  position: relative;
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: flex-start;
}
@media (min-width: 900px) { .contact { grid-template-columns: 1fr 1.15fr; } }

.contact__text p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-500);
  margin: 24px 0 36px;
}
.contact__info {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__info li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.contact__info li:last-child { border-bottom: none; padding-bottom: 0; }
.contact__info svg {
  margin-top: 4px;
  color: var(--red-500);
  flex-shrink: 0;
}
.contact__info span {
  display: block;
  font-size: .7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 3px;
}
.contact__info a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy-900);
}

.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__form-head {
  margin-bottom: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.contact__form-head h3 {
  margin: 0 0 4px;
  font-size: 1.4rem;
}
.contact__form-head p {
  margin: 0;
  font-size: .8rem;
  color: var(--ink-400);
  letter-spacing: 0.01em;
}
.contact__form-head p span,
.field label span {
  color: var(--red-500);
  font-weight: 600;
}

.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: .78rem;
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 16px; /* prevents iOS zoom */
  color: var(--ink-700);
  background: var(--ivory);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 13px 15px;
  min-height: 46px;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(181,25,30,0.12);
}
.field textarea { resize: vertical; min-height: 100px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 520px) { .field-row { grid-template-columns: 1fr 1fr; } }

.form-note {
  font-size: .72rem;
  color: var(--ink-400);
  text-align: center;
  margin: 0;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--navy-900);
  color: var(--ink-300);
  padding: 64px 0 28px;
  padding-bottom: calc(28px + var(--safe-b));
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(24px, 4vw, 48px); } }

.footer__brand p {
  margin: 14px 0 20px;
  max-width: 380px;
  font-size: .88rem;
  color: var(--ink-400);
  line-height: 1.65;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: var(--ivory);
  border-radius: 14px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.5);
  width: fit-content;
}
.footer__logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.footer__logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -14px rgba(181,25,30,0.35);
}
@media (max-width: 560px) {
  .footer__logo { padding: 12px 18px; }
  .footer__logo img { height: 54px; }
}

.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--ink-300);
  transition: all var(--dur-fast) var(--ease);
}
.footer__social a:hover {
  background: var(--red-500);
  color: #fff;
  border-color: var(--red-500);
  transform: translateY(-2px);
}

.footer__col h4 {
  color: var(--ivory);
  font-size: .76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--ff-body);
  font-weight: 600;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  font-size: .88rem;
  color: var(--ink-400);
}
.footer__col a:hover { color: var(--red-400); }

.footer__news {
  font-size: .85rem;
  color: var(--ink-400);
  margin-bottom: 14px;
  line-height: 1.55;
}
.footer__news-form {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 4px 4px 4px 16px;
}
.footer__news-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ivory);
  font-size: .85rem;
  outline: none;
  min-width: 0;
}
.footer__news-form input::placeholder { color: var(--ink-400); }
.footer__news-form button {
  background: var(--red-500);
  color: #fff;
  padding: 9px 18px;
  font-size: .8rem;
  font-weight: 500;
  border-radius: 999px;
  transition: background var(--dur-fast) var(--ease);
}
.footer__news-form button:hover { background: var(--red-600); }

.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: .76rem;
  color: var(--ink-400);
}

/* =====================================================
   FLOATING ACTION BUTTON (WhatsApp)
   ===================================================== */
.fab {
  position: fixed;
  bottom: calc(20px + var(--safe-b));
  right: 20px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px -12px rgba(37,211,102,0.55);
  transition: all var(--dur) var(--ease);
  z-index: 90;
}
.fab::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: .3;
  animation: fabPulse 2.2s ease-in-out infinite;
  z-index: -1;
}
@keyframes fabPulse {
  0% { transform: scale(1); opacity: .4; }
  100% { transform: scale(1.35); opacity: 0; }
}
.fab:hover {
  transform: scale(1.08) rotate(-4deg);
  color: #fff;
  box-shadow: 0 28px 56px -16px rgba(37,211,102,0.6);
}

/* =====================================================
   STICKY CTA BAR (mobile)
   ===================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 89;
  padding: 10px 14px calc(10px + var(--safe-b));
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform var(--dur) var(--ease);
  box-shadow: 0 -10px 40px -10px rgba(7,14,24,0.15);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
}
.sticky-cta__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.sticky-cta__text strong {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--navy-900);
  font-weight: 600;
}
.sticky-cta__text span {
  font-size: .72rem;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* Push content up on mobile so sticky CTA doesn't cover footer */
@media (max-width: 767px) {
  body.has-sticky-cta .footer { padding-bottom: calc(90px + var(--safe-b)); }
  body.has-sticky-cta .fab { bottom: calc(82px + var(--safe-b)); }
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal].is-visible { transition-delay: var(--reveal-delay, 0ms); }

/* =====================================================
   UTILS
   ===================================================== */
@media (max-width: 767px) {
  .topbar__inner { justify-content: center; }
}


/* =====================================================
   QUOTE CALCULATOR WIDGET
   ===================================================== */
.section--calculator {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(48px, 7vw, 80px);
}
.qc {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 40px 80px -30px rgba(7,14,24,0.2);
  overflow: hidden;
  border: 1px solid var(--line);
}
.qc__header {
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  color: var(--ivory);
}
.qc__label {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 12px;
}
.qc__title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--ivory);
  margin: 0 0 10px;
  line-height: 1.15;
}
.qc__title .script-accent {
  color: var(--red-400);
}
.qc__desc {
  color: var(--ink-300);
  margin: 0;
  font-size: 0.95rem;
  max-width: 460px;
  margin-inline: auto;
}
.qc__form {
  padding: clamp(28px, 4vw, 40px);
}
.qc__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .qc__grid { grid-template-columns: 1fr 1fr; }
  .qc__field--wide { grid-column: 1 / -1; }
}
.qc__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qc__field span {
  font-size: .82rem;
  color: var(--navy-800);
  font-weight: 500;
}
.qc__field input,
.qc__field select {
  font-family: inherit;
  font-size: 16px;
  padding: 13px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: var(--ivory);
  color: var(--ink-700);
  transition: all 0.2s var(--ease);
}
.qc__field input:focus,
.qc__field select:focus {
  outline: none;
  border-color: var(--red-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(181,25,30,0.12);
}
.qc__cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.qc__cta .btn {
  width: 100%;
  max-width: 420px;
}
.qc__note {
  margin: 20px 0 0;
  font-size: .76rem;
  color: var(--ink-400);
  text-align: center;
  line-height: 1.5;
}


/* =====================================================
   GLOBUS PARTNERSHIP PROOF SECTION
   ===================================================== */
.globus-proof {
  padding: clamp(48px, 7vw, 80px) 0;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.globus-proof__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
@media (min-width: 900px) {
  .globus-proof__inner { grid-template-columns: 1.1fr 1fr; }
}
.globus-proof__media {
  position: relative;
}
.globus-proof__media::before {
  content: "";
  position: absolute;
  inset: 5%;
  background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(181,25,30,0.18), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.globus-proof__media img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(7,14,24,0.18));
}
.globus-proof__label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 14px;
}
.globus-proof__text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 16px;
  line-height: 1.1;
}
.globus-proof__text p {
  color: var(--ink-500);
  margin: 0 0 24px;
  line-height: 1.7;
}
.globus-proof__points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}
.globus-proof__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--navy-800);
  font-weight: 500;
}
.globus-proof__points svg { flex-shrink: 0; }


/* =====================================================
   CITY DETAIL CARD (revealed on map pin click)
   ===================================================== */
.city-card {
  margin-top: clamp(28px, 4vw, 44px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 280ms ease-out, transform 280ms ease-out;
  will-change: opacity, transform;
}
.city-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.city-card.is-changing {
  opacity: 0.4;
  transform: translateY(8px);
  transition-duration: 160ms;
}
@media (prefers-reduced-motion: reduce) {
  .city-card,
  .city-card.is-changing {
    transition: none;
    transform: none;
  }
}

.city-card__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(7, 14, 24, 0.18);
}
@media (min-width: 760px) {
  .city-card__inner {
    grid-template-columns: 1.05fr 1fr;
  }
}

.city-card__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  cursor: pointer;
  z-index: 2;
  transition: background 200ms ease, transform 160ms ease;
  box-shadow: 0 4px 12px rgba(7, 14, 24, 0.12);
}
.city-card__close:hover {
  background: var(--red-500);
  color: #fff;
  transform: scale(1.05);
}
.city-card__close:focus-visible {
  outline: 2px solid var(--red-500);
  outline-offset: 3px;
}

.city-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--navy-800);
  overflow: hidden;
}
.city-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease-out;
}
.city-card__inner:hover .city-card__media img {
  transform: scale(1.04);
}
.city-card__region {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(7, 14, 24, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ivory);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.city-card__body {
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.city-card__tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 8px;
}
.city-card__name {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--navy-900);
  margin: 0 0 14px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.city-card__story {
  font-size: 0.96rem;
  color: var(--ink-500);
  line-height: 1.65;
  margin: 0 0 22px;
}
.city-card__sights {
  margin-bottom: 26px;
}
.city-card__sights h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin: 0 0 12px;
}
.city-card__sights ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.city-card__sights li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: var(--ink-700);
  line-height: 1.5;
}
.city-card__sights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-500);
}
.city-card__cta {
  align-self: flex-start;
  margin-top: auto;
}

/* Active pin state — distinct visually beyond color */
.map-pin.is-active .map-pin__dot {
  background: var(--red-500);
  border-color: #fff;
  box-shadow:
    0 0 0 4px rgba(181, 25, 30, 0.18),
    0 8px 16px -4px rgba(181, 25, 30, 0.5);
  transform: scale(1.4);
}
.map-pin.is-active .map-pin__label {
  opacity: 1;
  background: var(--red-500);
  color: #fff;
  border-color: var(--red-500);
  font-weight: 700;
}

.map-pin {
  cursor: pointer;
  touch-action: manipulation;
}
.map-pin:focus-visible {
  outline: 2px solid var(--red-500);
  outline-offset: 4px;
  border-radius: 50%;
}
