/* ==========================================================================
   Virginia Business Visuals — Site Styles
   ========================================================================== */
:root {
  --navy: #0e2038;
  --navy-2: #16304f;
  --ink: #1c2733;
  --slate: #4c5b6b;
  --mist: #eef2f6;
  --paper: #ffffff;
  --gold: #c99a3c;
  --gold-2: #b3872e;
  --teal: #0f6e63;
  --line: #dde4ec;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(14, 32, 56, 0.10);
  --font: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { line-height: 1.2; color: var(--navy); font-weight: 700; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
p.lead { font-size: 1.2rem; color: var(--slate); }

.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; font-weight: 700; color: var(--gold-2); margin-bottom: 12px;
}

/* --------------------------------------------------------------- header */
.topbar {
  background: var(--navy); color: #cfd9e5; font-size: 0.85rem;
  padding: 7px 0; text-align: center;
}
.topbar a { color: #ffffff; font-weight: 600; }
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.97); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1220px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 8px; flex: none;
  background: linear-gradient(135deg, var(--navy) 55%, var(--teal));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 15px;
  letter-spacing: 0.02em;
}
.brand-name { font-weight: 800; color: var(--navy); font-size: 1.05rem; line-height: 1.15; }
.brand-name small { display: block; font-weight: 600; color: var(--slate); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
nav.main { display: flex; gap: 26px; align-items: center; }
nav.main a { color: var(--ink); font-weight: 600; font-size: 0.95rem; }
nav.main a:hover { color: var(--teal); text-decoration: none; }
.nav-cta {
  background: var(--gold); color: var(--navy) !important; padding: 10px 18px;
  border-radius: 8px; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-2); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--navy); cursor: pointer; }

/* --------------------------------------------------------------- hero */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(15,110,99,0.35), transparent 60%),
    radial-gradient(900px 480px at -10% 110%, rgba(201,154,60,0.25), transparent 55%),
    var(--navy);
  color: #e8eef5; padding: 84px 0 72px;
}
.hero h1 { color: #ffffff; max-width: 780px; }
.hero p.lead { color: #b9c7d6; max-width: 640px; margin: 20px 0 32px; }
.hero .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 14px 26px; border-radius: 9px;
  font-weight: 700; font-size: 1rem; text-decoration: none; border: 2px solid transparent;
}
.btn:hover { text-decoration: none; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost { border-color: rgba(255,255,255,0.45); color: #ffffff; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--mist); }

/* --------------------------------------------------------------- trust bar */
.trustbar { background: var(--mist); border-bottom: 1px solid var(--line); }
.trustbar ul {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 34px;
  justify-content: center; padding: 16px 24px; max-width: 1120px; margin: 0 auto;
  font-size: 0.92rem; font-weight: 600; color: var(--slate);
}
.trustbar li::before { content: "✓ "; color: var(--teal); font-weight: 800; }

/* --------------------------------------------------------------- sections */
section.block { padding: 72px 0; }
section.block.alt { background: var(--mist); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--slate); margin-top: 12px; font-size: 1.05rem; }

.grid { display: grid; gap: 26px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: 0 2px 6px rgba(14,32,56,0.04);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 0.97rem; }
.card .price { color: var(--gold-2); font-weight: 800; font-size: 1.15rem; margin: 8px 0 4px; }
.card a.more { font-weight: 700; display: inline-block; margin-top: 12px; }
.card-icon {
  width: 46px; height: 46px; border-radius: 9px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--mist), #dbe7ef);
  display: grid; place-items: center; font-size: 1.3rem;
}

/* --------------------------------------------------------------- steps */
.steps { counter-reset: step; display: grid; gap: 22px; grid-template-columns: repeat(5, 1fr); }
.step { position: relative; padding-top: 54px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--gold); font-weight: 800;
  display: grid; place-items: center; font-size: 1.05rem;
}
.step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.step p { font-size: 0.9rem; color: var(--slate); }

