.imgleft{float:left;margin-right:10px;}.imgright{float:right;margin-left:10px;}.tbl th,.tbl td{padding:15px;text-align:left;}.tbl{width:100%;}.tbl tr:nth-child(even){background-color:var(--gold);}.tbl tr:nth-child(odd){background-color:var(--blue-soft);}.tbl th{background-color:var(--blue);color:white;}.ttltoc a{text-decoration:none;color:#4a4a4a;background-color:#f5f5f5}.ttltoc{text-align:left;font-weight:600;}.toc ul,.toc ol{margin-left:-30px;}.toc ul li,.toc ol li{list-style:none;margin-bottom:8px;}.toc ul li::before{content:'•';color:#4a4a4a;display:inline-block;width:1em;}.toc{color:#4a4a4a;background:#f6f6f6 none repeat scroll 0 0;border:1px solid #aaa;margin-bottom:1em;display:table;font-size:20px;width:auto;padding:18px;}.atoc::before{display:inline-block;padding-right:5px;content:'•';}.atoc::before{display:inline-block;padding-right:5px;content:'•';}.atoc{margin-bottom:5px;margin-left:17px;}



:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #666666;
  --border: #d9d9d9;
  --panel: #f7f9fc;
  --black: #111111;
  --blue: #1f5fae;
  --blue-hover: #184d8f;
  --blue-soft: #eef5ff;
  --gold: #d4af37;
  --gold-hover: #bf9821;
  --gold-border: #9b7a14;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

h1, h2, h3,
.menu a,
.dropdown-toggle,
.hero-overlay h1,
.hero-kicker,
.hero-sub,
.hero-call-btn,
.hero-hours,
.action-btn {
  font-family: "Oswald", Arial, sans-serif;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--black);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

button,
input,
textarea {
  font: inherit;
}

p,
li,
input,
textarea {
  font-weight: 400;
  letter-spacing: 0.4px;
}

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 50;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.logo-area {
  flex: 0 0 auto;
  width: 650px;
  max-width: 100%;
}

.logo-link {
  display: block;
  width: 100%;
}

.logo-area img {
  width: 100%;
  height: auto;
}

.header-right {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.nav-social-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.mobile-menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--blue);
  border-radius: 10px;
  background: var(--blue-soft);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex: 0 0 auto;
}

.mobile-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.main-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px 18px;
}

.menu > li > a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 0;
  background: transparent;
  border: 0;
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.menu > li > a:hover,
.menu > li > a:focus,
.dropdown-toggle:hover,
.dropdown-toggle:focus {
  color: var(--blue-hover);
  text-decoration: none;
}

.dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
}

.nav-item {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 250px;
  margin: 0;
  padding: 12px;
  list-style: none;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.nav-item.open .dropdown-menu {
  display: block;
}

.dropdown-menu li + li {
  margin-top: 8px;
}

.dropdown-menu a,
.dropdown-menu li {
  display: block;
  color: var(--blue);
  font-size: 15px;
  line-height: 1.5;
  text-transform: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  color: var(--blue-hover);
  text-decoration: none;
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}

.social-btn {
  appearance: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.callout-box {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.callout-box a {
  display: inline-block;
}

.callout-box img {
  width: 400px;
  max-width: 100%;
  height: auto;
}

.hero-banner {
  position: relative;
  max-width: 1599px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 50px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.42) 38%,
    rgba(0, 0, 0, 0.10) 70%,
    rgba(0, 0, 0, 0.00) 100%
  );
}

.hero-copy {
    max-width: 100%;
  text-align: left;
}

.hero-kicker {
  margin: 0 0 12px;
  display: block;
  width: fit-content;
max-width: 100%;
  padding: 7px 12px;
  background: rgba(31, 95, 174, 0.92);
  color: #ffffff;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-overlay h1 {
  margin: 0;
  display: inline-block;
  padding: 14px 22px;
  background: rgba(0, 0, 0, 0.72);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-sub {
  margin: 14px 0 0;
  display: inline-block;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: #ffffff;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 1.3;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.hero-cta-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  background: var(--gold);
  color: #000000;
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.hero-call-btn:hover,
.hero-call-btn:focus {
  background: var(--gold-hover);
  text-decoration: none;
}

.hero-hours {
  display: inline-block;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.58);
  border-radius: 6px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.page-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24%;
  gap: 24px;
  align-items: start;
}

.main-content,
.sidebar {
  min-width: 0;
}

.content-box,
.sidebar-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 20px;
}

.content-box h1,
.sidebar-box h2 {
  margin: 0 0 14px;
  line-height: 1.2;
  color: var(--black);
}

.content-placeholder {
  min-height: 420px;
}

.contact-box p {
  margin: 10px 0 0;
}

.sidebar-box form,
.quote-form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #bdbdbd;
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
  text-transform: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
  text-transform: none;
}

