/* BOLT Capital B.V. — one-page website */
:root {
  --black: #050505;
  --black-soft: #11100f;
  --gold: #d6b46a;
  --gold-light: #f5d98d;
  --text: #f4f1eb;
  --muted: #bdb7ad;
  --line: rgba(214, 180, 106, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Avenir Next, Montserrat, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 14%, rgba(214, 180, 106, 0.10), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(214, 180, 106, 0.12), transparent 34%),
    linear-gradient(135deg, #020202 0%, #11100f 45%, #030303 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: auto -10vw 9vh -10vw;
  height: 34vh;
  pointer-events: none;
  background:
    repeating-radial-gradient(ellipse at center, rgba(214, 180, 106, 0.30) 0 1px, transparent 1px 10px);
  opacity: 0.28;
  transform: rotate(-3deg);
  filter: blur(0.2px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  border-bottom: 1px solid rgba(214, 180, 106, 0.7);
}

.page {
  position: relative;
  z-index: 1;
  width: min(1920px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 72px 0 56px;
}

.logo {
  width: min(760px, 94vw);
  height: auto;
  margin-bottom: 28px;
}

.divider {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  margin: 16px auto 30px;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.25;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.75);
}

.copy {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.75;
  letter-spacing: 0.03em;
}

.contact-label {
  margin: 44px 0 22px;
  color: var(--gold-light);
  font-size: clamp(13px, 1.5vw, 18px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 0 36px;
  border: 1px solid var(--line);
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 15px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  background: rgba(0, 0, 0, 0.18);
}

.button:hover {
  transform: translateY(-2px);
  background: rgba(214, 180, 106, 0.08);
  border-color: var(--gold-light);
}

.icon {
  width: 24px;
  height: 24px;
}

.footer {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 28px 0 34px;
  color: rgba(244, 241, 235, 0.68);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.footer span + span::before {
  content: "|";
  margin-right: 22px;
  color: rgba(214, 180, 106, 0.7);
}

@media (max-width: 680px) {
  .hero {
    padding-top: 48px;
  }

  .logo {
    width: 96vw;
  }

  .button {
    width: 100%;
    justify-content: center;
    padding: 0 20px;
  }

  .footer span + span::before {
    content: "";
    margin: 0;
  }
}
