@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #0F1E2E;
  --steel: #3B6E8F;
  --amber: #E8A33D;
  --paper: #F5F3EE;
  --ink: #1B2430;
  --line: #D8D3C7;
  --muted: #5C6672;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.65;
}

h1, h2, h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 0.01em; color: var(--navy); margin: 0 0 0.4em; }
h1 { font-size: 2.8rem; line-height: 1.05; }
h2 { font-size: 1.9rem; margin-top: 2.2em; }
h3 { font-size: 1.3rem; margin-top: 1.6em; }
p { margin: 0 0 1em; color: var(--ink); }
a { color: var(--steel); }

/* Road-line divider: dashed horizontal rule evoking a highway lane marking */
.roadline {
  height: 4px;
  margin: 2.5rem 0;
  background-image: repeating-linear-gradient(to right, var(--amber) 0, var(--amber) 28px, transparent 28px, transparent 46px);
  border: none;
}

header.site {
  background: var(--navy);
  color: #fff;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.site .brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: #fff;
  text-decoration: none;
}
header.site .brand span { color: var(--amber); }
header.site nav a {
  color: #C9D3DC;
  text-decoration: none;
  margin-left: 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
}
header.site nav a:hover { color: #fff; }

main { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
main.wide { max-width: 1040px; }

.hero {
  background: var(--navy);
  color: #fff;
  padding: 4.5rem 1.5rem 3.5rem;
}
.hero-inner { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.hero h1 { color: #fff; }
.hero .eyebrow { color: var(--amber); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 0.8rem; }
.hero p.lead { color: #C9D3DC; font-size: 1.1rem; max-width: 46ch; }

footer.site {
  background: var(--navy);
  color: #92A0AC;
  padding: 2.2rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}
footer.site a { color: #C9D3DC; }
footer.site .links a { margin: 0 0.7rem; }

/* Form */
form.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem;
}
form.lead-form label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin: 1.1rem 0 0.35rem;
  color: var(--ink);
}
form.lead-form label:first-child { margin-top: 0; }
form.lead-form input[type="text"],
form.lead-form input[type="tel"],
form.lead-form input[type="email"],
form.lead-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
}
form.lead-form textarea { min-height: 90px; resize: vertical; }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.4rem;
  padding: 0.9rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.consent-row input[type="checkbox"] { margin-top: 0.25rem; width: 16px; height: 16px; flex-shrink: 0; }
.consent-row label { font-weight: 400; font-size: 0.85rem; color: var(--muted); margin: 0; }
.consent-row a { color: var(--steel); }
button.submit {
  margin-top: 1.5rem;
  background: var(--amber);
  color: var(--navy);
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  cursor: pointer;
}
button.submit:hover { background: #f0b358; }

.callout {
  border-left: 3px solid var(--amber);
  background: #fff;
  padding: 1rem 1.3rem;
  font-size: 0.92rem;
  color: var(--muted);
  margin: 1.6rem 0;
}

@media (max-width: 760px) {
  .hero-inner { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
}
