

:root {
  --red: #f41b23;
  --red-dark: #c8151c;
  --white: #ffffff;
  --charcoal: #252525;
  --body-text: #383838;
  --gold: #fede9a;
  --olive: #466129;
  --light-bg: #f7f7f7;
  --border: #e5e5e5;

  --font: 'Open Sans', sans-serif;

  --radius: 6px;
  --radius-lg: 12px;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 2vw, 1rem);
  --space-md: clamp(1.25rem, 3vw, 2rem);
  --space-lg: clamp(2rem, 5vw, 3.5rem);
  --space-xl: clamp(3rem, 8vw, 6rem);

  --container: 1180px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

svg {
  fill: currentColor;
  flex-shrink: 0;
}

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}




.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.7em 1.6em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--lg {
  font-size: 1.05rem;
  padding: 0.9em 2em;
}

.btn--full {
  width: 100%;
}

.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--red);
}

.btn--outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--body-text);
  border-color: var(--border);
}

.btn--ghost-dark:hover {
  background: var(--light-bg);
}




.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.section-header__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5em;
}

.section-header__label--light {
  color: var(--gold);
}

.section-header__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.75em;
}

.section-header--light .section-header__title {
  color: var(--white);
}

.section-header__sub {
  color: var(--body-text);
  font-size: 1rem;
  font-weight: 300;
}




.topbar {
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5em 0;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1.5em;
  align-items: center;
  justify-content: flex-end;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.topbar__item a {
  color: var(--white);
  transition: opacity 0.2s;
}

.topbar__item a:hover {
  opacity: 0.8;
}

.topbar__icon {
  width: 14px;
  height: 14px;
  opacity: 0.85;
}

.topbar__hours {
  display: none;
}

@media (min-width: 640px) {
  .topbar__hours {
    display: flex;
  }
}




.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  height: var(--header-h);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6em;
  flex-shrink: 0;
}

.logo__box {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.logo__text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
}

.logo__text strong {
  font-weight: 800;
  display: block;
}

.logo--footer .logo__text {
  color: var(--white);
}

.nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 0.4em 0.75em;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover,
.nav__link--active {
  color: var(--red);
  background: rgba(244,27,35,0.06);
}

.nav__cta {
  margin-left: 0.75rem;
  font-size: 0.88rem;
  padding: 0.5em 1.2em;
  display: none;
}

@media (min-width: 640px) {
  .nav__cta {
    display: inline-flex;
  }
}

@media (max-width: 420px) {
  .nav__list {
    gap: 0;
  }
  .nav__link {
    font-size: 0.8rem;
    padding: 0.4em 0.5em;
  }
}




.hero {
  position: relative;
  min-height: clamp(480px, 80vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__img-wrap {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20, 10, 10, 0.82) 0%,
    rgba(20, 10, 10, 0.55) 55%,
    rgba(20, 10, 10, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-block: var(--space-xl);
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75em;
}

.hero__heading {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.6em;
}

.hero__heading span {
  color: var(--red);
}

.hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 2em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}




.trust-bar {
  background: var(--charcoal);
  padding: var(--space-md) 0;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-item__icon {
  width: 22px;
  height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}




.services {
  padding: var(--space-xl) 0;
  background: var(--light-bg);
}

.services__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.service-card--featured {
  border-top: 4px solid var(--red);
}

.service-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-card:hover .service-card__img {
  transform: scale(1.04);
}

.service-card__body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.service-card__icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(244,27,35,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 0.25em;
  flex-shrink: 0;
}

.service-card__icon-wrap svg {
  width: 22px;
  height: 22px;
}

.service-card__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
}

.service-card__body p {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--body-text);
  flex: 1;
}

.service-card__link {
  display: inline-block;
  margin-top: 0.75em;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red);
  transition: gap 0.2s, color 0.2s;
}

.service-card__link:hover {
  color: var(--red-dark);
  text-decoration: underline;
}




.about {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 780px) {
  .about__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.about__img-col {
  position: relative;
}

.about__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.about__badge {
  position: absolute;
  bottom: -1rem;
  right: -0.5rem;
  background: var(--red);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 4px 20px rgba(244,27,35,0.35);
}

@media (min-width: 780px) {
  .about__badge {
    bottom: -1.5rem;
    right: -1.5rem;
  }
}

.about__badge-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.1;
}

.about__badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about__text-col {
  padding-top: 1rem;
}

.about__text-col h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.6em;
  margin-top: 0.4em;
}

.about__lead {
  font-size: 1rem;
  font-weight: 400;
  color: var(--body-text);
  margin-bottom: 1.25em;
}

.about__list {
  margin-bottom: 2em;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

.about__list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--olive);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}




.gallery {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  background: var(--light-bg);
}

.gallery .section-header {
  margin-bottom: var(--space-md);
}

.gallery__strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: var(--space-md);
}

