:root {
  --navy: #0b1c2c;
  --navy-deep: #07131e;
  --navy-mid: #123047;
  --navy-soft: #1b3a52;
  --navy-line: rgba(196, 163, 90, 0.22);
  --cream: #f6f1e8;
  --cream-2: #efe8db;
  --ivory: #fbfaf7;
  --gold: #c4a35a;
  --gold-2: #d4b97a;
  --gold-3: #a3843e;
  --ink: #14202b;
  --muted: #5d6b76;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 19, 30, 0.16);
  --radius: 2px;
  --header-h: 78px;
  --util-h: 40px;
  --max: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }

.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.container-wide { width: min(1360px, calc(100% - 40px)); margin-inline: auto; }

.gold-rule {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  margin: 18px 0 22px;
}

.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
}

h1, h2, h3, h4 { font-weight: 500; letter-spacing: -0.02em; line-height: 1.15; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.28s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn-outline {
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-outline-dark {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--cream); }
.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-navy {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); }

/* Utility bar */
.util-bar {
  background: var(--navy-deep);
  color: rgba(246,241,232,.78);
  font-size: 12px;
  height: var(--util-h);
  display: flex;
  align-items: center;
}
.util-bar .container-wide {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}
.util-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(246,241,232,.82);
  transition: color .2s;
}
.util-link:hover { color: var(--gold-2); }
.util-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.lang-wrap { position: relative; }
.lang-btn {
  background: none; border: 0; color: inherit; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px;
}
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--navy); border: 1px solid var(--navy-line);
  min-width: 140px; padding: 8px 0; display: none; z-index: 80;
}
.lang-wrap:hover .lang-menu, .lang-wrap.open .lang-menu { display: block; }
.lang-menu a { display: block; padding: 8px 14px; color: var(--cream); font-size: 12px; }
.lang-menu a:hover { color: var(--gold); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), box-shadow .35s, backdrop-filter .35s;
}
.site-header.is-top {
  background: linear-gradient(180deg, rgba(7,19,30,.55), rgba(7,19,30,.08) 80%, transparent);
}
.site-header.is-scrolled {
  background: rgba(11, 28, 44, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}
.site-header.solid {
  background: var(--navy);
  box-shadow: 0 6px 20px rgba(0,0,0,.16);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1360px, calc(100% - 40px));
  margin-inline: auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  flex-shrink: 0;
}
.logo-mark {
  width: 42px; height: 42px;
}
.logo-word {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.logo-word small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav > li { position: relative; }
.nav > li > a,
.nav > li > button.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  color: var(--cream);
  font-size: 13.5px;
  font-weight: 500;
  background: none;
  border: 0;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.nav > li > a:hover,
.nav > li > button.nav-link:hover,
.nav > li:hover > a,
.nav > li:hover > button.nav-link { color: var(--gold-2); }
.caret {
  width: 8px; height: 8px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .7;
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: var(--ivory);
  color: var(--ink);
  padding: 16px 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .22s var(--ease);
  border-top: 2px solid var(--gold);
}
.dropdown.wide { min-width: 540px; display: grid; grid-template-columns: 1fr 1fr; }
.nav > li:hover > .dropdown,
.nav > li:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: none;
}
.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 13.5px;
  color: var(--ink);
}
.dropdown a span {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}
.dropdown a:hover { color: var(--gold-3); background: var(--cream); }
.header-cta { margin-left: 10px; }

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block; width: 18px; height: 1.5px; background: currentColor; transition: .25s;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--util-h));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin-top: calc(var(--header-h) * -1);
  padding-top: var(--header-h);
}
.hero-media {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,19,30,.18) 0%, rgba(7,19,30,.55) 58%, rgba(11,28,44,.82) 100%),
    url("../img/hero-skyline.jpg") center/cover no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(420px, 520px);
  align-items: center;
  min-height: inherit;
  padding: 40px 0 70px;
}
.hero-panel {
  background: rgba(11, 28, 44, 0.78);
  backdrop-filter: blur(10px);
  padding: 56px 48px 48px;
  border-left: 3px solid var(--gold);
  color: var(--cream);
}
.hero-panel h1 {
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 400;
  color: var(--ivory);
  margin: 10px 0 18px;
}
.hero-panel p.lead {
  font-size: 18px;
  color: rgba(246,241,232,.8);
  margin-bottom: 28px;
}

