:root {
  --navy: #0c1b2a;
  --navy-soft: #13283d;
  --gold: #c8a24a;
  --blue: #d8ecff;
  --text: #1e2a36;
  --muted: #6b7886;
  --light: #f6f8fb;
  --white: #ffffff;
  --border: #dfe5ec;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 162, 74, 0.65);
  background: var(--navy);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-text {
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.2px;
}

nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
}

nav a {
  text-decoration: none;
  color: var(--navy);
}

nav a:hover { color: var(--gold); }

.hero {
  background:
    linear-gradient(135deg, rgba(12, 27, 42, 0.96), rgba(19, 40, 61, 0.92)),
    radial-gradient(circle at top right, rgba(216, 236, 255, 0.25), transparent 35%);
  color: var(--white);
  padding: 92px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 14px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 0;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover { filter: brightness(1.04); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover { border-color: var(--gold); }

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding: 34px;
  min-height: 280px;
}

.card-line {
  width: 68px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}

.hero-card h2 {
  font-size: 29px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-card p { color: rgba(255, 255, 255, 0.78); }

.section { padding: 82px 0; }

.split,
.form-grid,
.contact-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
}

.section h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -1px;
}

.section-copy {
  color: var(--muted);
  font-size: 17px;
}

.muted { background: var(--light); }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.focus-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px;
  min-height: 220px;
}

.focus-card h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 12px;
}

.focus-card p { color: var(--muted); }

.contact-form {
  display: grid;
  gap: 15px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 30px;
  box-shadow: 0 18px 45px rgba(12, 27, 42, 0.08);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(200, 162, 74, 0.24);
  border-color: var(--gold);
}

.hidden { display: none; }

.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-section h2 { color: var(--white); }

.contact-box { align-items: start; }

.contact-details {
  display: grid;
  gap: 10px;
  font-size: 17px;
}

.contact-details p { margin: 0; }

.contact-details a {
  color: var(--blue);
  text-decoration: none;
}

.contact-details a:hover { color: var(--gold); }

.site-footer {
  background: #07111d;
  color: rgba(255, 255, 255, 0.72);
  padding: 24px 0;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p { margin: 0; }

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .form-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .cards { grid-template-columns: repeat(2, 1fr); }
  nav { display: none; }
  .hero { padding: 72px 0; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand-text { font-size: 14px; }
  .cards { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  h1 { letter-spacing: -1px; }
}
