:root {
  --blue: #1bbde8;
  --charcoal: #3c414c;
  --white: #ffffff;
  --light: #f5f5f5;
  --orange: #f46f0a;
  --blue-dark: #0fa3cc;
  --charcoal-light: #5a6070;
  --orange-dark: #d45e00;
  --shadow: 0 4px 24px rgba(60,65,76,0.10);
  --radius: 10px;
  --font-head: 'Barlow Condensed', 'Barlow', Arial, sans-serif;
  --font-body: 'Barlow', Arial, sans-serif;
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 2vw, 1.25rem);
  --space-md: clamp(1.25rem, 3vw, 2rem);
  --space-lg: clamp(2rem, 5vw, 3.5rem);
  --space-xl: clamp(3rem, 7vw, 5rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

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

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}

.section-header p {
  color: var(--charcoal-light);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.7em 1.6em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
  text-align: center;
  line-height: 1.3;
}

.btn:hover, .btn:focus-visible { transform: translateY(-2px); outline: 2px solid var(--blue); outline-offset: 3px; }

.btn-lg { font-size: 1.1rem; padding: 0.85em 2em; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-white:hover, .btn-white:focus-visible {
  background: var(--light);
  border-color: var(--light);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover, .btn-outline-white:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--charcoal);
  color: var(--white);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-block: 0.85rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--white);
  line-height: 1.2;
}

.logo-text strong {
  color: var(--blue);
  font-weight: 700;
}

nav[aria-label="Primary navigation"] ul {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

nav[aria-label="Primary navigation"] a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 0.25em 0.1em;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

nav[aria-label="Primary navigation"] a:hover,
nav[aria-label="Primary navigation"] a:focus-visible,
nav[aria-label="Primary navigation"] a[aria-current="page"] {
  color: var(--blue);
  border-bottom-color: var(--blue);
  outline: none;
}

nav[aria-label="Primary navigation"] [data-pn-cta] a {
  border-bottom: none;
  color: var(--white);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(60,65,76,0.88) 0%, rgba(27,189,232,0.38) 100%);
  z-index: 1;
}

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

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-xs);
  background: rgba(27,189,232,0.12);
  padding: 0.3em 0.9em;
  border-radius: 4px;
  border-left: 3px solid var(--blue);
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: var(--space-sm);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-md);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5em 1.1em;
  border-radius: 50px;
}

.badge-icon { font-size: 1em; }

.trust-strip {
  background: var(--charcoal);
  padding-block: var(--space-md);
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55em;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 600;
}

.trust-icon {
  font-size: 1.2em;
  color: var(--blue);
}

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

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

@media (min-width: 680px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .service-card--featured .service-card-img {
    border-radius: var(--radius) 0 0 var(--radius);
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .service-card--featured {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
  }
  .service-card--featured .service-card-img {
    border-radius: var(--radius) var(--radius) 0 0;
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 36px rgba(60,65,76,0.16);
  transform: translateY(-3px);
}

.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--light);
}

.service-card--featured .service-card-img {
  aspect-ratio: 4/3;
}

.service-card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex: 1;
}

.service-card-body h3 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.15;
}

.service-card-body p {
  color: var(--charcoal-light);
  font-size: 0.97rem;
  flex: 1;
}

.service-card-body .btn {
  align-self: flex-start;
  margin-top: var(--space-xs);
}

.service-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25em 0.7em;
  border-radius: 4px;
  align-self: flex-start;
}

.cta-strip {
  background: var(--blue);
  padding-block: var(--space-lg);
}

.cta-strip-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

@media (min-width: 700px) {
  .cta-strip-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-strip-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.35em;
}

.cta-strip-text p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  max-width: 520px;
}

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

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

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

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.team-card:hover {
  box-shadow: 0 8px 36px rgba(60,65,76,0.14);
  transform: translateY(-3px);
}

.team-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--charcoal);
}

.team-card-body {
  padding: var(--space-md);
}

.team-card-body h3 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.1em;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6em;
}

.team-card-body p:not(.team-role) {
  color: var(--charcoal-light);
  font-size: 0.97rem;
}

.team-cta {
  text-align: center;
}

.area {
  background: var(--light);
  padding-block: var(--space-xl);
}

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

