
:root {
  --ink: #0C1F3D;
  --bg: #F7F6F1;
  --bg-warm: #EAE7DA;
  --paper: #FFFFFF;
  --sky: #1E90FF;
  --sky-soft: #DCEAFB;
  --sky-deep: #1B5FBB;
  --disp: 'Bricolage Grotesque', sans-serif;
  --serif: 'Instrument Serif', serif;
  --body: 'Inter', sans-serif;
  --shadow-sm: 0 4px 12px rgba(12, 31, 61, 0.06);
  --shadow-md: 0 10px 30px rgba(12, 31, 61, 0.10);
  --shadow-lg: 0 20px 60px rgba(12, 31, 61, 0.15);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--body);
  background: var(--bg-warm);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* HEADER */
.ep-header {
  padding: 20px 48px;
  background: rgba(234, 231, 218, 0.85);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(12, 31, 61, 0.05);
}
.ep-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
}
.ep-header-brand {
  display: flex; align-items: center; gap: 12px;
}
.ep-header-logo { width: 40px; height: 40px; }
.ep-brand-text {
  display: inline-flex; align-items: baseline; gap: 6px; line-height: 1;
  font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 23px;
  letter-spacing: 0; color: var(--ink); white-space: nowrap;
}
.ep-brand-text em {
  font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400;
  font-size: 23px;
}
.ep-header-nav {
  display: flex; align-items: center; gap: 24px;
}
.ep-header-nav a {
  font-family: var(--body); font-size: 14px; font-weight: 500;
  color: var(--ink); opacity: 0.7; transition: opacity 0.2s;
}
.ep-header-nav a:hover { opacity: 1; }

/* CONTENEUR */
.inspiration-wrap {
  min-height: calc(100vh - 78px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px 24px; position: relative;
}

/* ÉCRANS */
.screen {
  display: none; width: 100%; max-width: 900px;
  animation: screenFade 0.5s ease;
}
.screen.active { display: block; }
@keyframes screenFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ ÉCRAN 1 : ACCUEIL ═══ */
.screen-welcome { text-align: center; position: relative; }
.welcome-planes {
  position: relative; width: 200px; height: 120px; margin: 0 auto 32px;
}
.welcome-plane { position: absolute; }
.welcome-plane-1 {
  width: 40px; height: 40px; bottom: 8px; left: 20px;
  animation: welcomeFloat1 3s ease-in-out infinite;
}
.welcome-plane-2 {
  width: 60px; height: 60px; top: 30px; left: 68px;
  animation: welcomeFloat2 3.5s ease-in-out infinite;
}
.welcome-plane-3 {
  width: 84px; height: 84px; top: 0; right: 20px;
  animation: welcomeFloat3 4s ease-in-out infinite;
}
@keyframes welcomeFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(-25deg); }
  50% { transform: translate(4px, -8px) rotate(-22deg); }
}
@keyframes welcomeFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(-25deg); }
  50% { transform: translate(-3px, -10px) rotate(-28deg); }
}
@keyframes welcomeFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(-25deg); }
  50% { transform: translate(5px, -12px) rotate(-23deg); }
}
.welcome-plane svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 12px rgba(12, 31, 61, 0.15)); }
.welcome-eyebrow {
  display: inline-block; padding: 6px 16px; background: var(--sky-soft);
  color: var(--sky-deep); border-radius: 100px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 24px;
}
.welcome-title {
  font-family: var(--disp); font-size: 60px; font-weight: 700;
  line-height: 1.05; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 24px;
}
.welcome-title em {
  font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 70px;
}
.welcome-lead {
  font-size: 18px; color: #4A5568; max-width: 580px;
  margin: 0 auto 40px; line-height: 1.6;
}
.welcome-lead em {
  font-family: var(--serif); font-style: italic; color: var(--ink);
}
.welcome-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: white; padding: 18px 36px; border: none;
  border-radius: 100px; font-family: var(--body); font-size: 16px; font-weight: 600;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 30px rgba(12, 31, 61, 0.2);
}
.welcome-cta:hover {
  transform: translateY(-2px); box-shadow: 0 15px 40px rgba(12, 31, 61, 0.3);
}
.welcome-cta svg { width: 20px; height: 20px; transition: transform 0.3s; }
.welcome-cta:hover svg { transform: translateX(4px) rotate(-15deg); }
.welcome-note {
  margin-top: 20px; font-size: 13px; color: #8A8678;
  font-family: var(--serif); font-style: italic;
}

