:root {
  --navy: #0b1f33;
  --navy-2: #143049;
  --navy-3: #1c3d5a;
  --ink: #101820;
  --gold: #c4a35a;
  --gold-2: #d4b56e;
  --gold-soft: #efe2c2;
  --paper: #f4f0e8;
  --cream: #fbf8f2;
  --white: #fffcf7;
  --line: rgba(11, 31, 51, 0.1);
  --muted: #5d6975;
  --ok: #2e6b4f;
  --shadow: 0 18px 50px rgba(11, 31, 51, 0.12);
  --radius: 18px;
  --max: 960px;
  --header: 64px;
  --pad: clamp(14px, 4vw, 28px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: clamp(15px, 0.35vw + 14px, 17px);
  min-height: 100dvh;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; max-width: 100%; }
.container {
  width: calc(100% - 2 * var(--pad));
  max-width: var(--max);
  margin: 0 auto;
}

.serif { font-family: "Cormorant Garamond", Georgia, serif; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 31, 51, 0.94);
  backdrop-filter: blur(16px);
  color: var(--white);
  border-bottom: 1px solid rgba(196, 163, 90, 0.25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header); gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  letter-spacing: 0.04em;
}
.logo img {
  height: 40px; width: auto; display: block;
}
.logo-mark {
  width: 38px; height: 38px; border: 1.5px solid var(--gold);
  display: grid; place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600; color: var(--gold); font-size: 18px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-size: 15px; font-weight: 600; letter-spacing: 0.16em; }
.logo-text span { font-size: 10px; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; }

nav.main-nav { display: flex; align-items: center; gap: 22px; }
nav.main-nav a {
  font-size: 14px; letter-spacing: 0.04em; color: rgba(255,252,247,0.82);
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--gold-2); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang {
  display: flex; border: 1px solid rgba(196,163,90,0.35); border-radius: 999px; overflow: hidden;
}
.lang button {
  background: transparent; color: rgba(255,252,247,0.7); border: 0;
  padding: 6px 10px; cursor: pointer; font-size: 12px; letter-spacing: 0.08em;
}
.lang button.active { background: var(--gold); color: var(--navy); font-weight: 600; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; font-weight: 600; letter-spacing: 0.03em; transition: 0.2s ease;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); }
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,252,247,0.28);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-2); }
.btn-line {
  background: transparent; color: var(--navy);
  border-color: rgba(11,31,51,0.2);
}
.btn-line:hover { border-color: var(--navy); }
.menu-toggle {
  display: none; background: none; border: 0; color: var(--white); cursor: pointer;
  width: 42px; height: 42px;
}

/* Hero */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(196,163,90,0.18), transparent 50%),
    linear-gradient(165deg, #0b1f33 0%, #132c44 55%, #0e2438 100%);
  color: var(--white);
  padding: 88px 0 72px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto -80px -120px auto;
  width: 520px; height: 520px; border: 1px solid rgba(196,163,90,0.18);
  border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.eyebrow {
  color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase;
  font-size: 12px; font-weight: 600; margin-bottom: 16px;
}
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; line-height: 1.12; font-weight: 500; }
.hero h1 { font-size: clamp(28px, 7vw, 60px); margin-bottom: 18px; max-width: 16ch; }
.lead { font-size: clamp(15px, 2.4vw, 18px); color: rgba(255,252,247,0.78); max-width: 42em; margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 28px; color: rgba(255,252,247,0.72); font-size: 14px; }
.hero-meta strong { display: block; color: var(--white); font-size: 22px; font-family: "Cormorant Garamond", serif; font-weight: 600; }

.hero-card {
  background: rgba(255,252,247,0.06);
  border: 1px solid rgba(196,163,90,0.28);
  padding: 28px;
  backdrop-filter: blur(10px);
}
.hero-card h3 { font-size: 28px; margin-bottom: 16px; }
.hero-card ul { list-style: none; display: grid; gap: 12px; }
.hero-card li { display: flex; gap: 10px; color: rgba(255,252,247,0.82); font-size: 15px; }
.dot {
  width: 8px; height: 8px; margin-top: 8px; flex: none;
  background: var(--gold); border-radius: 50%;
}

