/* ============================================================
   FONTS
============================================================ */
@font-face {
  font-family: 'Migra';
  src: url('../fonts/Migra-Extralight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Migra';
  src: url('../fonts/MigraItalic-ExtralightItalic.woff2') format('woff2');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Migra';
  src: url('../fonts/Migra-Extrabold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Migra';
  src: url('../fonts/MigraItalic-ExtraboldItalic.woff2') format('woff2');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Telegraf';
  src: url('../fonts/Telegraf-UltraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Telegraf';
  src: url('../fonts/Telegraf-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Telegraf';
  src: url('../fonts/Telegraf-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Telegraf';
  src: url('../fonts/Telegraf-UltraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   SUNSET PALETTE
============================================================ */
:root {
  --blue: #204ECF;
  --pink: #FAA2CB;
  --navy: #14225C;
  --cornflower: #85A5F2;
  --light-orchid: #EEB1D2;
  --tomato: #F26749;
  --goldenrod: #EA9836;
  --seashell: #FCDED6;
  --ivory: #FFF3F2;

  --g-navy: #0A1C66;
  --g-blue: #0842E8;
  --g-cornflower: #78A0FF;
  --g-pink: #FF9DCB;
  --g-light-orchid: #F7A8D3;
  --g-tomato: #FF5F3C;
  --g-goldenrod: #FF9A21;
  --g-seashell: #FFDCD3;

  --accent: var(--blue);
  --dark: #1a1a1a;
  --grey-100: #f5f5f5;
  --light: #f2f2f2;
  --font-display: 'Migra', 'Georgia', serif;
  --font-body: 'Telegraf', system-ui, sans-serif;
}

/* ============================================================
   RESET
============================================================ */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-body); color: var(--dark); }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   BUTTONS — sunset palette system
   Solid blue at rest → gradient slides to tomato on hover →
   snaps solid tomato on click (450ms glide vs 80ms snap)
============================================================ */
.btn-gradient {
  border: none;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
  background-color: var(--blue);
  background-image: linear-gradient(90deg, var(--blue), var(--tomato));
  background-size: 220% 100%;
  background-position: 0% 0%;
  transition: background-position .45s ease, transform .1s ease;
}
.btn-gradient:hover { background-position: 100% 0%; }
.btn-gradient:active {
  background-image: none;
  background-color: var(--tomato);
  transition: background-color .08s ease, transform .08s ease;
  transform: scale(.97);
}

/* ============================================================
   ANIMATED SUNSET GRADIENT — process-right + footer + mobile menu
============================================================ */
.sunset-gradient {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg,
    var(--g-navy) 0%,
    var(--g-blue) 26%,
    var(--g-cornflower) 48%,
    var(--g-light-orchid) 66%,
    var(--g-tomato) 84%,
    var(--g-seashell) 100%);
  background-size: 100% 140%;
  animation: baseShift 20s ease-in-out infinite alternate;
}
@keyframes baseShift {
  0%   { background-position: 50% 0%; }
  100% { background-position: 50% 100%; }
}
.sunset-gradient::before {
  content: '';
  position: absolute;
  inset: -30%;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 30%, var(--g-goldenrod) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, var(--g-pink) 0%, transparent 40%),
    radial-gradient(circle at 70% 75%, var(--g-tomato) 0%, transparent 42%),
    radial-gradient(circle at 25% 80%, var(--g-cornflower) 0%, transparent 45%);
  background-repeat: no-repeat;
  background-size: 160% 160%;
  filter: blur(34px);
  opacity: .75;
  mix-blend-mode: screen;
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { background-position: 0% 0%,   100% 0%,   100% 100%, 0% 100%; }
  50%  { background-position: 30% 20%,  70% 30%,   65% 70%,  25% 65%; }
  100% { background-position: 10% 40%,  85% 10%,   90% 90%,  10% 85%; }
}
.flare {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
  animation: floaty 10s ease-in-out infinite alternate;
}
.flare.a { width: 240px; height: 240px; top: 8%; right: 18%; background: radial-gradient(circle, var(--g-goldenrod), transparent 70%); opacity: .6; }
.flare.b { width: 180px; height: 180px; bottom: 12%; left: 12%; background: radial-gradient(circle, #fff, transparent 70%); opacity: .4; animation-duration: 13s; animation-direction: alternate-reverse; }
@keyframes floaty {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -32px) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .sunset-gradient::before, .flare { animation: none; }
}

/* ============================================================
   NIGHT GRADIENT — deep two-tone variant
   (applied to process-right + footer; mobile menu keeps the
   original .sunset-gradient look)
============================================================ */
.night-gradient {
  background: linear-gradient(165deg,
    var(--g-navy) 0%,
    var(--blue) 45%,
    color-mix(in srgb, var(--g-tomato) 60%, black) 100%);
  background-size: 100% 140%;
}
.night-gradient::before {
  background-image:
    radial-gradient(circle at 78% 18%, color-mix(in srgb, var(--goldenrod) 75%, black 10%) 0%, transparent 45%),
    radial-gradient(circle at 18% 82%, color-mix(in srgb, var(--g-tomato) 55%, black) 0%, transparent 45%);
  opacity: .5;
}
.night-gradient .flare.a {
  background: radial-gradient(circle, var(--goldenrod), transparent 70%);
  opacity: .3;
}
.night-gradient .flare.b {
  background: radial-gradient(circle, #fff, transparent 70%);
  opacity: .15;
}

/* ============================================================
   HERO
============================================================ */
header.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--dark);
  overflow: hidden;
}

/* VIDEO BACKGROUND */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.65) saturate(.85);
}

/* keep the old crossfade slider but put it behind the video fallback */
.header-slider { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.header-slide {
  position: absolute;
  inset: 0;
  opacity: 0.0001;
  transition: opacity 2000ms ease;
  z-index: 1;
}
.header-slide.slide-active { opacity: 1; z-index: 2; }
.header-slide .media-crop { height: 100%; position: relative; filter: brightness(.75) saturate(.8); }
.header-slide img, .header-slide video { width: 100%; height: 100%; object-fit: cover; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  transform: translateY(0);
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), background .3s ease;
}
.navbar.nav-hidden { transform: translateY(-110%); }
.navbar.nav-scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.navbar.nav-scrolled nav a { color: #111; }
.navbar.nav-scrolled nav a:hover { color: var(--tomato); }
.navbar.nav-scrolled .right { color: #111; }
.navbar .logo { color: #fff; }
.navbar.nav-scrolled .logo svg { filter: none !important; }
.navbar.nav-scrolled .logo svg .cls-4 { fill: var(--navy) !important; }
.navbar.nav-scrolled .burger span { background: var(--navy); }
.navbar nav {
  display: flex;
  gap: 28px;
  padding: 10px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .18), 0 2px 8px rgba(0, 0, 0, .12);
}
.navbar nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.navbar nav a:hover { color: var(--tomato); }
.navbar .right {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar .lang-switch {
  color: inherit;
  font-size: 12px;
  letter-spacing: .08em;
  text-decoration: none;
  opacity: .8;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 4px 8px;
  transition: opacity .2s ease;
}
.navbar .lang-switch:hover { opacity: 1; }
.mobile-menu .lang-switch {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: .08em;
  opacity: .85;
}
.navbar .cta-nav {
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: .12em;
  text-decoration: none;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  gap: 14px;
  padding: 40px 20px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 27px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .85;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(52px, 9vw, 100px);
  margin: 0;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .5);
}
.hero-cta {
  margin-top: 16px;
  border-radius: 6px;
  padding: 14px 32px;
  font-size: 13px;
  display: inline-block;
  text-decoration: none;
}

/* ============================================================
   PROCESS / CIRCLE SECTION
============================================================ */
.process-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.process-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 60px;
  background: #fff;
  text-align: center;
}
.process-left-logo {
  width: 96px;
  height: auto;
  fill: var(--blue);
  flex-shrink: 0;
}
.process-left p {
  font-family: var(--font-display);
  font-weight: 200;
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  max-width: 420px;
  color: var(--blue);
  margin: 0;
}
.process-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  overflow: hidden;
}
.process-right h2 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 26px;
  letter-spacing: .02em;
  margin-bottom: 44px;
  text-align: center;
  padding: 0 24px;
  color: var(--ivory);
}
.circle-wrap { position: relative; z-index: 1; width: 340px; height: 340px; }
.circle-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}
.ring-track {
  fill: none;
  stroke: rgba(255, 243, 242, .22);
  stroke-width: 1.5;
}
.ring-progress {
  fill: none;
  stroke: var(--goldenrod);
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease;
  filter: drop-shadow(0 0 6px rgba(234, 152, 54, .65));
}
.step {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: .45;
  transition: opacity .5s ease;
}
.step.active { opacity: 1; }
.step-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ivory);
  opacity: .6;
  box-shadow: 0 0 0 rgba(234, 152, 54, 0);
  transition: width .4s ease, height .4s ease, background .4s ease, box-shadow .4s ease, opacity .4s ease;
}
.step.active .step-dot {
  width: 20px;
  height: 20px;
  background: var(--goldenrod);
  opacity: 1;
  box-shadow: 0 0 0 5px rgba(234, 152, 54, .2), 0 0 20px rgba(234, 152, 54, .7);
}
.step-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  max-width: 100px;
}
.step-number {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 15px;
  letter-spacing: .03em;
  color: rgba(255, 243, 242, .45);
  transition: color .5s ease;
}
.step.active .step-number { color: var(--goldenrod); }
.step-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: normal;
  line-height: 1.3;
  color: rgba(255, 243, 242, .68);
  transition: color .5s ease;
}
.step.active .step-text { color: var(--ivory); }
/* 5 steps at 72° increments — exact pentagonal positions */
.step[data-i="0"] .step-dot  { top: 0%;    left: 50%;    transform: translate(-50%, -50%); }
.step[data-i="0"] .step-label{ top: -14px; left: 50%;    transform: translate(-50%, -100%); }

