:root {
  --charcoal: #121212;
  --offwhite: #f3efe8;
  --orange: #f39a1e;
  --panel: #1a1a1a;
  --panel-soft: #202020;
  --muted: #c9c2b5;
  --line: #3a3630;
  --maxw: 1120px;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 90% 5%, rgba(243, 154, 30, 0.08), transparent 35%),
    linear-gradient(180deg, #111111 0%, var(--charcoal) 65%);
  color: var(--offwhite);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(243, 239, 232, 0.12);
  backdrop-filter: blur(10px);
  background: rgba(18, 18, 18, 0.85);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

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

.brand img {
  width: 52px;
  height: auto;
}

.brand span {
  font-family: "Barlow Condensed", "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

nav a.active,
nav a:hover {
  color: var(--offwhite);
  border-color: var(--orange);
}

.section {
  padding: 4.5rem 0;
}

.hero {
  padding: 5rem 0 3.5rem;
}

.eyebrow {
  display: inline-block;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: 0.9rem;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", "Oswald", sans-serif;
  line-height: 1.05;
  margin: 0 0 0.8rem;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.7rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--offwhite);
}

.lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
}

.card {
  background: linear-gradient(160deg, var(--panel-soft) 0%, var(--panel) 100%);
  border: 1px solid rgba(243, 239, 232, 0.12);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.trust-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.trust-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: #191919;
}

.btn-secondary {
  border-color: rgba(243, 239, 232, 0.2);
  color: var(--offwhite);
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 1rem;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kicker {
  color: var(--muted);
  margin-bottom: 1.4rem;
  max-width: 70ch;
}

.step-number {
  color: var(--orange);
  font-family: "Barlow Condensed", "Oswald", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.about-preview {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.headshot {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(243, 239, 232, 0.12);
}

.final-cta {
  text-align: center;
  padding: 2.2rem;
}

.site-footer {
  border-top: 1px solid rgba(243, 239, 232, 0.12);
  padding: 1.2rem 0 2.4rem;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.92rem;
  color: var(--muted);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(243, 239, 232, 0.2);
  background: #141414;
  color: var(--offwhite);
  padding: 0.75rem;
  border-radius: 10px;
  font: inherit;
}

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

.field-full {
  grid-column: 1 / -1;
}

.notice {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .about-preview,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .section {
    padding: 3.4rem 0;
  }
}
