:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-red: #FF0000;
  --color-text: #111111;
  --color-muted: #666666;
  --color-rule: #E0E0E0;
  --content-width: 720px;
  --side-pad: 1.5rem;
}

@media (min-width: 768px) {
  :root {
    --side-pad: 2rem;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-white);
  color: var(--color-black);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  z-index: 100;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--color-black);
  outline-offset: 3px;
}

.band-black {
  background: var(--color-black);
  color: var(--color-white);
}

.site-header {
  position: relative;
  z-index: 10;
  padding: 1.25rem var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo {
  width: 150px;
  height: auto;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-nav a {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
  padding: 0.15rem 0;
}

.header-nav a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .header-nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0.5rem var(--side-pad) 1.25rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-black);
    border-top: 1px solid #333333;
  }
  .header-nav.nav-open ul {
    display: flex;
  }
  .header-nav a {
    padding: 0.7rem 0;
  }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
  .site-header {
    padding: 1.5rem var(--side-pad);
  }
  .site-header .logo {
    width: 180px;
  }
  .header-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .header-nav a {
    font-size: 12px;
  }
}

section {
  padding: 3rem 0;
}

section:not(.hero) {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
}

@media (min-width: 768px) {
  section {
    padding: 4.5rem 0;
  }
}

.rule-top {
  border-top: 1px solid var(--color-rule);
}

.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 3rem var(--side-pad) 3.5rem;
}

.hero-map {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-map svg {
  display: block;
  width: 100%;
  height: 100%;
}

.map-layer {
  transform: translate(0, 0);
  transition: transform 0.3s ease-out;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
}

.hero h1 {
  color: var(--color-white);
}

.headline-dot {
  color: var(--color-red);
}

.hero p {
  color: #E6E6E6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .hero {
    padding-top: 5rem;
    padding-bottom: 5.5rem;
  }
}

h1 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 44px;
  }
}

h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1.25rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.btn-primary {
  display: inline-block;
  background: var(--color-red);
  color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 0.9rem 1.75rem;
  border: none;
  border-radius: 0;
  margin-top: 0.5rem;
  cursor: pointer;
}

.btn-primary:hover {
  background: #D90000;
}

.hero-actions .btn-primary {
  margin-top: 0;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border: 2px solid var(--color-white);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.services {
  margin: 0;
}

.service {
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-rule);
}

.service:first-child {
  border-top: none;
  padding-top: 0;
}

.service:last-child {
  padding-bottom: 0;
}

.service-num {
  display: block;
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.services dt {
  font-weight: 700;
  color: var(--color-black);
  font-size: 18px;
  margin-bottom: 0.4rem;
}

.services dd {
  margin: 0;
  color: var(--color-text);
}

.service-fit {
  margin: 0.65rem 0 0;
  font-size: 14px;
  color: var(--color-muted);
}

.fit-label {
  font-weight: 600;
  color: var(--color-text);
}

.services-accent {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.background-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.headshot {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
}

.cpted-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cpted-badge-inline {
  width: 130px;
  height: auto;
}

@media (min-width: 640px) {
  .background-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .headshot {
    width: 200px;
    height: 200px;
    flex: none;
  }

  .background-copy {
    flex: 1;
    min-width: 0;
  }
}


.contact-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin: 0 0 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-rule);
}

.contact-highlight-item {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  text-decoration: none;
}

.contact-highlight-item:hover {
  text-decoration: underline;
}

.contact-highlight-item.phone {
  color: var(--color-red);
}

@media (min-width: 768px) {
  .contact-highlight-item {
    font-size: 26px;
  }
}

form {
  margin-top: 1.5rem;
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.field input,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid #B3B3B3;
  padding: 0.65rem 0.75rem;
}

.field textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
}

.site-footer {
  padding: 2.5rem var(--side-pad);
  font-size: 15px;
  color: #CCCCCC;
}

.site-footer p {
  margin: 0 0 0.5rem;
}

.footer-main {
  margin-bottom: 1.5rem;
}

.footer-main p:last-child {
  margin-bottom: 0;
}

.footer-contact {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid #333333;
}

.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-contact li:last-child {
  margin-bottom: 0;
}

.footer-contact .label {
  font-weight: 700;
  color: var(--color-white);
}

.footer-contact a {
  color: var(--color-white);
  font-weight: 700;
  font-size: 17px;
  text-decoration: underline;
}

.copyright {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