.step[data-i="1"] .step-dot  { top: 34.5%; left: 97.6%;  transform: translate(-50%, -50%); }
.step[data-i="1"] .step-label{ top: 34.5%; left: 100%;   transform: translate(10px, -50%); }

.step[data-i="2"] .step-dot  { top: 90.5%; left: 79.4%;  transform: translate(-50%, -50%); }
.step[data-i="2"] .step-label{ top: 96%;   left: 79.4%;  transform: translate(10px, 0); }

.step[data-i="3"] .step-dot  { top: 90.5%; left: 20.6%;  transform: translate(-50%, -50%); }
.step[data-i="3"] .step-label{ top: 96%;   left: 20.6%;  transform: translate(calc(-100% - 10px), 0); }

.step[data-i="4"] .step-dot  { top: 34.5%; left: 2.4%;   transform: translate(-50%, -50%); }
.step[data-i="4"] .step-label{ top: 34.5%; left: 0%;     transform: translate(calc(-100% - 10px), -50%); }

/* ============================================================
   EXPERIENCES CAROUSEL
============================================================ */
.section {
  background: var(--grey-100);
  padding: 96px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}
.section h2 {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 48px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  letter-spacing: .04em;
}
.section-intro {
  max-width: 620px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  opacity: .8;
  margin: -12px 0 0;
}
.section-intro a { color: var(--blue); text-decoration: none; border-bottom: 1px solid currentColor; }
.section-intro a:hover { color: var(--tomato); }
.tabs {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 8px;
  padding: 0;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  width: 100%;
  max-width: 1200px;
}
.tabs button {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 8px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 18px;
  color: var(--dark);
  opacity: .35;
  cursor: pointer;
  transition: all .2s ease;
}
.tabs button:hover  { color: var(--tomato); opacity: 1; }
.tabs button.active { color: var(--blue); opacity: 1; border-bottom-color: var(--blue); }
.tab-count {
  transform: translateY(-4px);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: currentColor;
  font-size: 11px;
}
.tab-count span { color: #fff; }

.reis-swiper { width: 100%; padding: 32px 0 0; }
.reis-swiper .swiper-wrapper { align-items: stretch; }
.slide { width: 750px; max-width: 80vw; height: 450px; cursor: pointer; }
.slide-inner { position: relative; display: flex; flex-direction: column; height: 100%; text-decoration: none; }
.slide-img-crop { position: absolute; inset: 1px; overflow: hidden; }
.slide-img-crop img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.75);
  transform: scale(1);
  transition: transform .3s ease-in-out;
}
.swiper-slide-active .slide-img-crop img { transform: scale(1.1); transition: transform .7s ease-in-out; }
.slide-body { position: relative; flex-grow: 1; display: flex; flex-direction: column; height: 100%; }
.slide-pad { padding: 24px; display: flex; flex-direction: column; height: 100%; color: #fff; }
.slide-header { display: flex; align-items: flex-start; justify-content: space-between; }
.badge-new {
  background: var(--tomato); color: #fff; font-size: 11px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px 0 0 6px; display: none;
  font-family: var(--font-body);
}
.has-new .badge-new { display: inline-flex; align-items: center; }
.badge-row { margin-left: auto; display: flex; }
.badge-type {
  display: flex; align-items: center; gap: 6px; background: #fff; color: #111; font-size: 11px;
  text-transform: uppercase; height: 28px; padding: 0 10px; border-radius: 0 6px 6px 0; white-space: nowrap;
  font-family: var(--font-body);
}
.slide:not(.has-new) .badge-type { border-radius: 6px; }
.badge-type svg { width: 14px; height: 14px; flex: none; }
.slide-overlay {
  flex-grow: 1; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.98); transition: all .2s ease;
}
.swiper-slide-active .slide-overlay {
  opacity: 1; transform: scale(1); transition: all .7s ease; transition-delay: .1s;
}
.slide-overlay-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; height: 100%; text-align: center; }
.slide-title {
  font-size: 34px; line-height: 1.05; max-width: 90%; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis;
}
.slide-title .loc { display: block; font-family: var(--font-display); font-style: italic; font-size: .55em; margin-bottom: 4px; font-weight: 200; }
.slide-title .name { font-family: var(--font-display); font-weight: 200; text-transform: uppercase; }
.slide-caption {
  height: 80px; width: 100%; background: var(--grey-100); display: flex; flex-direction: column; overflow: hidden;
  transform-origin: bottom; transform: scaleY(1);
  transition: transform .7s cubic-bezier(0.19, 1, 0.22, 1);
}
.swiper-slide-active .slide-caption { transform: scaleY(0); transition-duration: 1.5s; }
.slide-caption p {
  width: 100%; padding: 12px 12px 0; margin: 0;
  font-family: var(--font-display); font-weight: 200; line-height: 1.15;
  color: #111; max-width: 250px; opacity: 1; transition: opacity .5s ease; transition-delay: .2s;
}
.swiper-slide-active .slide-caption p { opacity: 0; transition: none; transition-delay: 0s; }
.slide-caption .loc { font-style: italic; font-size: .9em; display: block; }

