 :root {
  --bg: #050505;
  --panel: rgba(12, 12, 12, 0.9);
  --gold: #d4af37;
  --gold-light: #f0d779;
  --text: #f6f6f6;
  --muted: #c8c8c8;
  --line: rgba(212, 175, 55, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.88)),
    url("assets/gold-globus.png") center center / min(92vw, 980px) no-repeat fixed,
    var(--bg);
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 60px);
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.logo-link { display: inline-flex; flex: 0 0 auto; }
.logo {
  display: block;
  width: clamp(105px, 13vw, 165px);
  height: auto;
  border: 1px solid rgba(255,255,255,0.14);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  color: #eeeeee;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  background: var(--gold);
  color: #050505;
}

main {
  width: min(1120px, calc(100% - 34px));
  margin: 0 auto;
  padding: clamp(44px, 8vw, 100px) 0 70px;
}

.home-main {
  min-height: calc(100vh - 165px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero {
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px;
}

.home-title {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.7);
}

.home-years {
  margin: 18px 0 0;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.7);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 800;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.05rem;
}

strong { color: #ffffff; }
.lead { max-width: 720px; font-size: clamp(1.05rem, 2vw, 1.2rem); }

.content-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

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

.button {
  display: inline-block;
  padding: 13px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #050505;
}

.button.secondary {
  background: transparent;
  color: var(--gold-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 22px;
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-item {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child { border-bottom: 0; }
.contact-item strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 5px;
}

.contact-item a {
  text-decoration: none;
  color: #ffffff;
}

.map-wrap {
  min-height: 440px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  display: block;
}

.callsign {
  display: inline-block;
  margin: 18px 0;
  padding: 12px 18px;
  color: #050505;
  background: var(--gold);
  border-radius: 8px;
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.site-footer {
  padding: 24px 18px 34px;
  text-align: center;
  border-top: 1px solid var(--line);
  color: #9d9d9d;
  background: rgba(0, 0, 0, 0.76);
}

.site-footer strong { color: var(--gold-light); }

@media (max-width: 900px) {
  body {
    background-size: min(120vw, 860px);
    background-position: center center;
  }
}

@media (max-width: 820px) {
  .site-header { align-items: flex-start; }
  .nav a { padding: 8px 9px; font-size: 0.88rem; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-header {
    position: relative;
    flex-direction: column;
  }

  .nav { justify-content: flex-start; }

  body {
    background-size: 135vw;
    background-position: center 42%;
  }

  .home-main {
    min-height: calc(100vh - 210px);
  }
}
