
:root {
  --bg: #070a08;
  --bg-2: #0c120f;
  --panel: #101713;
  --panel-2: #141d18;
  --text: #f5f0e7;
  --muted: #bdb5a6;
  --line: #2a342e;
  --accent: #b89147;
  --accent-soft: rgba(184, 145, 71, 0.16);
  --green: #52624d;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

header {
  border-bottom: 1px solid rgba(184, 145, 71, 0.22);
  background: rgba(7, 10, 8, 0.96);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.nav {
  max-width: 1220px;
  margin: auto;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
}

.logo {
  height: 58px;
  width: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(184,145,71,0.08);
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand small {
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: 0.11em;
  color: var(--accent);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a:hover { color: var(--accent); }

.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7,10,8,0.98), rgba(7,10,8,0.88), rgba(7,10,8,0.58)),
    radial-gradient(circle at 74% 20%, rgba(184,145,71,0.18), transparent 34%),
    linear-gradient(145deg, transparent 0%, transparent 55%, rgba(82,98,77,0.22) 100%);
}

.container {
  max-width: 1220px;
  margin: auto;
  padding: 76px 24px;
}

.hero-content { max-width: 880px; }

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}

h1, h2, h3 {
  line-height: 1.12;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(44px, 6vw, 82px);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.035em;
}

h3 { font-size: 21px; }

.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 790px;
}

.hero-line {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 13px;
  font-weight: 800;
  margin: 12px 0 20px;
}

.btn {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 24px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #111;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 13px;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  margin-left: 10px;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0e0c;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  padding: 1px;
}

.trust-item {
  background: #0a0e0c;
  padding: 22px;
  text-align: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

.section-dark { background: var(--bg); }
.section-panel { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background:
    linear-gradient(180deg, rgba(184,145,71,0.06), transparent 36%),
    var(--panel);
  border: 1px solid var(--line);
  padding: 30px;
  min-height: 225px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,145,71,0.55);
}

.card h3 { color: var(--text); }
.card p { color: var(--muted); margin: 0; }

.statement {
  max-width: 900px;
  font-size: 22px;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 32px 24px;
  font-size: 14px;
  background: #070a08;
}

.footer-inner {
  max-width: 1220px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.form-wrap {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 30px;
}

form {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: #080c0a;
  color: var(--text);
  font-size: 15px;
}

input:focus, select:focus, textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

textarea { min-height: 150px; resize: vertical; }

button {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #111;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  cursor: pointer;
}

.contact-box {
  background:
    linear-gradient(180deg, rgba(184,145,71,0.08), transparent 35%),
    var(--panel-2);
  border: 1px solid var(--line);
  padding: 30px;
  height: fit-content;
}

.contact-box p { color: var(--muted); }

.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 15%, rgba(184,145,71,0.18), transparent 35%),
    linear-gradient(135deg, #070a08, #0d1511);
}

.cta-band {
  border-top: 1px solid rgba(184,145,71,0.25);
  border-bottom: 1px solid rgba(184,145,71,0.25);
  background: linear-gradient(90deg, rgba(184,145,71,0.15), rgba(82,98,77,0.12));
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

@media (max-width: 850px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { flex-wrap: wrap; gap: 14px; }
  .grid-3, .grid-2, .form-wrap, .trust-grid { grid-template-columns: 1fr; }
  .btn.secondary { margin-left: 0; display: block; width: fit-content; }
  .logo { height: 48px; width: 48px; }
  .brand small { font-size: 9px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

form h2 {
  font-size: 24px;
  margin-top: 8px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

form h2:not(:first-of-type) {
  margin-top: 34px;
}