.swiper-outer {
  position: relative;
  width: 100%;
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px; height: 48px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.6);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(4px);
  display: grid; place-content: center; cursor: pointer;
  color: #fff; transition: background .2s ease, border-color .2s ease;
}
.nav-btn.prev { left: 16px; }
.nav-btn.next { right: 16px; }
.nav-btn:hover { background: rgba(0,0,0,.42); border-color: #fff; }
.nav-btn.swiper-button-disabled { opacity: .35; pointer-events: none; }
.nav-btn svg { width: 20px; height: 20px; }

/* ============================================================
   INSPIRE SECTION
============================================================ */
.inspire {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; color: #fff;
  gap: 28px; padding: 60px 20px; overflow: hidden;
  background-image: url('../media/A7402656.JPG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.inspire::before {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.45); z-index: 0;
}
.inspire > * { position: relative; z-index: 1; }
.inspire img { display: none; }
.inspire .mark { width: 56px; height: 56px; border-radius: 50%; background: var(--goldenrod); margin-bottom: 8px; box-shadow: 0 0 0 8px rgba(234, 152, 54, .18), 0 0 32px 12px rgba(234, 152, 54, .35), 0 0 70px 20px rgba(234, 152, 54, .18); }
.inspire h2 { font-family: var(--font-display); font-weight: 200; font-size: clamp(36px, 5vw, 56px); text-transform: uppercase; margin: 0; letter-spacing: .04em; text-shadow: 0 2px 16px rgba(0, 0, 0, .5); }
.inspire p { max-width: 600px; opacity: .9; line-height: 1.7; font-weight: 200; font-size: 16px; text-shadow: 0 1px 8px rgba(0, 0, 0, .4); }
.inspire .btn-gradient { border-radius: 6px; padding: 14px 32px; font-size: 13px; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }

/* ============================================================
   TWO CARD SECTION
============================================================ */
.cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding: 80px 24px; max-width: 1280px; margin: 0 auto;
}
.card {
  position: relative; border-radius: 12px; overflow: hidden; min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; color: #fff;
}
.card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; filter: brightness(.6); }
.card h3 { font-family: var(--font-display); font-weight: 200; font-size: 28px; margin: 0 0 16px; text-shadow: 0 2px 12px rgba(0, 0, 0, .4); }
.card form { display: flex; gap: 8px; background: #fff; border-radius: 999px; padding: 6px; }
.card input { flex: 1; border: none; outline: none; padding: 10px 16px; border-radius: 999px; font-size: 14px; font-family: var(--font-body); }
.card input::placeholder { color: #999; }
.card .submit { background: var(--tomato); color: #fff; border: none; border-radius: 999px; padding: 10px 18px; cursor: pointer; transition: background .25s ease; font-family: var(--font-body); }
.card .submit:hover { background: var(--blue); }
.card p { font-size: 14px; opacity: .85; line-height: 1.6; margin: 0 0 20px; font-weight: 200; text-shadow: 0 1px 8px rgba(0, 0, 0, .35); }
.card a.btn { color: #fff; text-decoration: none; border-radius: 6px; padding: 12px 22px; display: inline-flex; align-items: center; gap: 8px; width: fit-content; font-size: 13px; }

/* ============================================================
   FOOTER
============================================================ */
footer {
  position: relative; color: var(--navy); padding: 80px 24px 24px; overflow: hidden;
}
.footer-top {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px;
  max-width: 1280px; margin: 0 auto 60px; position: relative;
}
.footer-logo { display: flex; flex-direction: column; gap: 12px; }
.footer-logo svg { opacity: .85; fill: var(--navy) !important; }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(20, 34, 92, .12);
  display: grid; place-content: center; text-decoration: none; color: var(--navy);
  font-size: 11px; font-family: var(--font-body); letter-spacing: .04em;
  transition: background .2s ease;
}
.footer-social a:hover { background: rgba(20, 34, 92, .22); }
.footer-links { display: flex; gap: 60px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; opacity: .9; }
.footer-links ul li a { text-decoration: none; color: inherit; transition: opacity .2s ease; }
.footer-links ul li a:hover { opacity: .65; }
.footer-agent { text-align: right; }
.footer-agent a {
  font-family: var(--font-body); font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy); text-decoration: none; opacity: .85;
}
.footer-agent .circle {
  width: 36px; height: 36px; border: 1px solid rgba(20, 34, 92, .4); border-radius: 50%;
  display: grid; place-content: center; margin: 12px 0 0 auto;
}
.footer-bottom {
  border-top: 1px solid rgba(20, 34, 92, .2); padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; opacity: .6; max-width: 1280px; margin: 0 auto; position: relative;
  font-family: var(--font-body);
}
.footer-bottom .powered-by {
  display: inline-flex; align-items: center; gap: 6px;
  color: inherit; text-decoration: none; opacity: 1;
  transition: opacity .2s ease;
}
.footer-bottom .powered-by:hover { opacity: .65; }
.footer-bottom .powered-by svg { height: 15px; width: auto; }
.footer-bottom .powered-by svg .cls-1 { fill: var(--navy) !important; }

footer.night-gradient { color: var(--ivory); }
footer.night-gradient .footer-logo svg { fill: var(--ivory) !important; }
footer.night-gradient .footer-social a { background: rgba(255, 243, 242, .12); color: var(--ivory); }
footer.night-gradient .footer-social a:hover { background: rgba(255, 243, 242, .22); }
footer.night-gradient .footer-agent a { color: var(--ivory); }
footer.night-gradient .footer-agent .circle { border-color: rgba(255, 243, 242, .4); }
footer.night-gradient .footer-bottom { border-top-color: rgba(255, 243, 242, .2); }
footer.night-gradient .footer-bottom .powered-by svg .cls-1 { fill: var(--ivory) !important; }

/* ============================================================
   BURGER / MOBILE MENU
============================================================ */
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; border: none; background: transparent; cursor: pointer; padding: 0;
}
.burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transform: translateX(100%);
  transition: transform .4s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px; z-index: 1;
  width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(255, 255, 255, .25);
  color: var(--navy); font-size: 22px; line-height: 1; cursor: pointer;
}
.mobile-menu nav { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.mobile-menu nav a { color: var(--navy); text-decoration: none; font-family: var(--font-display); font-size: 22px; font-weight: 200; }

/* ============================================================
   MOBILE TRIP STACK (fallback carousel for mobile)
============================================================ */
.mobile-trip-stack { display: none; width: 100%; padding: 0 20px; flex-direction: column; gap: 0; }

/* Mobile tab selector */
.mobile-tab-select {
  display: none;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 24px;
  padding: 0 20px;
}
.mobile-tab-select select {
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--blue);
  background: #fff;
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 18px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23204ECF' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.mobile-category { display: none; flex-direction: column; gap: 16px; }
.mobile-category.active { display: flex; }

.mobile-trip-card {
  text-decoration: none;
  position: relative; border-radius: 12px; overflow: hidden; height: 280px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.mobile-trip-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.75); }
