:root {
  --navy: #08375f;
  --blue: #176b96;
  --gold: #fac728;
  --ink: #14202b;
  --muted: #5f6f7d;
  --line: #d8e2ea;
  --paper: #f7fafc;
  --white: #ffffff;
  --green: #19764c;
  --red: #b42318;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

a { color: inherit; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 5vw, 56px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand img {
  display: block;
  width: 176px;
  max-width: 44vw;
  height: auto;
}

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

nav a { text-decoration: none; color: var(--navy); }
nav a:hover { text-decoration: underline; text-underline-offset: 4px; }

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  align-items: center;
  gap: clamp(20px, 4vw, 52px);
  padding: clamp(24px, 6vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 24, 41, .74) 0%, rgba(3, 24, 41, .42) 44%, rgba(3, 24, 41, .18) 100%),
    url("assets/hero-houston-rentals.png");
  background-size: cover;
  background-position: center;
}

.hero-copy {
  max-width: 790px;
  padding-bottom: 18px;
}

.eyebrow,
.form-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lede {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, .9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.button.submit {
  background: var(--gold);
  border-color: #e4b400;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .58);
  background: transparent;
}

.lead-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  background: rgba(255, 255, 255, .98);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 24px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.lead-card > div,
.lead-card .submit,
.full {
  grid-column: 1 / -1;
}

.lead-card h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

input, select, textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cbd6df;
  border-radius: 8px;
  padding: 10px 11px;
  color: var(--ink);
  background: #fff;
}

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

.checkbox {
  grid-template-columns: 18px 1fr;
  align-items: center;
  color: var(--ink);
  font-weight: 750;
}

.checkbox input {
  width: 16px;
  height: 16px;
  padding: 0;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-band > div {
  background: #fff;
  padding: clamp(18px, 4vw, 34px);
}

.stat {
  display: block;
  color: var(--navy);
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1;
  font-weight: 950;
}

.proof-band p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 260px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(22px, 5vw, 72px);
  padding: clamp(34px, 7vw, 84px);
  background: #fff;
}

.split h2,
.request-anchor h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.copy-stack {
  color: #344454;
  font-size: 18px;
}

.copy-stack p:first-child { margin-top: 0; }

.request-anchor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(24px, 5vw, 48px) clamp(24px, 7vw, 84px);
  background: #e9f2f6;
  border-top: 1px solid var(--line);
}

.request-anchor p { color: var(--muted); margin-bottom: 0; }

.site-footer {
  padding: 22px clamp(16px, 5vw, 56px) 30px;
  color: #536170;
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.site-footer strong { color: var(--ink); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  font-weight: 800;
}

.footer-links a { color: var(--navy); }

@media (max-width: 920px) {
  .hero,
  .split,
  .proof-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .lead-card {
    max-width: 620px;
  }

  .request-anchor {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding: 24px 16px 34px;
  }

  h1 {
    font-size: 38px;
  }

  .lead-card {
    grid-template-columns: 1fr;
  }

  .split,
  .request-anchor {
    padding: 32px 16px;
  }
}
