/* --------------------------------------------------
   GLOBAL THEME
-------------------------------------------------- */
:root {
  --bg: #0f1418;
  --bg-alt: #171e24;
  --accent: #d9a441;
  --accent-soft: #f1d9a0;
  --text: #f5f5f5;
  --muted: #a4b0b9;
  --max-width: 1100px;
  --radius: 6px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  background: radial-gradient(circle at top, #1f2830 0, #050608 55%);
  color: var(--text);
  line-height: 1.6;
}

/* --------------------------------------------------
   NAVIGATION
-------------------------------------------------- */
header {
  background: rgba(5, 8, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #222b33;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.brand-text span:first-child {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.brand-text span:last-child {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.nav-links a:hover {
  color: var(--accent-soft);
}

/* --------------------------------------------------
   MAIN LAYOUT
-------------------------------------------------- */
main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

section {
  margin-bottom: 3.5rem;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-intro {
  color: var(--muted);
  max-width: 40rem;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------
   HERO BUTTON SPACING (your request)
-------------------------------------------------- */
.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;     /* space ABOVE buttons */
  margin-bottom: 2.5rem;  /* space BELOW buttons */
  flex-wrap: wrap;
}

/* --------------------------------------------------
   GRID
-------------------------------------------------- */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* --------------------------------------------------
   CARDS
-------------------------------------------------- */
.card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid #252f38;
  padding: 1.25rem 1.2rem;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* --------------------------------------------------
   LISTS
-------------------------------------------------- */
ul {
  list-style: none;
}

ul li {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
  display: flex;
  gap: 0.4rem;
}

ul li::before {
  content: "•";
  color: var(--accent-soft);
}

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
.btn {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  border: 1px solid transparent;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  background: none;
}

.btn-primary {
  background: linear-gradient(135deg, #d9a441, #f1d9a0);
  color: #1b1305;
  font-weight: 600;
}

.btn-ghost {
  border-color: #3a4650;
  color: var(--muted);
}

/* --------------------------------------------------
   CONTACT FORM
-------------------------------------------------- */
.contact-form label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.25rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 4px;
  border: 1px solid #2b353f;
  background: #050608;
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.contact-form textarea {
  min-height: 120px;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  border-top: 1px solid #222b33;
  padding: 1.25rem;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  background: #050608;
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 900px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}