.mobile-trip-card .mt-badges { position: relative; z-index: 1; display: flex; justify-content: space-between; padding: 14px; }
.mobile-trip-card .mt-new { background: var(--tomato); color: #fff; font-size: 10px; text-transform: uppercase; padding: 4px 8px; border-radius: 4px; font-family: var(--font-body); }
.mobile-trip-card .mt-tag { background: #fff; color: #111; font-size: 10px; text-transform: uppercase; padding: 4px 8px; border-radius: 4px; margin-left: auto; font-family: var(--font-body); }
.mobile-trip-card .mt-text { position: relative; z-index: 1; padding: 16px; color: #fff; }
.mobile-trip-card .mt-loc { display: block; font-family: var(--font-display); font-style: italic; font-size: 13px; font-weight: 200; opacity: .85; }
.mobile-trip-card .mt-title { font-family: var(--font-display); font-weight: 200; text-transform: uppercase; font-size: 19px; line-height: 1.15; margin: 2px 0 0; }

/* ============================================================
   INTERIOR PAGES — page hero, breadcrumbs, editorial blocks
============================================================ */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
}
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,.65) 100%);
  z-index: 0;
}
.page-hero-body { position: relative; z-index: 1; padding: 80px 32px 64px; text-align: center; }
.page-hero-eyebrow {
  font-family: var(--font-body); font-weight: 200; font-size: 16px;
  letter-spacing: .18em; text-transform: uppercase; opacity: .85;
  text-shadow: 0 2px 12px rgba(0,0,0,.45); margin-bottom: 10px;
}
.page-hero h1 {
  font-family: var(--font-display); font-weight: 200; margin: 0 auto;
  font-size: clamp(36px, 6vw, 64px); line-height: 1.05; text-transform: uppercase;
  letter-spacing: .02em; max-width: 900px; text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.page-hero p { max-width: 620px; margin: 18px auto 0; font-size: 17px; line-height: 1.6; opacity: .92; text-shadow: 0 1px 8px rgba(0,0,0,.4); }

.breadcrumbs {
  position: relative; z-index: 2; padding: 108px 32px 0;
  font-family: var(--font-body); font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
}
.breadcrumbs a { color: #fff; opacity: .75; text-decoration: none; }
.breadcrumbs a:hover { opacity: 1; }
.breadcrumbs span { color: #fff; opacity: .5; margin: 0 6px; }

.editorial { max-width: 1100px; margin: 0 auto; padding: 96px 24px; }
.editorial-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 64px 0; border-bottom: 1px solid rgba(0,0,0,.08);
}
.editorial-row:last-child { border-bottom: none; }
.editorial-row.reverse .editorial-media { order: 2; }
.editorial-media { position: relative; }
.editorial-media img, .editorial-media video { width: 100%; height: 420px; object-fit: cover; border-radius: 12px; display: block; }
.editorial-media-stack { display: flex; flex-direction: column; gap: 16px; }
.editorial-media-stack img { height: 260px; }
.editorial-media .media-badge {
  position: absolute; top: 14px; right: 14px; z-index: 1;
  background: rgba(255,255,255,.92); color: var(--dark); font-size: 11px; text-transform: uppercase;
  letter-spacing: .08em; padding: 7px 13px; border-radius: 999px;
}
.editorial-label {
  font-family: var(--font-body); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--tomato); margin: 0 0 12px;
}
.editorial-copy h2 {
  font-family: var(--font-display); font-weight: 200; font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1; margin: 0 0 20px; color: var(--dark);
}
.editorial-copy p { font-size: 16px; line-height: 1.7; color: var(--dark); opacity: .85; margin: 0 0 18px; }
.editorial-copy ul { margin: 0 0 18px; padding-left: 20px; }
.editorial-copy li { font-size: 16px; line-height: 1.7; opacity: .85; margin-bottom: 6px; }
.proof-block {
  background: var(--grey-100); border-left: 3px solid var(--blue); border-radius: 0 8px 8px 0;
  padding: 20px 24px; margin: 0 0 18px;
}
.proof-block .proof-label {
  font-family: var(--font-body); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); margin: 0 0 8px; font-weight: 700;
}
.proof-block p { margin: 0; font-size: 15px; line-height: 1.65; opacity: .9; }
.proof-block p:last-child { margin: 0; }
.editorial-cta {
  display: inline-block; margin-top: 8px; border-radius: 6px; padding: 12px 26px;
  font-size: 13px; text-decoration: none;
}