/* ═══ ÉCRANS QUESTIONS ═══ */
.question-header { text-align: center; margin-bottom: 28px; }
.progress-dots {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 20px;
}
.progress-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(12, 31, 61, 0.15); transition: background 0.3s, transform 0.3s;
}
.progress-dot.active { background: var(--sky); transform: scale(1.4); }
.progress-dot.done { background: var(--ink); }
.question-eyebrow {
  font-family: var(--body); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--sky-deep);
  margin-bottom: 12px; font-weight: 600;
}
.question-title {
  font-family: var(--disp); font-size: 36px; font-weight: 700;
  line-height: 1.1; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.02em;
}
.question-title em {
  font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 42px;
}
.question-lead {
  font-size: 14px; color: #8A8678;
  font-family: var(--serif); font-style: italic;
}
.answers-grid { display: grid; gap: 16px; max-width: 720px; margin: 0 auto; }
.answers-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.answers-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.answers-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
.answers-grid.cols-budget { grid-template-columns: repeat(4, 1fr); }
.answer-card {
  background: var(--paper); border: 2px solid rgba(12, 31, 61, 0.06);
  border-radius: 20px; padding: 22px 20px; cursor: pointer;
  transition: all 0.25s; text-align: center; position: relative; overflow: hidden;
}
.answer-card:hover {
  border-color: var(--sky); transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.answer-card.selected {
  border-color: var(--ink);
  background: linear-gradient(135deg, var(--paper) 0%, var(--sky-soft) 100%);
}
.answer-illustration {
  width: 56px; height: 56px; margin: 0 auto 12px; color: var(--ink);
}
.answer-illustration svg { width: 100%; height: 100%; }
.answer-title {
  font-family: var(--disp); font-weight: 700; font-size: 16px;
  color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em;
}
.answer-desc {
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: #8A8678; line-height: 1.4;
}
.answer-card.budget { padding: 18px 12px; }
.answer-card.budget .answer-illustration { width: 40px; height: 40px; margin-bottom: 8px; }
.answer-card.budget .answer-title { font-size: 15px; }
.answer-card.budget .answer-desc { font-size: 11px; }

/* ═══ ÉCRAN SWIPE ═══ */
.swipe-header { text-align: center; margin-bottom: 28px; }
.swipe-title {
  font-family: var(--disp); font-size: 32px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em; margin-bottom: 8px;
}
.swipe-title em {
  font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 38px;
}
.swipe-lead {
  font-family: var(--serif); font-style: italic; font-size: 15px; color: #8A8678;
}
.swipe-stack {
  position: relative; width: 100%; max-width: 380px;
  height: 520px; margin: 0 auto;
}
.destination-card {
  position: absolute; inset: 0; background: var(--paper);
  border-radius: 24px; box-shadow: var(--shadow-lg); overflow: hidden;
  transition: transform 0.4s, opacity 0.4s;
  cursor: grab; display: flex; flex-direction: column;
}
.destination-card:nth-child(1) { z-index: 3; }
.destination-card:nth-child(2) { z-index: 2; transform: translateY(12px) scale(0.96); opacity: 0.7; }
.destination-card:nth-child(3) { z-index: 1; transform: translateY(24px) scale(0.92); opacity: 0.4; }
.destination-card.swiped-left { transform: translateX(-150%) rotate(-30deg); opacity: 0; }
.destination-card.swiped-right { transform: translateX(150%) rotate(30deg); opacity: 0; }
.destination-visual {
  height: 230px;
  background: linear-gradient(135deg, var(--sky-soft) 0%, #B8D4F0 100%);
  position: relative; overflow: hidden;
}
.destination-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.destination-info {
  padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px;
}
.destination-region {
  font-family: var(--body); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sky-deep); font-weight: 600;
}
.destination-name {
  font-family: var(--disp); font-weight: 700; font-size: 28px;
  color: var(--ink); line-height: 1; letter-spacing: -0.02em;
}
.destination-story {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: #4A5568; line-height: 1.5; flex: 1;
}
.destination-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px; border-top: 1px solid rgba(12, 31, 61, 0.08);
}
.destination-serenity { display: flex; align-items: center; gap: 6px; }
.destination-serenity-planes { display: flex; gap: 2px; }
.destination-serenity-plane { width: 14px; height: 14px; opacity: 0.3; }
.destination-serenity-plane.filled { opacity: 1; }
.destination-serenity-label {
  font-size: 11px; color: #8A8678; font-family: var(--body);
}
.destination-price {
  font-family: var(--disp); font-weight: 700; font-size: 14px; color: var(--ink);
}
.destination-price small { font-weight: 400; color: #8A8678; font-size: 10px; }
.swipe-buttons {
  display: flex; justify-content: center; gap: 40px; margin-top: 32px;
}
.swipe-btn {
  width: 64px; height: 64px; border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; background: var(--paper); box-shadow: var(--shadow-md);
}
.swipe-btn:hover { transform: translateY(-4px) scale(1.05); box-shadow: var(--shadow-lg); }
.swipe-btn svg { width: 30px; height: 30px; }
.swipe-btn-nope { color: rgba(12, 31, 61, 0.4); }
.swipe-btn-nope:hover { color: var(--ink); background: rgba(12, 31, 61, 0.05); }
.swipe-btn-like { background: var(--ink); color: white; }
.swipe-btn-like:hover { background: var(--sky-deep); }
.swipe-hint {
  text-align: center; margin-top: 20px;
  font-family: var(--serif); font-style: italic; font-size: 13px; color: #8A8678;
}
.swipe-counter {
  text-align: center; margin-top: 8px;
  font-family: var(--body); font-size: 11px;
  color: rgba(12, 31, 61, 0.4);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ═══ ÉCRAN RÉSULTAT ═══ */
.result-wrap { text-align: center; max-width: 720px; margin: 0 auto; }
.result-eyebrow {
  display: inline-block; padding: 8px 20px; background: var(--ink); color: white;
  border-radius: 100px; font-family: var(--body); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 24px;
}
.landing-scene {
  position: relative; width: 200px; height: 200px; margin: 0 auto 20px;
}
.landing-target {
  position: absolute; inset: 0; opacity: 0;
  animation: targetAppear 0.6s ease-out 1s forwards;
}
.landing-target svg { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; }
@keyframes targetAppear {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.landing-plane {
  position: absolute; width: 70px; height: 70px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: planeLand 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  z-index: 2;
}
.landing-plane svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 8px 20px rgba(12, 31, 61, 0.3));
}
@keyframes planeLand {
  0% { transform: translate(-250%, -350%) rotate(-45deg) scale(0.3); opacity: 0; }
  40% { opacity: 1; }
  70% { transform: translate(-50%, -50%) rotate(-25deg) scale(1.1); }
  100% { transform: translate(-50%, -50%) rotate(-25deg) scale(1); opacity: 1; }
}
.result-region {
  font-family: var(--body); font-size: 12px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--sky-deep);
  font-weight: 600; margin-bottom: 8px;
  opacity: 0; animation: fadeInUp 0.6s ease-out 1.4s forwards;
}
.result-name {
  font-family: var(--disp); font-weight: 800; font-size: 68px;
  color: var(--ink); letter-spacing: -0.04em; line-height: 1; margin-bottom: 20px;
  opacity: 0; animation: fadeInUp 0.6s ease-out 1.5s forwards;
}
.result-story {
  font-family: var(--serif); font-style: italic; font-size: 22px;
  color: var(--ink); line-height: 1.5;
  max-width: 560px; margin: 0 auto 24px;
  opacity: 0; animation: fadeInUp 0.6s ease-out 1.7s forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
.result-why {
  background: var(--paper); border-radius: 20px; padding: 20px 24px;
  max-width: 620px; margin: 0 auto 32px;
  box-shadow: var(--shadow-sm); text-align: left;
  opacity: 0; animation: fadeInUp 0.6s ease-out 1.9s forwards;
}
.result-why-label {
  font-family: var(--body); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: #8A8678;
  margin-bottom: 8px; font-weight: 600;
}
.result-why-text {
  font-family: var(--serif); font-style: italic; font-size: 15px;
  color: var(--ink); line-height: 1.5;
}
.result-why-text strong {
  font-family: var(--disp); font-style: normal; font-weight: 700;
  color: var(--sky-deep);
}
.result-details {
  display: flex; justify-content: center; gap: 40px; margin-bottom: 32px;
  padding: 24px; background: var(--paper); border-radius: 20px;
  max-width: 560px; margin-left: auto; margin-right: auto;
  box-shadow: var(--shadow-sm);
  opacity: 0; animation: fadeInUp 0.6s ease-out 2.1s forwards;
}
.result-detail { text-align: center; }
.result-detail-label {
  font-family: var(--body); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: #8A8678; margin-bottom: 6px; font-weight: 600;
}
.result-detail-value {
  font-family: var(--disp); font-weight: 700; font-size: 20px; color: var(--ink);
}
.result-detail-value.serenity {
  display: flex; gap: 3px; justify-content: center; align-items: center;
}
.result-detail-value.serenity svg { width: 20px; height: 20px; }
.result-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: white; padding: 20px 40px; border: none;
  border-radius: 100px; font-family: var(--body); font-size: 17px; font-weight: 600;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 30px rgba(12, 31, 61, 0.2); text-decoration: none;
  margin-bottom: 16px;
  opacity: 0; animation: fadeInUp 0.6s ease-out 2.3s forwards;
}
.result-cta:hover {
  transform: translateY(-2px); box-shadow: 0 15px 40px rgba(12, 31, 61, 0.3);
}
.result-cta svg { width: 22px; height: 22px; transition: transform 0.3s; }
.result-cta:hover svg { transform: translateX(4px); }
.result-secondary {
  display: block; background: none; border: none; color: #8A8678;
  font-family: var(--body); font-size: 14px; cursor: pointer;
  padding: 12px; margin: 0 auto; text-decoration: underline;
  opacity: 0; animation: fadeInUp 0.6s ease-out 2.5s forwards;
}
.result-secondary:hover { color: var(--ink); }

