:root {
  --bg: #2c2c2c;
  --text: #ffffff;
  --muted: #e7e7e7;
  --surface: #3a3a3a;
  --accent: #f3f3f3;
  --line: rgba(255, 255, 255, 0.26);
  --max: 980px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}

.hero {
  min-height: 74vh;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(42, 42, 42, 0.36), rgba(42, 42, 42, 0.16)),
    url("../images/rs-w-1920-m-3442e1408d.jpg") center/cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

.brand {
  padding-top: 30px;
  margin-top: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: clamp(1.375rem, 2.4vw, 1.8125rem);
  color: var(--muted);
  font-family: "Montserrat", "Source Sans 3", Arial, sans-serif;
}
.brand-subtitle {
  font-size: 62px !important;
  margin-top: 250px;
  margin-bottom: 8px;
  letter-spacing: 4px;
  font-weight: 400;
  font-size: clamp(1.375rem, 2.4vw, 1.8125rem);
  color: var(--muted);
}

.lead {
  margin: 14px 0 28px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  text-decoration: none;
  background: var(--accent);
  color: #111111;
  font-weight: 700;
  border-radius: 8px;
  padding: 11px 18px;
}
.btn.alt {
  margin-left: 10px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.hero-cta .btn.alt {
  margin-left: 0;
}

section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

#contact {
  background: #000000;
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
}

.sub {
  margin: 0 0 20px;
  color: var(--muted);
}

.contact-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  max-width: 760px;
}

.contact-box a { color: #a8d6ff; text-decoration: none; }
.contact-form { display: grid; gap: 12px; }
.contact-form label {
  font-size: 0.92rem;
  color: var(--muted);
  display: grid;
  gap: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #353535;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.submit-btn {
  justify-self: start;
  background: var(--text);
  color: #111111;
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}
.legal-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.legal-note a { color: #a8d6ff; text-decoration: none; }

footer {
  padding: 20px 0 32px;
  color: var(--muted);
  background: #2b2b2b;
  font-size: 0.95rem;
}

.footer-note {
  margin: 8px 0 0;
  font-size: 0.86rem;
}

.footer-note a {
  color: #a8d6ff;
  text-decoration: none;
  margin-left: 8px;
}
