/* ====================== GLOBAL / BASE STYLES ====================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  line-height: 24px;
  color: #202020;
  background-color: #ffffff;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====================== SECTION 1: HEADER SECTION ====================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: #ffffff;
  border-bottom: 1px solid #e7e7e7;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 370px;
  height: 65px;
  flex: 0 0 370px;
}

.logo {
  width: 370px;
  max-width: 370px;
  height: 65px;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.6px;
  line-height: 20px;
  color: #1f1f1f;
  text-transform: none;
  transition: color 0.25s ease-in-out;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: #7a0d0d;
}

/* Slide-in underline from left — text links only, not the FB icon */
.nav-list li:not(:last-child) a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #7a0d0d;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.nav-list li:not(:last-child) a:hover::after,
.nav-list li:not(:last-child) a:focus-visible::after {
  transform: scaleX(1);
}

.social-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.fb-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Header: gray by default, full blue on hover */
.nav-list .fb-icon-link img {
  filter: grayscale(100%) brightness(1.35);
  transition: filter 0.3s ease;
}

.nav-list .fb-icon-link:hover img,
.nav-list .fb-icon-link:focus-visible img {
  filter: grayscale(0%) brightness(1);
}

/* Footer: grow on hover */
.footer-social .fb-icon-link {
  transition: transform 0.25s ease;
}

.footer-social .fb-icon-link:hover,
.footer-social .fb-icon-link:focus-visible {
  transform: scale(1.18);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #1f1f1f;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.is-active .menu-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ====================== SECTION 2: HERO SECTION ====================== */
.hero-section {
  position: relative;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2000ms ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 0.25), rgba(15, 15, 15, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.hero-content h1 {
  margin: 0 0 18px;
  font-size: 47px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.3px;
  line-height: 56px;
  color: #ffffff;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.35);
}

.hero-cta-wrap {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.hero-25-img {
  width: 198px;
  height: 169px;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-button {
  display: inline-block;
  margin-bottom: 0;
  padding: 10px 24px;
  border-radius: 30px;
  background-color: #7a0d0d;
  border: 2px solid #ffffff;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1.2px;
  line-height: 18px;
  color: #ffffff;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-button:hover,
.hero-button:focus-visible {
  background-color: #560808;
  transform: translateY(-1px);
}

.hero-content p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.8px;
  line-height: 28px;
  color: #ffffff;
}

/* ====================== SECTION 3: LOCAL CARE INTRO SECTION ====================== */
.intro-band {
  background-color: #590707;
  padding: 22px 0;
}

.intro-band p {
  margin: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 30px;
  color: #ffffff;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: start;
  gap: 38px;
  padding-top: 50px;
  padding-bottom: 64px;
}

.intro-text h2 {
  margin: 0 0 18px;
  font-size: 44px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.3px;
  line-height: 50px;
  color: #22334f;
}

.intro-text h3 {
  margin: 16px 0 12px;
  font-size: 26px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 35px;
  color: #22334f;
}

.intro-text p {
  margin: 0 0 16px;
  font-size: 19px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.6px;
  line-height: 30px;
  color: #2c2c2c;
}

.intro-text ul {
  margin-top: 12px;
}

.intro-text li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 24px;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0px;
  line-height: 24px;
  color: #222222;
}

.intro-text li::before {
  content: "\2665";
  position: absolute;
  left: 0;
  top: 0;
  color: #7a0d0d;
  font-size: 22px;
  line-height: 24px;
}

.intro-image img {
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.intro-image-caption {
  margin: 10px 0 0;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.2px;
  line-height: 20px;
  color: #555555;
}

/* ====================== SECTION 4: CTA BANNER SECTION ====================== */
.cta-banner {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/parallax1.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(18, 18, 18, 0.35);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner-content h2 {
  margin: 0 0 10px;
  font-size: 44px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 52px;
  color: #ffffff;
}

.cta-banner-content p {
  margin: 0;
  font-size: 35px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 44px;
  color: #ffffff;
}

/* ====================== SECTION 5: CAREERS HIGHLIGHT SECTION ====================== */
.careers-section {
  padding-top: 56px;
  padding-bottom: 54px;
}

.careers-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: start;
  gap: 40px;
}

.careers-text h2 {
  margin: 0 0 7px;
  font-size: 52px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.4px;
  line-height: 58px;
  color: #1f2e49;
  text-transform: uppercase;
}

.careers-text h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.2px;
  line-height: 30px;
  color: #7a0d0d;
}

.careers-text p {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.6px;
  line-height: 28px;
  color: #262626;
}

.careers-text li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0px;
  line-height: 24px;
  color: #202020;
}

.careers-text li::before {
  content: "\2022";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px;
  color: #7a0d0d;
}

.careers-image img {
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.careers-contact {
  margin-top: 28px;
}

.careers-contact p {
  margin: 0;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 48px;
  color: #2a2a2a;
}

.careers-contact a {
  color: #7a0d0d;
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 48px;
}

/* ====================== SECTION 6: FAT FOOTER SECTION ====================== */
.fat-footer {
  background-color: #520707;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 24px;
  align-items: start;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-column h3 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 32px;
  color: #ffffff;
  text-transform: uppercase;
}

.footer-column p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  line-height: 24px;
  color: #ffffff;
}

.footer-column a {
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0px;
  line-height: 24px;
  color: #ffffff;
}

.footer-contact-offices h4,
.office-column h3 {
  font-size: 17px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0px;
  line-height: 24px;
  color: #ffffff;
  text-transform: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.office-column {
  padding-top: 42px;
}

.office-column p {
  letter-spacing: 0.2px;
}

.office-column strong {
  font-weight: 700;
}

.office-column strong a {
  font-weight: 700;
  font-size: 16px;
}

.footer-social img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.footer-bottom {
  background-color: #1e1e1e;
}

.footer-bottom-inner {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.footer-bottom-inner p,
.footer-bottom-inner a {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  line-height: 20px;
  color: #cccccc;
}

.footer-bottom-inner a:hover,
.footer-bottom-inner a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

/* ====================== PAGE TITLE BANNER (SUBPAGES) ====================== */
.page-title-banner {
  background: radial-gradient(ellipse 55% 95% at center, #d11111 0%, #8c0808 44%, #2c0000 100%);
  padding: 32px 0;
  text-align: center;
}

.page-title-banner h1 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 5px;
  line-height: 48px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

/* ====================== SERVICES PAGE ====================== */
.services-section {
  padding-top: 50px;
  padding-bottom: 60px;
}

.services-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 18px;
  border-bottom: 3px solid #590707;
}

.services-credentials {
  display: flex;
  align-items: center;
  gap: 0;
}

.services-credentials h2 {
  margin: 0;
  padding: 0 28px;
  font-size: 34px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 1.5px;
  line-height: 42px;
  color: #22334f;
  text-transform: uppercase;
  border-right: 2px solid #590707;
}

.services-credentials h2:first-child {
  padding-left: 0;
}

.services-credentials h2:last-child {
  border-right: none;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

.services-category {
  margin-bottom: 28px;
}

.services-category h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.6px;
  line-height: 28px;
  color: #22334f;
  text-transform: uppercase;
}

.services-category p {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.3px;
  line-height: 26px;
  color: #2c2c2c;
}

.services-category ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-category li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 20px;
  color: #2c2c2c;
}

.services-category li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 20px;
  color: #7a0d0d;
}

.services-photo img {
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* ====================== SERVICES PARALLAX BANNER ====================== */
.services-parallax {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/parallax2.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.services-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.40);
}

.services-parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.services-parallax-content h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2.5px;
  line-height: 54px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}

/* ====================== OUR STAFF / TEAM PAGE ====================== */
.team-section {
  padding-top: 54px;
  padding-bottom: 70px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 36px;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.13);
  position: relative;
}