@media (min-width: 760px) {
  .area-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.area-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.area-text p {
  color: var(--charcoal-light);
  margin-bottom: var(--space-sm);
}

.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem var(--space-sm);
  margin-bottom: var(--space-md);
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
  color: var(--charcoal);
  font-size: 1rem;
}

.area-list li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.area-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.contact-strip {
  background: var(--charcoal);
  padding-block: var(--space-xl);
}

.contact-strip-inner {
  display: flex;
  justify-content: center;
}

.contact-block {
  max-width: 600px;
  text-align: center;
}

.contact-block h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.contact-block > p {
  color: rgba(255,255,255,0.78);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: var(--space-md);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.6em;
  color: var(--blue);
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.15s;
}

.contact-method:hover, .contact-method:focus-visible {
  color: var(--white);
  outline: none;
}

.contact-method-icon {
  font-size: 1.2em;
}

.contact-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-md);
}

.site-footer {
  background: #2a2e37;
  padding-block: var(--space-lg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.footer-brand .logo-mark {
  width: 2rem;
  height: 2rem;
  font-size: 0.8rem;
}

.footer-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  max-width: 340px;
}

.footer-nav {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.15s;
}

.footer-nav a:hover, .footer-nav a:focus-visible {
  color: var(--blue);
  outline: none;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}



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

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(60,65,76,0.90) 0%, rgba(27,189,232,0.35) 100%);
  z-index: 1;
}

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

.about-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: var(--space-sm);
}

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

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

@media (min-width: 760px) {
  .about-story-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.about-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: var(--space-xs);
  display: block;
}

.about-story-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.about-story-text p {
  color: var(--charcoal-light);
  margin-bottom: var(--space-sm);
  font-size: 0.97rem;
}

.about-story-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

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

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

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

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-md);
  border-top: 4px solid var(--blue);
  transition: box-shadow 0.2s, transform 0.2s;
}

.value-card:hover {
  box-shadow: 0 8px 36px rgba(60,65,76,0.14);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  color: var(--blue);
}

.value-card h3 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.value-card p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.6;
}



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

.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(60,65,76,0.92) 0%, rgba(27,189,232,0.40) 100%);
  z-index: 1;
}

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

.contact-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: var(--space-sm);
}

.contact-main-section {
  background: var(--light);
  padding-block: var(--space-xl);
}

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

@media (min-width: 860px) {
  .contact-main-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-details-col h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.contact-details-col > p {
  color: var(--charcoal-light);
  margin-bottom: var(--space-md);
}

.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-card {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue);
}

.contact-card--emergency {
  border-left-color: var(--orange);
}

.contact-card-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-light);
}

.contact-card-value {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 800;
  color: var(--charcoal);
  word-break: break-all;
  transition: color 0.15s;
}

a.contact-card-value:hover,
a.contact-card-value:focus-visible {
  color: var(--blue);
  outline: none;
}

.contact-card--emergency .contact-card-value {
  color: var(--orange);
}

.contact-card-note {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  margin-top: 0.2rem;
}

.contact-hours {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: var(--shadow);
}

.contact-hours h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-sm);
}

.hours-table tr {
  border-bottom: 1px solid var(--light);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.6em 0.4em;
  font-size: 0.95rem;
  color: var(--charcoal);
  vertical-align: top;
}

.hours-table td:first-child {
  font-weight: 700;
  width: 55%;
}

.hours-table td:last-child {
  color: var(--blue);
  font-weight: 700;
}

.hours-note {
  font-size: 0.85rem;
  color: var(--charcoal-light);
}

.contact-area-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-area-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--charcoal);
}

.contact-area-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-area-body h3 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.15;
}

.contact-area-body p {
  color: var(--charcoal-light);
  font-size: 0.97rem;
}

.contact-area-body .area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem var(--space-sm);
  margin-block: 0;
}

.services-contact-strip {
  background: var(--white);
  padding-block: var(--space-xl);
}

.services-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

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

.service-contact-item {
  background: var(--light);
  border-radius: var(--radius);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  border-top: 4px solid var(--blue);
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-contact-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-contact-icon {
  font-size: 2rem;
  line-height: 1;
}

.service-contact-item h3 {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.15;
}

.service-contact-item p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  flex: 1;
}


/* 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;}
