:root {
  --navy: #071525;
  --navy-2: #0c2238;
  --navy-3: #14324f;
  --red: #d3122a;
  --red-dark: #a50e21;
  --gold: #c6a35a;
  --gold-2: #e3c989;
  --cream: #f6f2ea;
  --ice: #e8eef4;
  --white: #ffffff;
  --muted: #6b7789;
  --line: rgba(198, 163, 90, 0.28);
  --shadow: 0 24px 60px rgba(7, 21, 37, 0.18);
  --radius: 22px;
  --max: 1180px;
  --font: "DM Sans", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.skip {
  position: absolute; left: -999px; top: 8px;
}
.skip:focus { left: 12px; z-index: 100; background: #fff; padding: 8px 12px; }

/* NAV */
.nav {
  position: fixed; inset: 18px 0 auto;
  z-index: 50;
}
.nav-inner {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 10px 14px 10px 12px;
  background: rgba(7, 21, 37, 0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(0,0,0,.22);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: #fff;
}
.brand img {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 14px; letter-spacing: .04em; }
.brand-text span { font-size: 11px; color: var(--gold-2); letter-spacing: .16em; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: 22px;
  list-style: none;
  color: rgba(255,255,255,.86);
  font-size: 14px;
}
.nav-links a:hover { color: var(--gold-2); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}
.nav-cta:hover { background: var(--red-dark); }

.menu-btn {
  display: none;
  width: 42px; height: 42px;
  border: 0; background: transparent; color: #fff;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: end stretch;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,21,37,.28) 0%, rgba(7,21,37,.55) 48%, rgba(7,21,37,.92) 100%),
    url("../images/hero-alps.webp") center/cover no-repeat;
  transform: scale(1.04);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 72px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold-2);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 28px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 600;
  line-height: .95;
  max-width: 14ch;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
}
.hero-lead {
  max-width: 46ch;
  margin: 22px 0 32px;
  color: rgba(255,255,255,.84);
  font-size: 17px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(211,18,42,.28); }
.btn-red:hover { background: var(--red-dark); }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  max-width: 640px;
}
.hero-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold-2);
  line-height: 1;
}
.hero-stats span { font-size: 13px; color: rgba(255,255,255,.72); }

/* SECTIONS */
section { padding: 92px 0; scroll-margin-top: 96px; }
.section-head { max-width: 680px; margin-bottom: 42px; }
.eyebrow {
  color: var(--red);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  font-weight: 600;
}
.lead { color: var(--muted); margin-top: 12px; font-size: 17px; }

.countries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.card.featured { min-height: 460px; }
.card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.card:hover img { transform: scale(1.07); }
.card-body {
  position: absolute; inset: auto 0 0;
  padding: 28px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(7,21,37,.92));
}
.flag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.card h3 {
  font-family: var(--serif);
  font-size: 34px;
  margin-bottom: 8px;
}
.card p { color: rgba(255,255,255,.82); font-size: 14px; }

/* PROCESS */
.process { background: var(--navy); color: #fff; }
.process .lead { color: rgba(255,255,255,.7); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 26px 22px;
}
.num {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,.7); font-size: 14px; }

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.why-panel {
  background: #fff;
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.why-panel img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
}
.features { display: grid; gap: 16px; margin-top: 28px; }
.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(7,21,37,.06);
}
.icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--gold);
}
.feature h3 { font-size: 16px; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: 14px; }

/* FAQ */
.faq { background: #fff; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid rgba(7,21,37,.08);
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq-item p {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
}
.faq-item.open p { display: block; }
.faq-item .plus { color: var(--red); }

/* CONTACT */
.contact {
  background:
    linear-gradient(180deg, rgba(7,21,37,.78), rgba(7,21,37,.9)),
    url("../images/og-cover.jpg") center/cover no-repeat;
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: start;
}
.socials { display: grid; gap: 12px; margin-top: 24px; }
.social {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 16px;
}
.social:hover { background: rgba(255,255,255,.14); }
.social b { display: block; }
.social span { font-size: 13px; color: rgba(255,255,255,.7); }
.form {
  background: rgba(255,255,255,.96);
  color: var(--navy);
  border-radius: 24px;
  padding: 28px;
}
.form h3 { font-family: var(--serif); font-size: 30px; margin-bottom: 8px; }
.form p { color: var(--muted); margin-bottom: 18px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: block; font-size: 13px; font-weight: 600; margin: 0 0 6px; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(7,21,37,.12);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
.field { margin-bottom: 12px; }
textarea { min-height: 110px; resize: vertical; }

footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 28px 0;
  font-size: 13px;
}
.foot {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  align-items: center;
}
.foot a { color: var(--gold-2); }

.float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
}
.float a {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  color: #fff;
}
.float .tg { background: #229ed9; }
.float .ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

@media (max-width: 980px) {
  .countries, .steps, .why-grid, .contact-grid, .row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-inner.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 14px; right: 14px;
    background: rgba(7,21,37,.96);
    padding: 18px;
    border-radius: 18px;
    align-items: flex-start;
  }
  .menu-btn { display: grid; place-items: center; }
  .hero-stats { grid-template-columns: 1fr; }
  .why-panel img { height: 280px; }
  section { padding: 68px 0; }
}