/* Sections */
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.bg-cream { background: var(--cream); }
.bg-ivory { background: var(--ivory); }
.bg-navy { background: var(--navy); color: var(--cream); }
.bg-navy-deep { background: var(--navy-deep); color: var(--cream); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  transition: transform 1.1s var(--ease);
}
.split:hover .split-img img { transform: scale(1.04); }
.split-img::after {
  content: "";
  position: absolute; inset: 18px auto auto 18px;
  width: 72px; height: 72px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  pointer-events: none;
}
.split h2 { font-size: clamp(32px, 3.4vw, 46px); color: var(--navy); margin-bottom: 6px; }
.split p { color: var(--muted); margin-bottom: 16px; }

/* Stats */
.stats-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
.stat-num {
  font-size: clamp(34px, 3.6vw, 46px);
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label { margin-top: 8px; color: var(--muted); font-size: 14px; }
.portrait {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; min-height: 560px; }

/* Journey */
.journey-head { max-width: 720px; margin-bottom: 42px; }
.journey-head h2 { font-size: clamp(32px, 3.4vw, 46px); color: var(--navy); }
.steps { display: grid; gap: 10px; }
.step {
  background: var(--ivory);
  border: 1px solid rgba(11,28,44,.08);
  overflow: hidden;
}
.step-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
}
.step-num {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid var(--gold);
  color: var(--gold-3);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
}
.step-btn h3 { font-size: 18px; color: var(--navy); font-weight: 500; flex: 1; }
.step-plus {
  width: 22px; height: 22px; position: relative;
}
.step-plus::before, .step-plus::after {
  content: ""; position: absolute; background: var(--navy);
  transition: .25s;
}
.step-plus::before { width: 14px; height: 1.5px; top: 10px; left: 4px; }
.step-plus::after { width: 1.5px; height: 14px; left: 10px; top: 4px; }
.step.open .step-plus::after { transform: rotate(90deg); opacity: 0; }
.step-body {
  display: none;
  padding: 0 24px 24px 84px;
  color: var(--muted);
  max-width: 820px;
}
.step.open { border-color: rgba(196,163,90,.45); }
.step.open .step-body { display: block; }
.step.open .step-num { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* Cards */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}
.section-head h2 { font-size: clamp(30px, 3.2vw, 44px); color: var(--navy); }
.bg-navy .section-head h2, .bg-navy-deep .section-head h2 { color: var(--ivory); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--ivory);
  overflow: hidden;
  border: 1px solid rgba(11,28,44,.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.card-media {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.card:hover .card-media img { transform: scale(1.07); }
.card-tag {
  position: absolute; left: 14px; bottom: 14px;
  background: var(--navy);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 10px;
  font-weight: 600;
}
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.card-body p { color: var(--muted); font-size: 14.5px; flex: 1; }
.card-link {
  margin-top: 16px;
  color: var(--gold-3);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
.card:hover .card-link { color: var(--navy); }

.service-cards { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(196,163,90,.22);
  padding: 32px 28px;
  transition: .3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.06);
  border-color: var(--gold);
}
.service-card h3 { color: var(--ivory); font-size: 22px; margin: 14px 0 12px; }
.service-card p { color: rgba(246,241,232,.72); font-size: 14.5px; }
.icon-line {
  width: 36px; height: 36px; color: var(--gold);
}

/* News */
.news-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 22px; }
.news-feature, .news-item {
  background: var(--ivory);
  border: 1px solid rgba(11,28,44,.06);
  transition: .3s var(--ease);
}
.news-feature:hover, .news-item:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.news-feature img { width: 100%; height: 280px; object-fit: cover; }
.news-feature .pad, .news-item { padding: 22px; }
.news-date { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-3); margin-bottom: 8px; }
.news-list { display: grid; gap: 16px; }

/* CTA band */
.cta-band {
  background:
    linear-gradient(90deg, rgba(7,19,30,.86), rgba(11,28,44,.72)),
    url("../img/city-night.jpg") center/cover no-repeat;
  color: var(--cream);
  padding: 88px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(30px, 3.4vw, 46px); margin-bottom: 14px; }