/* --------------------------------------------------------------- tables */
table.pricing { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
table.pricing th { background: var(--navy); color: #fff; text-align: left; padding: 14px 18px; font-size: 0.95rem; }
table.pricing td { padding: 14px 18px; border-top: 1px solid var(--line); vertical-align: top; font-size: 0.96rem; }
table.pricing td.price { white-space: nowrap; font-weight: 800; color: var(--gold-2); }
table.pricing tr:nth-child(even) td { background: #fafbfd; }

/* --------------------------------------------------------------- coverage */
.zones { display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); }
.zone { border-left: 4px solid var(--gold); background: #fff; border-radius: 0 var(--radius) var(--radius) 0; padding: 24px 26px; box-shadow: 0 2px 6px rgba(14,32,56,0.05); }
.zone h3 { margin-bottom: 6px; }
.zone .areas { font-weight: 600; color: var(--teal); font-size: 0.92rem; margin-bottom: 8px; }
.zone p { color: var(--slate); font-size: 0.94rem; }

/* --------------------------------------------------------------- cleared band */
.cleared-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  color: #dbe4ee; border-radius: var(--radius); padding: 44px 46px;
  display: flex; gap: 36px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.cleared-band h2 { color: #fff; margin-bottom: 10px; }
.cleared-band p { max-width: 620px; color: #b9c7d6; }

/* --------------------------------------------------------------- faq */
.faq details { border: 1px solid var(--line); border-radius: 8px; margin-bottom: 12px; background: #fff; }
.faq summary { cursor: pointer; font-weight: 700; padding: 16px 20px; color: var(--navy); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold-2); font-weight: 800; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 20px 16px; color: var(--slate); }

/* --------------------------------------------------------------- forms */
form.request { display: grid; gap: 18px; }
form.request .row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
label { font-weight: 700; font-size: 0.9rem; color: var(--navy); display: block; margin-bottom: 6px; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #c4cfda; border-radius: 8px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--teal); border-color: var(--teal); }
.form-note {
  background: #fdf6e8; border: 1px solid #ecd9ac; border-radius: 8px;
  padding: 14px 18px; font-size: 0.9rem; color: #6b5518;
}
.form-warning {
  background: #f6e9e7; border: 1px solid #ddb8b2; border-radius: 8px;
  padding: 14px 18px; font-size: 0.9rem; color: #7a2e22; font-weight: 600;
}

/* --------------------------------------------------------------- footer */
footer.site {
  background: var(--navy); color: #a9b8c8; padding: 60px 0 30px; margin-top: 0;
  font-size: 0.93rem;
}
footer.site h4 { color: #ffffff; font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
footer.site a { color: #c9d5e2; }
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 40px; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; }

/* --------------------------------------------------------------- misc */
.breadcrumbs { font-size: 0.85rem; color: var(--slate); padding: 18px 0 0; }
.breadcrumbs a { color: var(--slate); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pill { background: var(--mist); border: 1px solid var(--line); color: var(--navy); font-weight: 600; font-size: 0.85rem; padding: 7px 14px; border-radius: 999px; }
.notice { background: var(--mist); border-left: 4px solid var(--teal); padding: 18px 22px; border-radius: 0 8px 8px 0; color: var(--slate); font-size: 0.95rem; }
.placeholder-media {
  border-radius: var(--radius); background: linear-gradient(135deg, #d9e2ec, #c2d1de);
  min-height: 260px; display: grid; place-items: center; color: #5c6f82;
  font-weight: 600; font-size: 0.9rem; text-align: center; padding: 20px; border: 1px dashed #a9bccb;
}

/* --------------------------------------------------------------- responsive */
@media (max-width: 900px) {
  .grid.cols-3, .grid.cols-4, .zones { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav.main {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 18px 24px; gap: 16px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow); align-items: flex-start;
  }
  nav.main.open { display: flex; }
  .nav-toggle { display: block; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4, .zones { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  form.request .row { grid-template-columns: 1fr; }
  footer.site .cols { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 48px; }
  section.block { padding: 52px 0; }
}

/* --------------------------------------------------------------- imagery */
.tile { border-radius: var(--radius); overflow: hidden; position: relative; }
.tile img { width: 100%; height: 190px; object-fit: cover; display: block; transition: transform .35s ease; }
.tile:hover img { transform: scale(1.05); }
.tile .tag {
  position: absolute; bottom: 10px; left: 10px; background: rgba(14,32,56,0.78);
  color: #fff; font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border-radius: 999px;
}
.figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.figure img { display: block; width: 100%; height: auto; }
.figure.fill { height: 100%; }
.figure.fill img { height: 100%; object-fit: cover; }
