/* =========================
   Navigation Dropdown
   ========================= */

nav {
    display:flex;
    align-items:center;
    gap:22px;
}

nav a {
    color: var(--dark);
    text-decoration:none;
    font-weight:bold;
}

.dropdown {
    position:relative;
    display:inline-block;
}

.dropdown-content {
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:240px;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    border-radius:6px;
    z-index:999;
}

.dropdown-content a {
    display:block;
    padding:12px 15px;
    color:var(--dark);
    border-bottom:1px solid #eee;
}

.dropdown-content a:last-child {
    border-bottom:none;
}

.dropdown-content a:hover {
    background:#f5f5f5;
}

.dropdown:hover .dropdown-content {
    display:block;
}

:root {
  --dark: #003544;
  --gold: #aa8f5c;
  --light: #f7f5ef;
  --text: #1e1e1e;
  --muted: #666;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo strong {
  display: block;
  color: var(--dark);
  font-size: 20px;
}

.logo span {
  font-size: 13px;
  color: var(--muted);
}

nav a {
  color: var(--dark);
  text-decoration: none;
  margin-left: 22px;
  font-weight: bold;
}

.hero {
  background: linear-gradient(135deg, var(--dark), #00566b);
  color: var(--white);
  padding: 90px 0;
}

.hero-grid,
.two-col,
.form-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 45px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  margin: 10px 0 20px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: var(--dark);
}

h3 {
  color: var(--dark);
}

.lead {
  font-size: 20px;
  max-width: 720px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn,
button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  border: 0;
  cursor: pointer;
}

.primary,
button {
  background: var(--gold);
  color: var(--white);
}

.secondary {
  background: var(--white);
  color: var(--dark);
}

.note {
  margin-top: 25px;
  font-size: 14px;
  opacity: .9;
}

.hero-card,
.card,
.box,
.lead-form {
  background: var(--white);
  color: var(--text);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(0,0,0,.15);
}

.hero-card ul {
  padding-left: 22px;
}

.section {
  padding: 75px 0;
}

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

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  box-shadow: none;
  border: 1px solid #e2ded2;
}

.business-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.business-list span {
  background: var(--white);
  border: 1px solid #ddd;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: bold;
  color: var(--dark);
}

.form-section {
  background: var(--dark);
  color: var(--white);
}

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

.privacy {
  color: #ddd;
  font-size: 14px;
}

.lead-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 16px;
  color: var(--dark);
}

input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

button {
  width: 100%;
  font-size: 17px;
}

.form-message {
  margin-top: 14px;
  font-weight: bold;
}

.small,
.disclaimer p {
  font-size: 14px;
  color: var(--muted);
}

.site-footer {
  background: #111;
  color: #ddd;
  padding: 25px 0;
  font-size: 14px;
}

@media (max-width: 850px) {
  .header-flex,
  .hero-grid,
  .two-col,
  .form-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }

  .hero {
    padding: 60px 0;
  }

  .section {
    padding: 55px 0;
  }
}