.cta-band p { max-width: 620px; margin: 0 auto 28px; color: rgba(246,241,232,.78); }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Page hero (inner) */
.page-hero {
  background:
    linear-gradient(180deg, rgba(7,19,30,.72), rgba(7,19,30,.55)),
    url("../img/city-night.jpg") center/cover no-repeat;
  color: var(--cream);
  padding: 150px 0 80px;
  margin-top: calc(var(--header-h) * -1);
}
.page-hero h1 { font-size: clamp(36px, 4vw, 56px); font-weight: 400; margin: 10px 0 12px; }
.page-hero p { max-width: 640px; color: rgba(246,241,232,.8); }

/* Tables */
.region { margin-bottom: 48px; }
.region h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(196,163,90,.35);
}
.table-wrap { overflow-x: auto; }
table.data {
  width: 100%;
  border-collapse: collapse;
  background: var(--ivory);
  font-size: 14.5px;
}
table.data th {
  text-align: left;
  background: var(--navy);
  color: var(--cream);
  font-weight: 500;
  letter-spacing: .04em;
  padding: 14px 16px;
  font-size: 12px;
  text-transform: uppercase;
}
table.data td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(11,28,44,.06);
  color: var(--muted);
}
table.data td:first-child { color: var(--navy); font-weight: 500; }
table.data tr:hover td { background: var(--cream); }
.chip {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold-3);
  padding: 3px 8px;
}

/* Form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
input, select, textarea {
  width: 100%;
  background: var(--ivory);
  border: 1px solid rgba(11,28,44,.14);
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  outline: none;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }

/* Footer */
.site-footer { background: var(--navy); color: rgba(246,241,232,.72); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr 1fr;
  gap: 28px 20px;
  padding: 64px 0 36px;
}
.footer-grid h4 {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-grid a { display: block; padding: 4px 0; font-size: 13.5px; color: rgba(246,241,232,.72); }
.footer-grid a:hover { color: var(--gold-2); }
.footer-bottom {
  border-top: 1px solid rgba(196,163,90,.18);
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12.5px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(246,241,232,.2);
  display: grid; place-items: center;
  color: var(--cream);
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.legal-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* Cookie / modal / float */
.cookie {
  position: fixed; left: 24px; bottom: 24px; z-index: 90;
  width: min(420px, calc(100% - 32px));
  background: var(--ivory);
  padding: 22px;
  box-shadow: var(--shadow);
  border-top: 2px solid var(--gold);
}
.cookie p { font-size: 14px; color: var(--muted); margin: 8px 0 16px; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.float-callback {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.15;
}
.float-callback:hover { background: var(--gold); color: var(--navy); }
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(7,19,30,.62);
  z-index: 100; display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  width: min(520px, 100%);
  background: var(--ivory);
  padding: 32px;
  position: relative;
  border-top: 3px solid var(--gold);
}
.modal h3 { font-size: 28px; color: var(--navy); margin-bottom: 8px; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border: 0; background: none; cursor: pointer; font-size: 22px;
}

.reveal { opacity: 0; transform: translateY(22px); animation: rise .8s var(--ease) forwards; }
.reveal.d2 { animation-delay: .12s; }
.reveal.d3 { animation-delay: .24s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* Mobile overlay nav */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; top: calc(var(--util-h) + var(--header-h));
  background: var(--navy-deep);
  z-index: 65;
  overflow: auto;
  padding: 12px 20px 40px;
}
.mobile-nav.open { display: block; }
.mobile-nav details { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav summary, .mobile-nav > a {
  display: block;
  padding: 16px 4px;
  color: var(--cream);
  font-size: 16px;
  cursor: pointer;
  list-style: none;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav details a { display: block; padding: 8px 12px 8px 16px; color: rgba(246,241,232,.75); font-size: 14px; }

@media (max-width: 1100px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { max-width: 640px; }
  .split, .stats-wrap, .news-grid, .cards, .service-cards, .form-grid, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 760px) {
  .util-bar .container-wide { gap: 12px; }
  .hide-sm { display: none !important; }
  .hero { min-height: 88vh; }
  .hero-panel { padding: 36px 24px; }
  .split, .stats-wrap, .news-grid, .cards, .service-cards, .form-grid, .footer-grid, .section-head {
    grid-template-columns: 1fr;
  }
  .section-head { align-items: flex-start; flex-direction: column; }
  .split-img, .split-img img, .portrait, .portrait img { min-height: 280px; }
  .step-body { padding-left: 24px; }
  .cookie { left: 12px; bottom: 90px; }
}