input:focus,
textarea:focus,
button:focus,
a:focus {
  outline: 3px solid rgba(212, 175, 55, 0.35);
  outline-offset: 2px;
}

.action-btn {
  appearance: none;
  background: var(--gold);
  color: #000000;
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 12px 16px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.action-btn:hover,
.action-btn:focus {
  background: var(--gold-hover);
  border-color: #87670d;
  text-decoration: none;
}

.map-wrap {
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.image-box img {
  margin: 0 auto;
}

.site-footer {
  background: #fafafa;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 18px;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 12px;
}

.footer-nav a {
  color: var(--black);
  font-weight: 600;
  text-transform: uppercase;
}

.footer-inner p {
  margin: 6px 0;
}

@media (min-width: 769px) {
  .hero-banner,
  .hero-overlay {
    height: 350px;
  }

  .hero-banner img {
    height: 350px;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 1200px) {
  .nav-social-bar {
    gap: 14px;
  }

  .menu {
    gap: 10px 16px;
  }

  .menu > li > a,
  .dropdown-toggle {
    font-size: 15px;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .logo-area {
    width: 100%;
    max-width: 100%;
  }

  .header-right {
    width: 100%;
    align-items: stretch;
    gap: 10px;
  }

  .nav-social-bar {
    justify-content: space-between;
  }

  .callout-box {
    justify-content: flex-start;
  }

  .page-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 12px 14px;
    gap: 8px;
  }

  .logo-area,
  .logo-link,
  .logo-area img {
    width: 100%;
    max-width: 100%;
  }

  .nav-social-bar {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
  }

  .main-nav.is-open {
    display: block;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
  }

  .menu > li > a,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
  }

  .nav-item {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
    background: var(--panel);
  }

  .social-row {
    justify-content: flex-end;
    margin-left: auto;
  }


  .callout-box img {
    width: 100%;
    max-width: 400px;
  }

  .page-wrap {
    padding: 20px 14px;
    gap: 18px;
  }

  .content-box,
  .sidebar-box {
    padding: 16px;
    margin-bottom: 18px;
  }

  .map-wrap iframe {
    height: 220px;
  }

  .hero-banner {
    position: relative;
    min-height: 260px;
  }

  .hero-banner img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.30) 55%,
      rgba(0, 0, 0, 0.18) 100%
    );
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .hero-kicker {
    margin: 0 0 8px;
    padding: 5px 8px;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.6px;
  }

  .hero-overlay h1 {
    display: inline-block;
    margin: 0;
    padding: 8px 10px;
    font-size: clamp(22px, 7vw, 32px);
    line-height: 1.05;
    border-left-width: 3px;
  }

  .hero-sub {
    display: inline-block;
    margin: 8px 0 0;
    padding: 5px 8px;
    font-size: 14px;
    line-height: 1.2;
  }

  .hero-cta-row {
    margin-top: 10px;
    gap: 8px;
    justify-content: center;
  }

  .hero-call-btn {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 15px;
  }

  .hero-hours {
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1.2;
  }

}

