/* ===========================================================
   Excursio — friendly-modern bento
   Palette: sunny orange + deep blue on light
   Fonts: Bricolage Grotesque (display) + Karla (body)
   =========================================================== */

:root {
  --orange: #f5860a;
  --orange-soft: #ffb04d;
  --orange-tint: #fff3e2;
  --blue: #163a5f;
  --blue-deep: #0e2742;
  --blue-soft: #2f6db0;
  --ink: #1b2733;
  --muted: #5d6b7a;
  --paper: #fbf8f3;
  --card: #ffffff;
  --line: #ece6dc;
  --shadow: 0 18px 40px -22px rgba(22, 58, 95, .28);
  --shadow-lift: 0 26px 60px -26px rgba(22, 58, 95, .42);
  --radius: 22px;
  --radius-lg: 30px;
  --maxw: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Karla", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* faint topographic / grain atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 88% -8%, rgba(245, 134, 10, .10), transparent 60%),
    radial-gradient(760px 520px at -6% 18%, rgba(47, 109, 176, .10), transparent 55%);
  pointer-events: none;
}

h1, h2, h3, h4, .display {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--blue);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-tint);
  border: 1px solid #fbe0bd;
  padding: 7px 14px;
  border-radius: 999px;
}
.tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 26px -12px rgba(245, 134, 10, .7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 36px -14px rgba(245, 134, 10, .75); }
.btn-ghost {
  background: #fff;
  color: var(--blue);
  border-color: var(--line);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--orange-soft); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(251, 248, 243, .82);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: "Bricolage Grotesque"; font-weight: 800; font-size: 1.35rem; color: var(--blue); letter-spacing: -.03em; }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand .live { color: var(--orange); }
.nav-links { display: flex; gap: 26px; margin-left: 18px; }
.nav-links a { font-weight: 600; color: var(--muted); font-size: .96rem; position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--orange); transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

/* language switcher */
.lang {
  position: relative;
}
.lang-btn {
  display: flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 13px; font-weight: 700; font-size: .85rem; color: var(--blue);
  cursor: pointer; font-family: "Karla", sans-serif;
  transition: border-color .2s;
}
.lang-btn:hover { border-color: var(--orange-soft); }
.lang-btn .globe { width: 16px; height: 16px; }
.lang-btn .chev { width: 11px; transition: transform .2s; }
.lang.open .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 6px; min-width: 168px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .2s var(--ease); z-index: 60;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex; align-items: center; gap: 10px; width: 100%;
  background: none; border: none; padding: 10px 12px; border-radius: 9px;
  font-family: "Karla", sans-serif; font-size: .92rem; font-weight: 600; color: var(--ink);
  cursor: pointer; text-align: left;
}
.lang-menu button:hover { background: var(--orange-tint); }
.lang-menu button.active { color: var(--orange); }
.lang-menu .flag { font-size: 1.05rem; line-height: 1; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--blue); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ============ HERO BENTO ============ */
.hero { padding: 46px 0 30px; }
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* hero copy tile */
.tile-hero {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(420px 300px at 110% 120%, rgba(245, 134, 10, .12), transparent 60%),
    var(--card);
}
.tile-hero h1 { font-size: clamp(2.4rem, 5.2vw, 4.05rem); }
.tile-hero h1 .hl { color: var(--orange); }
.tile-hero p { margin: 20px 0 26px; color: var(--muted); font-size: 1.12rem; max-width: 42ch; }
.hero-cta { display: flex; gap: 13px; flex-wrap: wrap; }
.hero-trust { margin-top: 26px; display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: .92rem; font-weight: 600; }
.stars { color: var(--orange); letter-spacing: 2px; }

/* hero image tile */
.tile-photo {
  grid-column: span 5;
  padding: 0;
  min-height: 420px;
}
.tile-photo img { width: 100%; height: 100%; object-fit: cover; }
.tile-photo .badge {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(6px);
  border-radius: 16px; padding: 12px 16px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 11px;
}
.tile-photo .badge b { font-family: "Bricolage Grotesque"; color: var(--blue); font-size: 1.25rem; display: block; }
.tile-photo .badge span { color: var(--muted); font-size: .8rem; }
.tile-photo .badge .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--orange-tint); display: grid; place-items: center; color: var(--orange); }

