/* ============ LUSTROUS — WHITE / BRUSHED SILVER PALETTE ============ */
:root {
  /* Lustrous identity: white paper, graphite ink, brushed-steel accent */
  --charcoal:  #FFFFFF;  /* primary bg (white) */
  --deep:      #F5F6F8;  /* mid surface */
  --steel:     #EEF0F3;  /* lighter surface */
  --copper:    #57616E;  /* accent (steel gray — used wherever code references --copper) */
  --night:     #0B0E12;  /* near-black (kept dark: anchors, dark cards) */

  --graphite:  #14181F;  /* dark buttons / featured cards */
  --dark-bg:   #0C0F14;  /* dark anchor sections (booking, footer) */
  --dark-line: #1E242D;
  --chrome: linear-gradient(103deg, #3E454E 0%, #6E7783 30%, #AEB6C0 48%, #D7DCE2 53%, #8A939E 64%, #4A525B 85%, #343B44 100%);

  --bg:   var(--charcoal);
  --bg-2: #F5F6F8;
  --bg-3: #EEF0F3;
  --bg-4: #E5E8EC;
  --surface: #FFFFFF;
  --line:   #E3E6EA;
  --line-2: #CFD4DA;
  --ink:    #12161C;
  --ink-2:  #363D46;
  --muted:  #5D646E;
  --muted-2:#98A0A9;

  --red:       #57616E;
  --red-2:     #414A55;
  --red-dark:  #6E7783;
  --red-deep:  #C9CFD7;
  --success: #3E8E5F;
  --font-display: 'Anton', 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Layout ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap--narrow { max-width: 1100px; }
.section { padding: 90px 0; position: relative; }

/* ---------- Typography ---------- */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}
.h-mega { font-size: clamp(64px, 8.5vw, 132px); }
.h-1 { font-size: clamp(40px, 4.6vw, 64px); }
.h-2 { font-size: clamp(40px, 4.6vw, 64px); }
.h-3 { font-size: clamp(22px, 2vw, 28px); font-family: var(--font-body); font-weight: 700; text-transform: none; letter-spacing: -0.01em; line-height: 1.2; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--red);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }
.eyebrow--icon { padding: 8px 16px; border: 1px solid var(--red); border-radius: 100px; }
.eyebrow--icon::before { display: none; }

.lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 60ch;
}

.red { color: var(--red); }
.italic { font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all .25s ease;
  border: 1px solid transparent;
  border-radius: 2px;
}
.btn--primary {
  background: var(--red);
  color: var(--ink);
}
.btn--primary:hover { background: var(--red-2); transform: translateY(-1px); }
.btn--ghost {
  border-color: rgba(255,255,255,0.18);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--red); color: var(--red-2); }
.btn--white { background: var(--night); color: var(--ink); }
.btn--white:hover { background: var(--charcoal); color: var(--copper); }
.btn--lg { padding: 19px 36px; font-size: 13px; }
.btn--block { width: 100%; justify-content: center; }
.btn .arrow {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  font-size: 13px;
  transition: transform .25s;
}
.btn--primary .arrow { background: rgba(0,0,0,0.2); }
.btn:hover .arrow { transform: rotate(-45deg); }

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--night);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-2);
  position: relative;
  z-index: 99;
}
.topbar__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 10px 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar__contact {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
  letter-spacing: 0.04em;
}
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__icon { color: var(--copper); font-size: 13px; }
.topbar__sep {
  width: 1px; height: 12px; background: var(--line-2); display: inline-block;
}
.topbar__social { display: flex; gap: 8px; }
.topbar__social a {
  width: 28px; height: 28px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--ink-2);
  font-weight: 600;
  transition: all .2s;
}
.topbar__social a:hover { background: var(--copper); color: var(--night); border-color: var(--copper); }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__lang { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; letter-spacing: 0.06em; }
.topbar__lang a { color: var(--ink-2); transition: color .2s; text-decoration: none; }
.topbar__lang a:hover, .topbar__lang a.active { color: var(--copper); }
.topbar__lang span { color: var(--line-2); }
@media (max-width: 720px) {
  .topbar__contact { font-size: 11px; gap: 10px; }
  .topbar__sep { display: none; }
}

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0;
  padding: 14px 32px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__links a.has-dropdown { display: inline-flex; align-items: center; gap: 6px; }
