:root {
  --navy: #17356f;
  --navy-dark: #081d42;
  --ink: #171b24;
  --text: #2f3643;
  --muted: #667085;
  --mist: #f4f7fb;
  --white: #ffffff;
  --line: #d7deeb;
  --copper: #bf6a2c;
  --teal: #0d7f8f;
  --shadow: 0 18px 55px rgba(8, 29, 66, 0.16);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  background: var(--white);
}

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

a {
  color: inherit;
}

svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  z-index: 50;
  padding: 0.6rem 0.85rem;
  color: var(--white);
  background: var(--navy);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-name {
  max-width: 12rem;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.05;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.85rem, 2vw, 1.65rem);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--navy);
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.btn span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.header-call {
  padding: 0.72rem 0.9rem;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(23, 53, 111, 0.22);
}

.header-call:hover,
.btn:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: clamp(520px, 74svh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 29, 66, 0.98), rgba(8, 29, 66, 0.82)),
    var(--navy-dark);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--copper), var(--teal), var(--navy));
}

.hero-watermark {
  position: absolute;
  right: max(-2rem, calc((100vw - 1120px) / 2));
  bottom: -3rem;
  width: min(48vw, 560px);
  min-width: 290px;
  opacity: 0.17;
  filter: saturate(1.25);
}

.hero-watermark img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 5.25rem) 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--copper);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0a15f;
}

.hero-brand-caption {
  max-width: 850px;
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(2.35rem, 6.8vw, 5.25rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3.35rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

p {
  margin-top: 0;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  padding: 0.9rem 1.05rem;
  border: 2px solid transparent;
}

.btn-primary {
  color: var(--white);
  background: var(--copper);
  box-shadow: 0 14px 30px rgba(191, 106, 44, 0.28);
}

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

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.14);
}

.btn-large {
  min-height: 56px;
  padding-inline: 1.2rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  gap: 1px;
  margin: 2rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.quick-facts div {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.quick-facts dt {
  color: #f0a15f;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0.2rem 0 0;
  color: var(--white);
  font-weight: 800;
}

.problem-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.problem-list li {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  color: var(--ink);
  text-align: center;
  font-weight: 850;
  background: var(--white);
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.two-column,
.hours-layout,
.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.section-copy p,
.hours-layout p,
.about-layout p,
.contact-layout p,
.service-area p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-item,
.audience-grid > div,
.hours-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(8, 29, 66, 0.07);
}

.service-item {
  padding: 1.15rem;
}

.service-item-wide {
  grid-column: 1 / -1;
  border-color: rgba(13, 127, 143, 0.35);
  background: #f3fbfc;
}

.service-icon {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.service-item p,
.audience-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.audience-section,
.hours-section {
  background: var(--mist);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.audience-grid > div {
  padding: 1.25rem;
}

.hours-panel {
  padding: 0.4rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-row span {
  color: var(--muted);
  font-weight: 750;
}

.hours-row strong {
  color: var(--ink);
  text-align: right;
}

.service-area {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.about-layout {
  align-items: center;
}

.logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.logo-block img {
  width: min(440px, 92%);
}

.contact-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  color: var(--white);
  background: var(--navy-dark);
}

.contact-section h2,
.contact-section p {
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  justify-content: flex-end;
  align-self: center;
}

.contact-actions .btn {
  width: min(100%, 360px);
}

.contact-actions .btn-secondary {
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 2.4rem 0;
  background: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
}

.footer-inner img {
  width: 150px;
}

.footer-inner p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 0.25rem;
  font-weight: 800;
  text-align: right;
}

.footer-links a {
  color: var(--navy);
  text-decoration: none;
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand-name {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .header-call span {
    font-size: 0.92rem;
  }

  .hero {
    min-height: min(540px, 74svh);
  }

  .hero-watermark {
    right: -5rem;
    bottom: -2rem;
    opacity: 0.12;
  }

  .problem-list,
  .audience-grid,
  .two-column,
  .hours-layout,
  .about-layout,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .problem-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section-inner,
  .footer-inner,
  .hero-inner {
    width: min(100% - 24px, 1120px);
  }

  .header-call {
    width: 46px;
    padding-inline: 0;
  }

  .header-call span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero {
    min-height: min(540px, 74svh);
  }

  h1 {
    font-size: clamp(1.75rem, 8.2vw, 2.45rem);
  }

  .hero-brand-caption {
    font-size: clamp(2.15rem, 12.8vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .quick-facts {
    display: none;
  }

  .problem-list,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hours-row {
    display: grid;
    gap: 0.15rem;
  }

  .hours-row strong {
    text-align: left;
  }

  .logo-block {
    min-height: 230px;
  }
}
