:root {
  --bg: #000;
  --fg: #fff;
  --muted: #b7b7b7;
  --line: rgba(255,255,255,.14);
  --gold: #c4a46a;
  --gold-2: #e8d3a4;
}

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

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.01em;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: linear-gradient(to bottom, rgba(0,0,0,.72), transparent);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-size: 13px;
  color: var(--muted);
}

.nav-links a:hover { color: #fff; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: end start;
  overflow: hidden;
}

.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 20%, rgba(0,0,0,.72) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 0 7vw 10vh;
  max-width: 920px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -0.04em;
}

.hero p {
  margin-top: 22px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.45;
  color: #e8e8e8;
}

.btn-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 40px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  border: 0;
  cursor: pointer;
}

.btn-light { background: #fff; color: #111; }
.btn-ghost { background: rgba(0,0,0,.35); color: #fff; border: 1px solid rgba(255,255,255,.45); }

section { padding: 88px 7vw; }

.section-title {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.035em;
  max-width: 14ch;
}

.lede {
  margin-top: 18px;
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.cities {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.city {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  min-height: 110px;
}

.city strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.city span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.muted-list {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.muted-list li {
  list-style: none;
  padding-left: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.muted-list b { color: #fff; font-weight: 500; }

.panel {
  background: #0c0c0c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

form { display: grid; gap: 12px; }

input, textarea {
  width: 100%;
  background: #111;
  border: 1px solid var(--line);
  color: #fff;
  padding: 14px 14px;
  font: inherit;
  border-radius: 2px;
}

textarea { min-height: 120px; resize: vertical; }

.note {
  margin-top: 14px;
  color: #8d8d8d;
  font-size: 13px;
  line-height: 1.5;
}

footer {
  padding: 36px 7vw 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  color: #8a8a8a;
  font-size: 12px;
  line-height: 1.6;
}

.foot-left { max-width: 640px; }

.legal { margin-top: 8px; }

.social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.social a {
  display: grid;
  place-items: center;
  color: var(--gold-2);
}

.social a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .cities { grid-template-columns: 1fr 1fr; }
  .split, .contact { grid-template-columns: 1fr; }
  .split img { height: 320px; }
  footer { flex-direction: column; align-items: flex-start; }
}
