:root {
  --bg: #071408;
  --bg-soft: #0e2312;
  --green: #42a046;
  --green-dark: #2f4a21;
  --gold: #ffe355;
  --orange: #f7941d;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Merriweather', serif;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.holding {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  overflow: hidden;
  background: radial-gradient(ellipse at top, var(--bg-soft) 0%, var(--bg) 65%);
}

.glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  max-width: 140vw;
  background: radial-gradient(circle, rgba(66, 160, 70, 0.35) 0%, rgba(66, 160, 70, 0) 70%);
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 140px;
  height: auto;
  margin-bottom: 32px;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 48px;
  line-height: 1.15;
  color: var(--white);
}

.lede {
  margin: 0 0 36px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 460px;
}

.contact-btn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.contact-btn:hover {
  background-color: var(--orange);
  transform: translateY(-2px);
}

.contact-note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  h1 {
    font-size: 34px;
  }

  .logo {
    width: 110px;
  }

  .lede {
    font-size: 15px;
  }
}