/* small stat tiles row */
.tile-stat { grid-column: span 3; padding: 24px; display: flex; flex-direction: column; gap: 4px; }
.tile-stat.blue { background: var(--blue); border-color: var(--blue); }
.tile-stat.blue .num, .tile-stat.blue .lbl { color: #fff; }
.tile-stat.orange { background: var(--orange); border-color: var(--orange); }
.tile-stat.orange .num, .tile-stat.orange .lbl { color: #fff; }
.tile-stat .num { font-family: "Bricolage Grotesque"; font-size: 2.4rem; font-weight: 800; color: var(--blue); }
.tile-stat .lbl { color: var(--muted); font-weight: 600; font-size: .92rem; }

/* ============ SECTION HEADING ============ */
.section { padding: 60px 0; }
.sec-head { max-width: 640px; margin-bottom: 36px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 14px 0 12px; }
.sec-head p { color: var(--muted); font-size: 1.08rem; }

/* ============ DESTINATIONS BENTO ============ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.dest {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.dest img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dest:hover img { transform: scale(1.07); }
.dest::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14, 39, 66, .82), rgba(14, 39, 66, .05) 55%);
}
.dest .meta { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff; }
.dest .meta h3 { color: #fff; font-size: 1.35rem; }
.dest .meta span { font-size: .86rem; opacity: .9; font-weight: 600; }
.dest .pill { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--orange); color: #fff; font-size: .74rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; letter-spacing: .04em; }
.dest.big { grid-column: span 2; grid-row: span 2; }
.dest.wide { grid-column: span 2; }

/* ============ FEATURES BENTO ============ */
.feat-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.feat {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; grid-column: span 4; box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.feat .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--orange-tint); color: var(--orange); margin-bottom: 16px;
}
.feat .ic svg { width: 26px; height: 26px; }
.feat h3 { font-size: 1.28rem; margin-bottom: 8px; }
.feat p { color: var(--muted); font-size: .98rem; }
.feat.span6 { grid-column: span 6; }
.feat.fill { background: var(--blue); border-color: var(--blue); }
.feat.fill h3 { color: #fff; }
.feat.fill p { color: rgba(255, 255, 255, .82); }
.feat.fill .ic { background: rgba(255, 255, 255, .12); color: var(--orange-soft); }

/* ============ STEPS ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: s; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; position: relative; box-shadow: var(--shadow);
}
.step::before {
  counter-increment: s; content: "0" counter(s);
  font-family: "Bricolage Grotesque"; font-weight: 800; font-size: 2.4rem;
  color: var(--orange-soft); opacity: .55; display: block; margin-bottom: 10px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: .96rem; }

/* ============ EXPERIENCE / SPLIT ============ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 26px; align-items: stretch; }
.split .photo { border-radius: var(--radius-lg); overflow: hidden; min-height: 380px; box-shadow: var(--shadow); }
.split .photo img { width: 100%; height: 100%; object-fit: cover; }
.split .copy { display: flex; flex-direction: column; justify-content: center; }
.split .copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: 12px 0 14px; }
.split .copy p { color: var(--muted); margin-bottom: 16px; }
.checks { list-style: none; display: grid; gap: 12px; margin-top: 8px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.checks .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--orange-tint); color: var(--orange); display: grid; place-items: center; }
.checks .tick svg { width: 14px; }

/* ============ TESTIMONIALS ============ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px;
}
.quote .stars { font-size: 1rem; }
.quote p { color: var(--ink); font-size: 1.02rem; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote .who .av { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.quote .who b { font-family: "Bricolage Grotesque"; color: var(--blue); display: block; font-size: .98rem; }
.quote .who span { color: var(--muted); font-size: .82rem; }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(120deg, var(--blue-deep), var(--blue) 55%, var(--blue-soft));
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(245, 134, 10, .55), transparent 65%);
}
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.cta-band p { color: rgba(255, 255, 255, .85); max-width: 50ch; margin: 14px auto 26px; font-size: 1.1rem; }

/* ============ FAQ ============ */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 4px 22px;
  box-shadow: var(--shadow); transition: border-color .2s;
}
.faq details[open] { border-color: var(--orange-soft); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-family: "Bricolage Grotesque";
  font-weight: 600; font-size: 1.1rem; color: var(--blue); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--orange-tint); color: var(--orange); display: grid; place-items: center; font-size: 1.2rem; transition: transform .25s; }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq p { color: var(--muted); padding: 0 0 20px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--blue-deep); color: #cfd9e4; margin-top: 70px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 56px 0 40px; }
.footer-brand { display: flex; align-items: center; gap: 11px; font-family: "Bricolage Grotesque"; font-weight: 800; font-size: 1.4rem; color: #fff; margin-bottom: 16px; }
.footer-brand svg { width: 34px; height: 34px; }
.footer-brand .live { color: var(--orange-soft); }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; font-family: "Karla"; font-weight: 700; }
.footer-col p, .footer-col li { font-size: .92rem; line-height: 1.7; color: #aab8c7; }
.footer-col ul { list-style: none; display: grid; gap: 9px; }
.footer-col a { color: #aab8c7; transition: color .2s; }
.footer-col a:hover { color: var(--orange-soft); }
.legal-block p { margin-bottom: 4px; }
.legal-block .reg { font-size: .82rem; color: #8395a6; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .86rem; color: #8395a6; }
.footer-bottom nav { display: flex; gap: 22px; }

/* ============ POLICY PAGES ============ */
.policy { padding: 56px 0 30px; }
.policy .wrap { max-width: 840px; }
.policy h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
.policy .updated { color: var(--muted); font-weight: 600; margin-bottom: 34px; }
.policy h2 { font-size: 1.4rem; margin: 34px 0 12px; color: var(--blue); }
.policy p, .policy li { color: #3c4b59; margin-bottom: 12px; }
.policy ul { padding-left: 22px; }
.policy a { color: var(--orange); font-weight: 600; }
.policy .back { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-soft); font-weight: 700; margin-bottom: 24px; }

/* ============ REVEAL ANIM ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .tile-hero, .tile-photo { grid-column: span 12; }
  .tile-photo { min-height: 320px; }
  .tile-stat { grid-column: span 6; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest.big { grid-column: span 2; grid-row: span 1; }
  .feat, .feat.span6 { grid-column: span 6; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 18px 22px; gap: 16px; margin: 0;
  }
  .menu-toggle { display: block; }
  .feat, .feat.span6, .step { grid-column: span 12; }
  .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 40px 24px; }
}
@media (max-width: 520px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest.big, .dest.wide { grid-column: span 1; }
  .tile-stat { grid-column: span 6; }
  body { font-size: 16px; }
}
