:root {
  --navy:     #15264c;
  --navy-mid: #335f9e;
  --blue:     #1d70cf;
  --sky:      #69b9e4;
  --silver:   #d7dfe3;
  --bronze:   #a96135;
  --gold:     #f2b705;
  --white:    #ffffff;
  --light-bg: #f0f4f8;
  --text:     #1a1a2e;
  --text-mid: #444;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── Layout ─────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

.section        { padding: 5rem 0; }
.section--light { background: var(--light-bg); }
.section--dark  { background: var(--navy); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  text-align: center;
  margin-bottom: 3rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 0.65rem auto 0;
}
.section-title--light { color: var(--white); }

.section-intro {
  text-align: center;
  color: var(--text-mid);
  max-width: 640px;
  margin: -2rem auto 3rem;
  font-size: 1.05rem;
}

/* ─── Buttons ─────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: #ffc82e;
  border-color: #ffc82e;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(242,183,5,.35);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--blue:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
}

/* ─── Header / Nav ─────────────────────────── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 14px rgba(0,0,0,.35);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  padding-bottom: .75rem;
}
.site-logo img { height: 68px; width: auto; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.main-nav a {
  font-family: var(--font-head);
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color .2s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--sky); }

.main-nav .nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: .5rem 1.2rem;
  border-radius: 4px;
  font-weight: 700;
  transition: background .2s, transform .15s;
}
.main-nav .nav-cta:hover {
  background: #ffc82e;
  color: var(--navy);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ─────────────────────────────────── */
.hero {
  background: linear-gradient(140deg, var(--navy) 0%, #1b3869 55%, #1a4a8a 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23335f9e' fill-opacity='0.13'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}
.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(242,183,5,.12);
  border: 1px solid rgba(242,183,5,.5);
  color: var(--gold);
  padding: .4rem 1.1rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--silver);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ─── Services Grid ─────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid #dce5ef;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 3px 16px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,.12);
}
.service-icon {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .65rem;
}
.service-card p { color: var(--text-mid); margin-bottom: 1.25rem; }
.link-arrow {
  color: var(--blue);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .05em;
  font-size: .95rem;
  transition: color .2s;
}
.link-arrow:hover { color: var(--navy); }

/* Services Page — detailed list */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid #dce5ef;
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail__icon {
  font-size: 6rem;
  text-align: center;
  opacity: .85;
}
.service-detail h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .75rem;
}
.service-detail h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: .5rem;
}
.service-detail p { color: var(--text-mid); margin-bottom: 1rem; }
.service-bullets { margin: .75rem 0 1.25rem 1rem; }
.service-bullets li {
  color: var(--text-mid);
  margin-bottom: .4rem;
  padding-left: .5rem;
}
.service-bullets li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  margin-right: .5rem;
}

/* ─── Trust Section ─────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.trust-item { text-align: center; padding: 1.5rem 1rem; }
.trust-item__icon {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 1rem;
}
.trust-item h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .5rem;
}
.trust-item p { color: var(--silver); line-height: 1.7; font-size: .95rem; }

/* ─── CTA Banner ─────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--blue) 100%);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .65rem;
}
.cta-banner p { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ─── Service Area ─────────────────────────── */
.counties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.county-card {
  background: var(--white);
  border: 1px solid #dce5ef;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.county-card span {
  font-size: 2.2rem;
  display: block;
  margin-bottom: .6rem;
}
.county-card h3 {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .3rem;
}
.county-card p { color: var(--text-mid); font-size: .9rem; }

/* ─── Hours Table ─────────────────────────── */
.hours-block {
  background: var(--white);
  border: 1px solid #dce5ef;
  border-radius: 8px;
  padding: 2rem;
  max-width: 420px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.hours-block h3 {
  font-family: var(--font-head);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gold);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid #eef1f4;
  font-size: .95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-mid); }
.hours-row .time { color: var(--navy); font-weight: 600; }

/* ─── Gallery ─────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-placeholder {
  background: linear-gradient(135deg, #1b3869, #1d70cf);
  border-radius: 8px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .9rem;
  opacity: .6;
  gap: .5rem;
}
.gallery-placeholder span { font-size: 2rem; }
.gallery-note {
  background: rgba(242,183,5,.1);
  border: 1px solid rgba(242,183,5,.4);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  color: var(--gold);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .05em;
  text-align: center;
  margin-bottom: 2rem;
  font-size: .95rem;
}

/* ─── Contact ─────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-item__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.contact-item__label {
  font-family: var(--font-head);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy-mid);
  margin-bottom: .2rem;
}
.contact-item__value { color: var(--text); line-height: 1.7; overflow-wrap: break-word; word-break: break-word; }
.contact-item__value a { color: var(--blue); transition: color .2s; }
.contact-item__value a:hover { color: var(--navy); }

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid #dce5ef;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.contact-form h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
label {
  display: block;
  font-size: .85rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy-mid);
  margin-bottom: .4rem;
}
input, textarea, select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #c8d4e0;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  background: #fafcff;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,112,207,.12);
}
textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; font-size: 1.05rem; padding: 1rem; }

/* ─── Page Hero (inner pages) ─────────────── */
.page-hero {
  background: linear-gradient(140deg, var(--navy) 0%, #1b3a6e 100%);
  padding: 4rem 0;
  border-bottom: 3px solid var(--gold);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .5rem;
}
.page-hero p { color: var(--silver); font-size: 1.05rem; }
.breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  margin-bottom: .75rem;
  font-family: var(--font-head);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--sky); }
.breadcrumb a:hover { color: var(--white); }

/* ─── About section ─────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .75rem;
}
.about-text h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: .5rem;
}
.about-text p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.8; }
.about-image-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 8px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  gap: .75rem;
  border: 2px dashed rgba(105,185,228,.3);
}
.about-image-placeholder span { font-size: 3rem; opacity: .6; }

/* ─── Footer ─────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: var(--silver);
  padding: 4.5rem 0 0;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}
.footer-logo { height: 72px; width: auto; margin-bottom: 1rem; }
.footer-tagline { color: var(--gold); font-style: italic; font-size: .95rem; margin-bottom: .4rem; }
.footer-vet { color: var(--sky); font-size: .85rem; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .9rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a,
.footer-col a { color: var(--silver); transition: color .2s; overflow-wrap: break-word; word-break: break-word; }
.footer-col a:hover { color: var(--sky); }
.footer-col p { margin-bottom: .4rem; line-height: 1.7; color: var(--silver); overflow-wrap: break-word; word-break: break-word; }
.footer-insured {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(105,185,228,.1);
  border: 1px solid rgba(105,185,228,.3);
  color: var(--sky);
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .8rem;
  font-family: var(--font-head);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .75rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ─── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .contact-layout  { grid-template-columns: 1fr; }
  .about-grid      { grid-template-columns: 1fr; }
  .service-detail  { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f1e3c;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: .75rem 0 1.25rem;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 0; padding: 0 1.5rem; }
  .main-nav ul li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.06); }
  .main-nav a { display: block; padding: .8rem 0; }
  .main-nav .nav-cta { display: inline-block; margin: .75rem 0 .25rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .section { padding: 3.5rem 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-layout { gap: 2.5rem; }
  .contact-form { padding: 1.5rem; }
  /* Prevent iOS Safari from zooming in on input focus */
  input, textarea, select { font-size: 1rem; }
  .page-hero { padding: 2.5rem 0; }
}