.team-member-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #7a0d0d;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.team-member:hover .team-member-photo::after {
  transform: scaleX(1);
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.team-member:hover .team-member-photo img {
  transform: scale(1.03);
}

.team-member-caption {
  margin-top: 14px;
  padding: 0 6px;
}

.team-member-name {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 22px;
  color: #22334f;
}

.team-member-creds {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1px;
  line-height: 19px;
  color: #666666;
}

/* ====================== CAREERS PAGE ====================== */
.careers-page-section {
  padding-top: 54px;
  padding-bottom: 64px;
}

.careers-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.careers-page-image img {
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.careers-page-text h2 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.2px;
  line-height: 34px;
  color: #7a0d0d;
}

.careers-page-text p {
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.3px;
  line-height: 28px;
  color: #2c2c2c;
}

.careers-page-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.careers-page-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 26px;
  color: #2c2c2c;
}

.careers-page-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 26px;
  color: #7a0d0d;
}

.careers-page-closing {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 28px;
  color: #1f2e49;
}

/* ====================== SERVICE AREA PAGE ====================== */
.service-area-section {
  padding-top: 54px;
  padding-bottom: 64px;
}

.service-area-map {
  width: 100%;
  margin: 0 auto 50px;
}

.service-area-map img {
  width: 100%;
  height: auto;
  display: block;
}