/* Sections */
section { padding: clamp(40px, 8vw, 80px) 0; }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(32px, 4vw, 48px); margin: 8px 0 14px; }
.muted { color: var(--muted); }
.paper { background: var(--paper); }
.navy-block { background: var(--navy); color: var(--white); }
.navy-block .muted { color: rgba(255,252,247,0.66); }

.grid-3, .grid-2, .grid-4 { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px 26px;
  box-shadow: 0 1px 0 rgba(11,31,51,0.03);
}
.card h3 { font-size: 26px; margin: 10px 0 10px; }
.icon-box {
  width: 42px; height: 42px; border: 1px solid var(--gold);
  display: grid; place-items: center; color: var(--gold); font-size: 13px; letter-spacing: 0.08em;
  font-family: "Cormorant Garamond", serif;
}

.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: start;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.step-num {
  font-family: "Cormorant Garamond", serif; font-size: 34px; color: var(--gold);
}
.countries {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pill {
  border: 1px solid var(--line); background: var(--white);
  padding: 8px 12px; font-size: 14px; color: var(--navy-2);
}

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 15px; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.cta-band {
  background: linear-gradient(135deg, #143049, #0b1f33);
  color: var(--white); padding: 64px 0;
}
.cta-band .inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { font-size: 40px; }

form { display: grid; gap: 14px; }
label { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
input, select, textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line);
  background: var(--white); color: var(--ink); outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 13px; color: var(--muted); }
.success {
  display: none; background: #e8f3ec; color: var(--ok); padding: 14px 16px; border: 1px solid #b7d6c3;
}
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

footer {
  background: #081623; color: rgba(255,252,247,0.72); padding: 56px 0 28px; font-size: 15px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
footer h4 { color: var(--white); font-family: "Source Sans 3", sans-serif; letter-spacing: 0.12em; text-transform: uppercase; font-size: 12px; margin-bottom: 16px; }
footer a { display: block; padding: 4px 0; color: rgba(255,252,247,0.72); }
footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,252,247,0.08);
  padding-top: 18px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13px;
}

.page-hero { padding: 72px 0 36px; background: var(--navy); color: var(--white); }
.page-hero h1 { font-size: clamp(36px, 5vw, 58px); margin-bottom: 12px; }
.breadcrumbs { font-size: 13px; color: rgba(255,252,247,0.55); margin-bottom: 16px; }
.breadcrumbs a { color: var(--gold); }

.legal, .prose { max-width: 42em; }
.legal p, .prose p { margin-bottom: 14px; }
.prose h2 { font-size: 34px; margin: 28px 0 12px; }
.prose ul, .legal ul { padding-left: 18px; margin: 0 0 16px; }
.prose li { margin-bottom: 6px; }

@media (max-width: 1020px) {
  .hero-grid, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero { padding: 48px 0 40px; }
  .hero-grid, .grid-3, .grid-4, .grid-2, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  nav.main-nav { display: none; }
  .header-actions .btn { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .site-header.open nav.main-nav {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: var(--header);
    background: var(--navy); padding: 16px var(--pad) 24px; gap: 14px;
    border-bottom: 1px solid rgba(196,163,90,0.25);
  }
  .site-header.open .header-actions { display: flex; }
  .site-header.open .header-actions .btn { display: inline-flex; width: 100%; }
  .step { grid-template-columns: 48px 1fr; gap: 12px; }
  .page-hero { padding: 40px 0 24px; }
  .page-hero h1 { font-size: clamp(26px, 8vw, 40px); }
  .cta-band h2 { font-size: clamp(26px, 7vw, 36px); }
  .card { padding: 20px 16px; }
  .logo img { height: 32px; }
}
@media (max-width: 480px) {
  .hero-meta { gap: 14px; }
  .hero-card { padding: 18px; }
  .btn { width: 100%; }
  .hero-cta .btn { width: auto; flex: 1 1 auto; }
}
