:root {
  --bg: #0b1220;
  --text: #e5e7eb;
  --muted: rgba(229,231,235,0.75);
  --surface: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.10);
  --gold: #c8a95e;
  --gold2: #b8964f;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.site-header {
  background: rgba(15,23,42,0.95);
  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.navlinks {
  display: flex;
  gap: 22px;
}

.navlinks a {
  font-weight: 600;
  color: var(--muted);
  transition: 0.2s ease;
}

.navlinks a:hover { color: #fff; }

/* HERO (HOME) */
.hero { position: relative; }

.hero img {
  width: 100%;
  height: min(520px, 60vh);
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 10px;
  font-weight: 900;
}

.hero-content p {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}

/* INNER PAGE HERO */
.page-hero {
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("images/hero-wide.png") center / cover no-repeat;
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--border);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 10px;
}

.page-title {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
}

.page-subtitle {
  margin: 0;
  max-width: 100%;
  font-size: 1.05rem;
  color: rgba(229,231,235,0.9);
}

/* SECTIONS */
.section { padding: 60px 0; }

.alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

h2 { margin: 0 0 18px; font-size: 1.8rem; }

.muted-text { color: var(--muted); font-size: 1rem; }

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 25px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: 0.25s ease;
}

.card:hover { border-color: var(--gold); }

.card h3 { margin-top: 0; margin-bottom: 10px; }

.card p { color: var(--muted); }

/* SERVICES LIST */
.services {
  margin: 25px 0;
  padding-left: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 25px;
  color: var(--muted);
}

/* BUTTONS */
.cta {
  display: inline-block;
  background: var(--gold);
  color: #111827;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.2s ease;
}

.cta:hover { background: var(--gold2); }

/* CTA BOX */
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 50px;
}

.cta-box .cta {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 8px;
  min-width: 160px;
  text-align: center;
}

/* ✅ CONTACT FORM (BULLETPROOF) */
.contact-form {
  max-width: 900px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  margin: 0 0 8px;
  font-weight: 700;
  color: rgba(229,231,235,0.88);
  font-size: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 1rem;
  box-shadow: none;
  appearance: none;
}

textarea { resize: vertical; }

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.send-btn {
  margin-top: 18px;
}

.form-note {
  margin-top: 12px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .9rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
  }

  .cta-box .cta { width: auto; }
}

@media (max-width: 600px) {
  .cards { grid-template-columns: 1fr; }
}