.service-area-towns-wrap {
  border-top: 4px solid #590707;
  background-color: #f8f5f5;
  border-radius: 0 0 6px 6px;
  padding: 36px 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.service-area-towns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 24px;
}

.service-area-towns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-area-towns li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 22px;
  color: #2a2a2a;
}

.service-area-towns li::before {
  content: '';
  display: block;
  width: 11px;
  height: 15px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 15'%3E%3Cpath fill='%237a0d0d' d='M5.5 0C2.46 0 0 2.46 0 5.5 0 9.63 5.5 15 5.5 15S11 9.63 11 5.5C11 2.46 8.54 0 5.5 0zm0 7.5C4.4 7.5 3.5 6.6 3.5 5.5S4.4 3.5 5.5 3.5 7.5 4.4 7.5 5.5 6.6 7.5 5.5 7.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}

/* ====================== RESPONSIVE STYLES ====================== */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.2px;
    line-height: 44px;
    color: #ffffff;
  }

  .header-inner {
    min-height: 84px;
  }

  .logo-link {
    width: 290px;
    height: 51px;
    flex: 0 0 290px;
  }

  .logo {
    width: 290px;
    max-width: 290px;
    height: 51px;
  }

  .intro-grid,
  .careers-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.2px;
    line-height: 44px;
    color: #22334f;
  }

  .cta-banner-content h2 {
    font-size: 34px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.2px;
    line-height: 42px;
    color: #ffffff;
  }

  .cta-banner-content p {
    font-size: 27px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.2px;
    line-height: 35px;
    color: #ffffff;
  }

  .careers-contact p,
  .careers-contact a {
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.2px;
    line-height: 40px;
    color: #2a2a2a;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .office-column {
    padding-top: 0;
  }

  .services-grid,
  .careers-page-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .service-area-towns {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-parallax-content h2 {
    font-size: 34px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 2px;
    line-height: 44px;
    color: #ffffff;
  }
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 78px;
  }

  .logo-link {
    width: 200px;
    height: 35px;
    flex: 0 0 200px;
  }

  .logo {
    width: 200px;
    max-width: 200px;
    height: 35px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    width: 100%;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    background-color: #ffffff;
    border-bottom: 1px solid #d8d8d8;
    transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-list.is-open {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-list li {
    width: 100%;
    border-top: 1px solid #efefef;
  }

  .nav-list a {
    width: 100%;
    justify-content: flex-start;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.4px;
    line-height: 20px;
    color: #1f1f1f;
  }

  .hero-section {
    min-height: 420px;
  }

  .hero-slide--1 {
    background-position: 15% 20%;
  }

  .hero-25-img {
    display: none;
  }

  .hero-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0;
  }

  .hero-content h1 {
    font-size: 28px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.2px;
    line-height: 34px;
    color: #ffffff;
  }

  .hero-content p {
    font-size: 17px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.7px;
    line-height: 24px;
    color: #ffffff;
  }

  .intro-band p {
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.1px;
    line-height: 24px;
    color: #ffffff;
  }

  .intro-text h2 {
    font-size: 30px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.2px;
    line-height: 38px;
    color: #22334f;
  }

  .intro-text h3 {
    font-size: 22px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.2px;
    line-height: 30px;
    color: #22334f;
  }

  .cta-banner {
    min-height: 380px;
    background-attachment: scroll;
  }

  .cta-banner-content h2 {
    font-size: 26px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.1px;
    line-height: 33px;
    color: #ffffff;
  }

  .cta-banner-content p {
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.1px;
    line-height: 30px;
    color: #ffffff;
  }

  .careers-text h2 {
    font-size: 38px;
    font-weight: 800;
    font-style: normal;
    letter-spacing: 0.2px;
    line-height: 44px;
    color: #1f2e49;
  }

  .careers-contact p,
  .careers-contact a {
    font-size: 23px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.1px;
    line-height: 32px;
    color: #2a2a2a;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .office-column {
    padding-top: 0;
  }

  .services-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 18px;
  }

  .service-area-towns {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-area-towns-wrap {
    padding: 24px 20px;
  }

  .services-credentials {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .services-credentials h2 {
    font-size: 24px;
    font-weight: 800;
    font-style: normal;
    letter-spacing: 1px;
    line-height: 30px;
    color: #22334f;
    padding: 0;
    border-right: none;
    border-bottom: 1px solid #590707;
    padding-bottom: 4px;
    width: 100%;
  }

  .services-credentials h2:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .services-parallax {
    min-height: 280px;
    background-attachment: scroll;
  }

  .services-parallax-content h2 {
    font-size: 26px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1.5px;
    line-height: 34px;
    color: #ffffff;
  }
}
