:root {
  --bg: #0b0b0b;
  --card: #141414;
  --ink: #f4f4f4;
  --muted: #b5b5b5;
  --line: #2a2a2a;
  --yellow: #f5ba14;
  --max: 980px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a { color: var(--ink); }
img { max-width: 100%; height: auto; display: block; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 20px;
  background: rgba(11,11,11,.94);
  border-bottom: 1px solid var(--line);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img { height: 44px; width: auto; }
.nav-brand .nav-flags { height: 36px; }
.nav nav { display: flex; gap: 18px; margin-left: auto; }
.nav nav a { text-decoration: none; font-size: 14px; color: var(--muted); }
.nav nav a:hover { color: #fff; }
.nav-phone {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--yellow);
}

.hero, section, footer { max-width: var(--max); margin: 0 auto; padding: 56px 20px; }
.hero { text-align: center; padding-top: 72px; padding-bottom: 72px; }
.hero-logo { width: min(420px, 86vw); margin: 0 auto 28px; }
.hero-tag { color: var(--muted); font-size: 18px; max-width: 560px; margin: 0 auto 28px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  background: var(--yellow);
  color: #111;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 4px;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid #3a3a3a;
}

h2 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.lede { color: var(--muted); margin: 0 0 28px; max-width: 640px; }
.about-copy { color: var(--muted); margin: 0; max-width: 720px; font-size: 16px; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}
.cards article {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 20px;
}
.cards h3 {
  margin: 0 0 8px;
  color: var(--yellow);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 15px;
}
.cards p { margin: 0; color: var(--muted); font-size: 15px; }

.cities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px 16px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.cities li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 4px;
  background: var(--yellow);
  margin-right: 8px;
  vertical-align: middle;
}

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin: 0 0 12px; }
.contact-list span {
  display: block;
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-list a { text-decoration: none; font-size: 20px; font-weight: 700; }

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}
footer a { color: var(--muted); }

.photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.photos figure {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
}
.photos img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  cursor: zoom-in;
}
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
#lightbox[hidden] { display: none; }
#lightbox img {
  max-width: 96vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.photos figcaption {
  padding: 8px 10px 10px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .nav nav { display: none; }
  .hero { padding-top: 40px; }
}