.nav__links a .caret {
  font-size: 9px;
  opacity: 0.7;
  transition: transform .2s;
}
.nav__links a.has-dropdown:hover .caret { transform: translateY(2px); opacity: 1; }
.nav__brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brandmark {
  display: flex; align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brandmark__logo {
  width: 48px; height: 48px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.brandmark__word {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--ink);
}
.brandmark__word .red { color: var(--red); }
.brandmark__word--blue { color: var(--red); }
.brandmark--footer { gap: 14px; }
.brandmark--footer .brandmark__word { font-size: 36px; }
.brandmark--footer .brandmark__logo { width: 60px; height: 60px; }
.nav__links { display: flex; gap: 36px; }
.nav__links a {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  transition: color .2s;
  padding: 6px 0;
}
.nav__links a:hover, .nav__links a.active { color: var(--red); }
.nav__info {
  display: flex; align-items: center; gap: 32px;
  font-size: 12px;
  color: var(--muted);
}
.nav__info span strong { color: var(--ink); display: block; font-size: 12px; }
@media (max-width: 980px) {
  .nav__links, .nav__info { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  padding: 48px 0 32px;
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 85% 25%, rgba(22, 93, 191, 0.22), transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 75%, rgba(10, 52, 116, 0.35), transparent 70%),
    var(--charcoal);
  overflow: hidden;
}
.hero__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(180px, 22vw, 360px);
  color: rgba(255,255,255,0.025);
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
}
.hero__split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: clamp(520px, calc(100vh - 230px), 720px);
}
.hero__copy {
  display: flex; flex-direction: column;
  gap: 18px;
}
.hero__copy .eyebrow { margin-bottom: -4px; }
.hero__title {
  font-size: clamp(44px, 5.4vw, 80px);
  letter-spacing: -0.01em;
  line-height: 0.95;
}
.hero__title .accent {
  color: var(--red);
  text-shadow: 0 0 60px rgba(22, 93, 191, 0.35);
}
.hero__lead {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 56ch;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn--lg { padding: 14px 26px; font-size: 12px; }
.hero__trust {
  display: flex; gap: 22px; align-items: center;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}
.hero__trust-item { display: flex; flex-direction: column; gap: 3px; }
.hero__trust-item strong {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.hero__trust-item span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.hero__trust-divider {
  width: 1px; height: 28px; background: var(--line-2);
}

/* Hero visual — large premium image with gradient */
.hero__visual {
  position: relative;
  height: 100%;
  min-height: 460px;
  border: 1px solid var(--line-2);
  overflow: hidden;
  background:
    linear-gradient(160deg, #0A3474 0%, #15171B 55%, #0F1014 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 120px rgba(22, 93, 191, 0.10) inset;
}
.hero__visual-glow {
  position: absolute;
  top: -10%; right: -10%;
  width: 70%; height: 70%;
  background: radial-gradient(circle at center, rgba(22, 93, 191, 0.45), transparent 65%);
  filter: blur(20px);
  z-index: 1;
  pointer-events: none;
}
.hero__visual-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero__visual-frame image-slot { width: 100%; height: 100%; display: block; }
.hero__visual-grade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(15, 16, 20, 0.85) 100%),
    linear-gradient(90deg, rgba(15, 16, 20, 0.55) 0%, transparent 35%);
  z-index: 3;
  pointer-events: none;
}
.hero__visual-badge {
  position: absolute;
  top: 24px; left: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(15, 16, 20, 0.7);
  padding: 9px 14px;
  border: 1px solid var(--red-deep);
  backdrop-filter: blur(8px);
  z-index: 4;
}
.hero__visual-badge-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22, 93, 191, 0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22, 93, 191, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(22, 93, 191, 0.10); }
}
.hero__visual-meta {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  z-index: 4;
}
.hero__visual-meta-row {
  background: rgba(15, 16, 20, 0.7);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero__visual-meta-row small {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-mono);
}
.hero__visual-meta-row strong {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .hero__split { grid-template-columns: 1fr; gap: 32px; min-height: auto; }
  .hero__visual { height: 380px; }
  .hero__trust { flex-wrap: wrap; gap: 16px; }
  .hero__trust-divider { display: none; }
}

/* ---------- FEATURE CARDS ---------- */
.features { padding: 0; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fcard {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 32px 28px;
  color: var(--ink);
  position: relative;
  min-height: 200px;
  display: flex; flex-direction: column;
  transition: background .25s, border-color .25s, transform .25s;
}
.fcard:hover { border-color: var(--copper); transform: translateY(-3px); }
.fcard .fcard__icon { stroke: var(--copper); }
.fcard .fcard__body { color: var(--muted); }
.fcard .fcard__link { color: var(--copper); }
.fcard--featured {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--night);
}
.fcard--featured:hover { background: #2E7BDB; border-color: #2E7BDB; }
.fcard--featured .fcard__icon { stroke: var(--night); }
.fcard--featured .fcard__body { color: rgba(31, 20, 24, 0.82); }
.fcard--featured .fcard__link { color: var(--night); }
.fcard__icon {
  width: 38px; height: 38px;
  stroke: var(--ink);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 20px;
}
.fcard__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  text-transform: uppercase;
  line-height: 1;
}
.fcard__body {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}
.fcard__link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
@media (max-width: 860px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