/* ═══ ÉCRAN AUCUNE PÉPITE ═══ */
.norefusal-wrap { text-align: center; max-width: 620px; margin: 0 auto; }
.norefusal-icon {
  width: 100px; height: 100px; margin: 0 auto 24px;
  color: var(--ink); opacity: 0.4;
}
.norefusal-title {
  font-family: var(--disp); font-size: 36px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em; margin-bottom: 12px;
}
.norefusal-title em {
  font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 42px;
}
.norefusal-lead {
  font-family: var(--serif); font-style: italic; font-size: 17px;
  color: #4A5568; margin-bottom: 32px; line-height: 1.5;
}
.norefusal-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: white; padding: 18px 36px;
  border: none; border-radius: 100px;
  font-family: var(--body); font-size: 16px; font-weight: 600;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 30px rgba(12, 31, 61, 0.2);
}
.norefusal-cta:hover { transform: translateY(-2px); }

/* FOOTER */
.foot {
  background: var(--ink); color: rgba(255, 255, 255, 0.7);
  padding: 60px 48px 30px; margin-top: 0;
}
.foot-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.foot-brand-block { }
.foot-brand-block .ep-brand-text { color: white; margin-bottom: 12px; }
.foot-brand-block p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.foot-col h4 {
  font-family: var(--disp); color: white; font-size: 13px;
  font-weight: 700; margin-bottom: 16px; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.foot-col ul { list-style: none; }
.foot-col ul li { margin-bottom: 8px; }
.foot-col ul li a {
  font-size: 13px; color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.foot-col ul li a:hover { color: white; }
.foot-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px; text-align: center;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 720px) {
  .ep-header { padding: 16px 20px; }
  .ep-header-nav { display: none; }
  .welcome-title { font-size: 42px; }
  .welcome-title em { font-size: 50px; }
  .welcome-lead { font-size: 15px; }
  .question-title { font-size: 28px; }
  .question-title em { font-size: 34px; }
  .answers-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .answers-grid.cols-3 { grid-template-columns: 1fr; }
  .answers-grid.cols-budget { grid-template-columns: 1fr 1fr; }
  .result-name { font-size: 44px; }
  .result-story { font-size: 17px; }
  .swipe-stack { height: 480px; }
  .destination-visual { height: 200px; }
  .result-details { flex-direction: column; gap: 16px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot { padding: 40px 24px 20px; }
}

/* ===== Pied de page unifié (identique à index.html) ===== */
.foot-social { margin-top: 18px; }
.foot-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 7px 16px 7px 10px;
}
.foot-social a:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.foot-social-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg,#F58529,#DD2A7B,#8134AF);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.foot-social-ico svg { width: 15px; height: 15px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
footer.foot {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 30px;
  margin-top: 0;
}
.foot-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1fr 1fr;
  gap: 36px;
}
@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .foot-brand {
    grid-column: 1 / -1;
  }
}
.foot-brand .brand-name .bn-main { color: #fff; }
.foot-brand .brand-name .bn-badge { color: #0F5FB8; background: #DCEAFB; }
.foot-brand .logo { background: rgba(255,255,255,0.08); }
.foot-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.5;
}
.foot-col h4 {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 8px; }
.foot-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.foot-col a:hover { color: #fff; }
.foot-bottom {
  max-width: 1100px;
  margin: 36px auto 0;
  padding: 22px 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 720px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 480px) {
  .foot-grid { grid-template-columns: 1fr; }
}
.foot {
  background: #0C1F3D !important;
  color: #F7F6F1 !important;
  padding: 80px 48px 32px !important;
  position: relative !important;
  overflow: hidden !important;
}
.foot-signature {
  max-width: 1400px !important;
  margin: 0 auto 64px !important;
  padding-bottom: 56px !important;
  border-bottom: 1px solid rgba(247,246,241,.1) !important;
  text-align: center !important;
}
.foot-signature-quote {
  font-family: 'Instrument Serif', serif !important;
  font-style: italic !important;
  font-size: 36px !important;
  line-height: 1.2 !important;
  color: #F7F6F1 !important;
  max-width: 640px !important;
  margin: 0 auto !important;
  font-weight: 400 !important;
}
.foot-signature-quote em {
  color: #1E90FF !important;
  font-style: italic !important;
}
.foot-signature-small {
  font-size: 12px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: #8A8678 !important;
  font-weight: 600 !important;
  margin-top: 20px !important;
  display: block !important;
}
.foot-grid {
  display: grid !important;
  grid-template-columns: 1.6fr 1fr 1fr 1fr !important;
  gap: 56px !important;
  margin-bottom: 56px !important;
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.foot-brand {}
.foot-logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 20px !important;
  text-decoration: none !important;
  color: inherit !important;
}
.foot-logo-text {
  font-family: 'Instrument Serif', serif !important;
  font-size: 26px !important;
  color: #F7F6F1 !important;
  line-height: 1 !important;
}
.foot-logo-text em { font-style: italic; }
.foot-brand p {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #B0B4BC !important;
  margin-bottom: 24px !important;
  max-width: 340px !important;
}
.foot-social {
  display: flex !important;
  gap: 12px !important;
  align-items: center !important;
}
.foot-social a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 16px !important;
  background: rgba(247,246,241,.06) !important;
  border: 1px solid rgba(247,246,241,.1) !important;
  border-radius: 100px !important;
  color: #F7F6F1 !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: all .2s ease !important;
  font-family: 'Inter', sans-serif !important;
}
.foot-social a:hover {
  background: rgba(30,144,255,.15) !important;
  border-color: rgba(30,144,255,.3) !important;
  color: #FFF !important;
  transform: translateY(-1px) !important;
}
.foot-social-ico {
  width: 20px !important;
  height: 20px !important;
  background: linear-gradient(135deg, #FEDA75 0%, #FA7E1E 25%, #D62976 50%, #962FBF 75%, #4F5BD5 100%) !important;
  border-radius: 5px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.foot-social-ico svg {
  width: 12px !important;
  height: 12px !important;
  color: #FFF !important;
}
.foot-col h4 {
  font-family: 'Instrument Serif', serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #F7F6F1 !important;
  margin-bottom: 20px !important;
  font-style: italic !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  cursor: default !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.foot-col ul {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
}
.foot-col ul li { padding: 0 !important; }
.foot-col ul li a {
  color: #B0B4BC !important;
  text-decoration: none !important;
  font-size: 13.5px !important;
  transition: color .15s ease !important;
  line-height: 1.4 !important;
}
.foot-col ul li a:hover { color: #F7F6F1 !important; }
.foot-col[data-i18n="foot.destinations"] ul,
.foot-col.foot-col-destinations ul {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px 20px !important;
}
.foot-col:has(h4[data-i18n="foot.destinations"]) ul {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px 20px !important;
}
.foot-chevron {
  display: none !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: rgba(247,246,241,.06) !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background .25s ease, transform .3s ease !important;
  flex-shrink: 0 !important;
}
.foot-chevron svg {
  width: 12px !important;
  height: 12px !important;
  color: #F7F6F1 !important;
}
.foot-bottom {
  padding-top: 32px !important;
  border-top: 1px solid rgba(247,246,241,.1) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}
.foot-bottom span {
  font-size: 12px !important;
  color: #8A8678 !important;
}
.foot-bottom span:last-child {
  text-align: right !important;
  max-width: 500px !important;
  line-height: 1.5 !important;
}
@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr !important; gap: 40px 32px !important; }
  .foot-brand { grid-column: span 2 !important; }
}
@media (max-width: 720px) {
  .foot { padding: 56px 24px 24px !important; }
  .foot-signature { margin-bottom: 44px !important; padding-bottom: 36px !important; }
  .foot-signature-quote { font-size: 26px !important; }
  .foot-grid { grid-template-columns: 1fr !important; gap: 8px !important; margin-bottom: 36px !important; }
  .foot-brand { grid-column: span 1 !important; margin-bottom: 20px !important; }
  .foot-col-collapsible {
    border-top: 1px solid rgba(247,246,241,.1) !important;
    padding-top: 20px !important;
  }
  .foot-col-collapsible:last-of-type {
    border-bottom: 1px solid rgba(247,246,241,.1) !important;
    padding-bottom: 8px !important;
  }
  .foot-col-collapsible h4 {
    cursor: pointer !important;
    user-select: none !important;
    margin-bottom: 0 !important;
    padding: 4px 0 !important;
  }
  .foot-col-collapsible h4 .foot-chevron { display: inline-flex !important; }
  .foot-col-collapsible.open h4 .foot-chevron { 
    background: #1E90FF !important;
    transform: rotate(180deg) !important;
  }
  .foot-col-collapsible ul {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height .4s ease, margin-top .25s ease !important;
    margin-top: 0 !important;
  }
  .foot-col-collapsible.open ul {
    max-height: 800px !important;
    margin-top: 20px !important;
  }
  .foot-col:has(h4[data-i18n="foot.destinations"]) ul {
    grid-template-columns: 1fr !important;
  }
  .foot-bottom {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
  }
  .foot-bottom span:last-child { text-align: center !important; }
}