.story-page-hero { text-align: left; }
.story-page-hero .page-hero-body { text-align: left; max-width: 760px; }
.story-page-hero h1 { margin: 0; max-width: 100%; }
.story-section { max-width: 780px; margin: 0 auto; padding: 96px 24px; }
.story-section h2 {
  font-family: var(--font-display); font-weight: 200; font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15; margin: 0 0 28px; color: var(--dark);
}
.story-section p { font-size: 17px; line-height: 1.8; opacity: .85; margin: 0 0 22px; }
.story-section .story-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 200; font-size: 34px;
  line-height: 1.4; color: var(--navy); border-left: 3px solid var(--tomato); padding-left: 24px;
  margin: 36px 0;
}
.story-signoff { font-size: 14px; opacity: .6; margin-top: -14px; }

.inquiry-hero { min-height: 40vh; }
.journey-hero { min-height: 30vh; }
.journey-hero .page-hero-body { padding: 56px 32px 32px; }
.inquiry-grid {
  max-width: 1100px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
}
.inquiry-whatsapp {
  background: var(--grey-100); border-radius: 16px; padding: 40px; align-self: start;
}
.inquiry-whatsapp h2, .inquiry-form h2 {
  font-family: var(--font-display); font-weight: 200; font-size: 28px; margin: 0 0 14px; color: var(--dark);
}
.inquiry-whatsapp p, .inquiry-form > p { font-size: 15px; line-height: 1.7; opacity: .8; margin: 0 0 20px; }
.inquiry-whatsapp .btn-gradient { display: inline-block; border-radius: 6px; padding: 14px 28px; text-decoration: none; font-size: 13px; }
.inquiry-form form { display: flex; flex-direction: column; gap: 14px; }
.inquiry-form label { font-family: var(--font-body); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; opacity: .7; margin-bottom: -8px; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  font-family: var(--font-body); font-size: 15px; padding: 12px 14px; border: 1.5px solid #ddd;
  border-radius: 8px; outline: none; color: var(--dark); background: #fff;
}
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--blue); }
.inquiry-form textarea { resize: vertical; min-height: 100px; font-family: var(--font-body); }
.inquiry-form button[type="submit"] {
  margin-top: 8px; border: none; border-radius: 6px; padding: 14px 28px; font-size: 13px; cursor: pointer;
}
.inquiry-reassurance { font-size: 13px; opacity: .6; margin-top: 14px; }
.inquiry-form .btn-gradient { display: inline-block; text-decoration: none; border-radius: 6px; padding: 14px 28px; font-size: 13px; margin-top: 8px; }