@media (min-width: 640px) {
  .gallery__strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .gallery__strip {
    grid-template-columns: repeat(5, 1fr);
  }
}

.gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery__item:hover img {
  transform: scale(1.06);
}




.why {
  background: var(--charcoal);
  padding: var(--space-xl) 0;
}

.why__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .why__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: background 0.25s, border-color 0.25s;
}

.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(244,27,35,0.4);
}

.why-card__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.5em;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5em;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.65;
}




.contact {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.contact__inner {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 780px) {
  .contact__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.contact__info h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.5em;
  margin-top: 0.4em;
}

.contact__intro {
  font-size: 0.95rem;
  color: var(--body-text);
  margin-bottom: 1.75em;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}

.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85em;
}

.contact__icon {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 0.15em;
}

.contact__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.2em;
}

.contact__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.5;
  transition: color 0.2s;
}

a.contact__value:hover {
  color: var(--red);
}

.contact__cta-box {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact__cta-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.1em;
}

.contact__cta-box p {
  font-size: 0.9rem;
  color: var(--body-text);
  margin-bottom: 0.5em;
}




.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding-top: var(--space-lg);
}

.site-footer__inner {
  display: grid;
  gap: var(--space-md) var(--space-lg);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 640px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .site-footer__inner {
    grid-template-columns: 2fr 1fr 1.5fr;
  }
}

.site-footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75em;
  font-weight: 300;
}

.site-footer__nav h4,
.site-footer__contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 1em;
}

.site-footer__nav ul,
.site-footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.site-footer__nav a,
.site-footer__contact a,
.site-footer__contact li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  transition: color 0.2s;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover {
  color: var(--white);
}

.site-footer__bottom {
  padding: 1.25rem 0;
  background: rgba(0,0,0,0.2);
}

.site-footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}


.about-hero {
  position: relative;
  min-height: clamp(380px, 60vh, 580px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero__img-wrap {
  position: absolute;
  inset: 0;
}

.about-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20, 10, 10, 0.85) 0%,
    rgba(20, 10, 10, 0.58) 55%,
    rgba(20, 10, 10, 0.32) 100%
  );
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-block: var(--space-xl);
}

.about-values {
  padding: var(--space-xl) 0;
  background: var(--light-bg);
}

.values-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}

.value-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.11);
  transform: translateY(-4px);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(244,27,35,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1em;
}

.value-card__icon svg {
  width: 24px;
  height: 24px;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5em;
  line-height: 1.25;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--body-text);
  font-weight: 400;
  line-height: 1.65;
}

.about-services {
  background: var(--charcoal);
  padding: var(--space-xl) 0;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.services-list__item {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 780px) {
  .services-list__item {
    grid-template-columns: 1fr 1fr;
  }

  .services-list__item--reverse .services-list__img-wrap {
    order: 2;
  }

  .services-list__item--reverse .services-list__body {
    order: 1;
  }
}

.services-list__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.services-list__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.services-list__item:hover .services-list__img-wrap img {
  transform: scale(1.04);
}

.services-list__body {
  padding: var(--space-sm) 0;
}

.services-list__body h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.6em;
  line-height: 1.2;
}

.services-list__body p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5em;
}

.about-team {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.about-team__inner {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 780px) {
  .about-team__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.about-team__text {
  order: 1;
}

.about-team__text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.75em;
  margin-top: 0.4em;
}

.about-team__text p {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 1em;
}

.about-team__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  order: 2;
}

.about-team__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.contact-hero {
  position: relative;
  min-height: clamp(340px, 55vh, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-hero__img-wrap {
  position: absolute;
  inset: 0;
}

.contact-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20, 10, 10, 0.84) 0%,
    rgba(20, 10, 10, 0.58) 55%,
    rgba(20, 10, 10, 0.32) 100%
  );
}

.contact-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-block: var(--space-xl);
}

.contact-map-section {
  padding: var(--space-xl) 0;
  background: var(--light-bg);
}

.contact-coverage {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .contact-coverage {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .contact-coverage {
    grid-template-columns: repeat(3, 1fr);
  }
}

.coverage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}

.coverage-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.coverage-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.coverage-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.coverage-card:hover .coverage-card__img-wrap img {
  transform: scale(1.04);
}

.coverage-card__body {
  padding: var(--space-md);
}

.coverage-card__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5em;
}

.coverage-card__body p {
  font-size: 0.9rem;
  color: var(--body-text);
  font-weight: 400;
  line-height: 1.65;
}

.contact__cta-divider {
  height: 1px;
  background: var(--border);
  margin: 0.25rem 0;
}

.contact__service-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--body-text);
  margin-bottom: 0.6em !important;
}

.contact__service-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.contact__service-btns .btn {
  font-size: 0.82rem;
  padding: 0.5em 1em;
  white-space: nowrap;
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