/* ============================================================
   DESIGN YOUR JOURNEY — quiz tiles, qcards, stepper
============================================================ */
.journey-wrap { max-width: 900px; margin: 0 auto; padding: 32px 24px 96px; }
.journey-card { background: #fff; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,.08); padding: 48px; }

.journey-progress { display: flex; gap: 8px; }
.journey-step-dot { flex: 1; height: 3px; background: #eee; border-radius: 2px; transition: background .3s ease; }
.journey-step-dot.done { background: var(--tomato); }
.journey-step-dot.active { background: var(--blue); }

.journey-step-label { font-family: var(--font-body); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--tomato); margin: 28px 0 6px; font-weight: 700; }
.journey-title { font-family: var(--font-display); font-weight: 200; font-size: clamp(24px, 3.4vw, 32px); margin: 0 0 8px; color: var(--dark); }
.journey-sub { font-size: 14px; opacity: .7; margin: 0 0 32px; }

.journey-tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 16px; }
.journey-tile-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.journey-tile { cursor: pointer; text-align: center; }
.journey-tile .thumb { position: relative; aspect-ratio: 1; border-radius: 10px; overflow: hidden; margin-bottom: 8px; outline: 2px solid transparent; outline-offset: 2px; transition: outline-color .2s ease; }
.journey-tile.selected .thumb { outline-color: var(--tomato); }
.journey-tile .thumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.82); transition: filter .2s ease; }
.journey-tile.selected .thumb img { filter: brightness(1); }
.journey-tile .badge { position: absolute; top: 8px; right: 8px; width: 24px; height: 24px; border-radius: 50%; background: var(--tomato); color: #fff; font-size: 12px; font-weight: 700; display: none; align-items: center; justify-content: center; font-family: var(--font-body); }
.journey-tile.selected .badge { display: flex; }
.journey-tile .label { font-size: 13px; font-family: var(--font-body); }

.journey-month-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 480px; }
.journey-month-pill { border: 1px solid #ddd; background: #fff; border-radius: 6px; padding: 10px 8px; font-size: 13px; cursor: pointer; transition: all .2s ease; font-family: var(--font-body); color: var(--dark); }
.journey-month-pill.selected { border-color: var(--tomato); color: var(--tomato); font-weight: 700; background: #fff6f4; }
.journey-checkbox-row { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-top: 18px; cursor: pointer; }
.journey-checkbox-row input { accent-color: var(--tomato); width: 16px; height: 16px; }

.journey-qcard { background: var(--grey-100); border-radius: 12px; padding: 28px; margin-bottom: 20px; }
.journey-qcard h4 { font-family: var(--font-display); font-weight: 200; font-size: 19px; margin: 0 0 14px; color: var(--dark); }
.journey-pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.journey-pill { border: 1px solid #ddd; background: #fff; border-radius: 999px; padding: 10px 18px; font-size: 13px; cursor: pointer; transition: all .2s ease; font-family: var(--font-body); }
.journey-pill.selected { border-color: var(--tomato); background: var(--tomato); color: #fff; }
.journey-stepper-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #e5e5e5; font-size: 14px; }
.journey-stepper-row:last-child { border-bottom: none; }
.journey-stepper { display: flex; align-items: center; gap: 14px; }
.journey-stepper button { width: 30px; height: 30px; border-radius: 50%; border: 1px solid #ddd; background: #fff; cursor: pointer; font-size: 16px; font-family: var(--font-body); }
.journey-stepper span { min-width: 18px; text-align: center; font-family: var(--font-body); }
.journey-qcard textarea { width: 100%; border: 1px solid #ddd; border-radius: 8px; padding: 14px; font-size: 14px; font-family: var(--font-body); resize: vertical; min-height: 100px; margin-top: 8px; }

.journey-summary { background: var(--grey-100); border-radius: 12px; padding: 24px; margin-bottom: 24px; font-size: 14px; line-height: 1.9; }
.journey-summary strong { color: var(--dark); }

.journey-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 36px; }
.journey-btn-prev { border: 1px solid #ddd; background: #fff; border-radius: 6px; padding: 12px 26px; font-size: 13px; cursor: pointer; font-family: var(--font-body); text-transform: uppercase; letter-spacing: .06em; }
.journey-btn-next { padding: 12px 30px; border-radius: 6px; font-size: 13px; }
.journey-btn-next:disabled { opacity: .35; cursor: not-allowed; }
.journey-card .btn-gradient { display: inline-block; text-decoration: none; }

/* ============================================================
   INDIVIDUAL EXPERIENCE PAGE — meta pills, highlights, related
============================================================ */
.trip-meta-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 18px 0 4px; }
.trip-pill { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.4); border-radius: 999px; padding: 6px 16px; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; backdrop-filter: blur(6px); font-family: var(--font-body); }
.trip-price-line { font-family: var(--font-body); font-size: 13px; opacity: .85; margin-top: 14px; }

.highlights-section { background: var(--grey-100); padding: 64px 0; }
.highlights-list { list-style: none; padding: 0; margin: 0; max-width: 780px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.highlights-list li { font-size: 15px; padding-left: 22px; position: relative; line-height: 1.5; }
.highlights-list li::before { content: '✧'; position: absolute; left: 0; color: var(--tomato); }

.best-time-note { max-width: 780px; margin: 0 auto; padding: 48px 24px; font-size: 14px; opacity: .75; text-align: center; }

.related-section { padding: 64px 0 96px; }
.related-section h2 { font-family: var(--font-display); font-weight: 200; font-size: 30px; text-align: center; margin: 0 0 32px; color: var(--dark); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.related-card { position: relative; border-radius: 10px; overflow: hidden; height: 220px; color: #fff; text-decoration: none; display: flex; flex-direction: column; justify-content: flex-end; }
.related-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.7); transition: filter .2s ease; }
.related-card:hover img { filter: brightness(.55); }
.related-text { position: relative; z-index: 1; padding: 16px; }
.related-text .loc { display: block; font-family: var(--font-display); font-style: italic; font-size: 12px; opacity: .9; }
.related-text .title { font-family: var(--font-display); font-weight: 200; font-size: 18px; margin: 2px 0 0; }

.property-slider-section { padding: 64px 0 96px; }
.property-slider-section h2 { font-family: var(--font-display); font-weight: 200; font-size: 30px; text-align: center; margin: 0 0 12px; color: var(--dark); }
.property-slider-section .section-sub { text-align: center; font-size: 15px; opacity: .7; max-width: 560px; margin: 0 auto 40px; }
.property-slider-outer { position: relative; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.property-slider {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 4px; scrollbar-width: none; -ms-overflow-style: none;
}
.property-slider::-webkit-scrollbar { display: none; }
.property-card {
  position: relative; flex: 0 0 320px; scroll-snap-align: start;
  border-radius: 10px; overflow: hidden; height: 380px; color: #fff;
  text-decoration: none; display: flex; flex-direction: column; justify-content: flex-end;
}
.property-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.7); transition: filter .2s ease; }
.property-card:hover img { filter: brightness(.55); }
.property-slider-outer .nav-btn { top: 45%; }

.gallery-section { padding: 64px 0 16px; max-width: 1100px; margin: 0 auto; }
.gallery-section h2 { font-family: var(--font-display); font-weight: 200; font-size: 28px; text-align: center; margin: 0 0 32px; color: var(--dark); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 0 24px; }
.gallery-grid img { width: 100%; height: 240px; object-fit: cover; border-radius: 10px; display: block; }

.testimonials-section { background: var(--grey-100); padding: 72px 0; margin-top: 48px; }
.testimonials-section h2 { font-family: var(--font-display); font-weight: 200; font-size: 28px; text-align: center; margin: 0 0 32px; color: var(--dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.testimonial-card { background: #fff; border-radius: 12px; padding: 28px; }
.testimonial-card .quote { font-family: var(--font-display); font-style: italic; font-weight: 200; font-size: 18px; line-height: 1.5; color: var(--dark); margin: 0 0 16px; }
.testimonial-card .attribution { font-family: var(--font-body); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; opacity: .55; margin: 0; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .navbar nav, .navbar .right { display: none; }
  .burger { display: flex; }

  .process-section { grid-template-columns: 1fr; min-height: 0; }
  .process-left { padding: 48px 24px; }
  .process-right { min-height: 0; padding: 48px 24px 60px; overflow: hidden; }
  .process-right h2 { margin-bottom: 48px; }
  /* Circle scaled to fit with room for side labels */
  .circle-wrap { width: min(210px, 50vw); height: min(210px, 50vw); }
  .step-number { font-size: 11px; }
  .step-text { font-size: 8px; letter-spacing: .05em; white-space: normal; max-width: 60px; }
  .step.active .step-dot { width: 16px; height: 16px; }
  /* Tighten side-label offsets so they don't escape viewport */
  .step[data-i="1"] .step-label { transform: translate(6px, -50%); }
  .step[data-i="2"] .step-label { transform: translate(6px, 0); }
  .step[data-i="3"] .step-label { transform: translate(calc(-100% - 6px), 0); }
  .step[data-i="4"] .step-label { transform: translate(calc(-100% - 6px), -50%); }

  /* Experiences: hide desktop swiper, show mobile UI */
  .reis-swiper, .swiper-outer { display: none; }
  .tabs { display: none; }
  .mobile-tab-select { display: flex; flex-direction: column; }
  .mobile-tab-select-bottom { margin-top: 24px; }
  .mobile-trip-stack { display: flex; max-width: 100%; }

  .section-intro { padding: 0 24px; }
  .cards { grid-template-columns: 1fr; padding: 48px 20px; }

  .hero-title { font-size: clamp(40px, 12vw, 64px); }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-links { flex-direction: column; gap: 28px; }
  .footer-agent { text-align: left; }
  .footer-agent .circle { margin: 12px auto 0 0; }

  /* Inspire: disable fixed parallax on mobile (broken on iOS Safari) */
  .inspire {
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }

  /* Interior pages */
  .editorial-row { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .editorial-row.reverse .editorial-media { order: 0; }
  .editorial-media img, .editorial-media video { height: 260px; }
  .editorial-media-stack img { height: 200px; }
  .inquiry-grid { grid-template-columns: 1fr; padding: 48px 20px; gap: 40px; }
  .inquiry-whatsapp { padding: 28px; }
  .page-hero-body { padding: 64px 20px 40px; }
  .story-section .story-quote { font-size: 26px; padding-left: 18px; }

  /* Design Your Journey */
  .journey-card { padding: 28px 20px; }
  .journey-tile-grid, .journey-tile-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
  .journey-month-grid { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .journey-nav { flex-direction: column-reverse; gap: 14px; align-items: stretch; }
  .journey-btn-prev, .journey-btn-next { width: 100%; text-align: center; }

  /* Individual experience page */
  .highlights-list { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .property-card { flex-basis: 240px; height: 300px; }
  .property-slider-outer .nav-btn { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 180px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
