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

:root {
  --color-slate: #4A6572;
  --color-slate-light: #e8ecef;
  --color-slate-muted: rgba(74, 101, 114, 0.15);
  --color-brand-black: #000000;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: #f2f2f2;
  font-family: "Gotham", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #555;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #f85c37;
  text-decoration: none;
  transition: color 0.1s ease-in;
}

a:hover, a:focus { color: #7b7b7b; outline: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Gotham", sans-serif;
  color: #333;
}

h1 {
  font-weight: 700;
  letter-spacing: -0.06em;
}

h2 {
  font-weight: 700;
}

em {
  font-style: italic;
  font-weight: inherit;
}

p em,
.content-block em,
.service-inner em,
.contact-address em,
.seo-intro em,
.region-intro em {
  font-style: italic;
}

h4, h5, h6 { font-weight: 400; }

.heading-2 {
  font-family: "Gotham", sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 0.9em;
  color: #333;
  margin: 0 0 16px;
}

.heading-3 {
  font-family: "Gotham", sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 0.9em;
  color: #333;
  margin: 0 0 16px;
}

p { line-height: 28px; margin-bottom: 25px; }

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.centered { text-align: center; }

/* Navigation */
.site-header {
  position: relative;
  z-index: 1000;
}

.site-header-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-brand-black);
}

.site-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 14px 15px 10px;
}

.site-logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.site-logo-link:hover,
.site-logo-link:focus {
  outline: none;
  opacity: 0.92;
}

.site-logo-img {
  display: block;
  width: min(520px, 100%);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.footer-logo,
.site-logo-link-footer {
  display: block;
  width: 100%;
  margin-bottom: 14px;
}

.site-logo-link-footer .site-logo-img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
}

.navbar {
  position: relative;
  z-index: 1000;
  background: var(--color-brand-black);
  border-bottom: 3px solid #ff7878;
  font-family: "Gotham", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.06em;
}

.navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

body.nav-open {
  overflow: hidden;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: block;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  letter-spacing: -0.06em;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color 0.15s, border-color 0.15s;
}

.nav-menu > li > a:hover,
.nav-menu > li > a:focus {
  color: #fff;
  background: transparent;
  border-bottom-color: #ff7878;
}

.nav-menu > li.active > a {
  color: #ff7878;
  background: transparent;
  border-bottom-color: #ff7878;
}

.nav-menu > li > a .fa-facebook,
.nav-mobile-list > li > a .fa-facebook {
  margin-right: 7px;
}

.nav-menu .dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.nav-menu > li.nav-services {
  position: static;
}

.mega-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--color-brand-black);
  border-top: 3px solid #ff7878;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  z-index: 1001;
}

.nav-services:hover .mega-menu,
.nav-services:focus-within .mega-menu {
  display: block;
}

.mega-menu-inner {
  padding: 28px 15px 32px;
}

.mega-menu-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-menu-title {
  color: #fff;
  margin: 0;
}

.mega-menu-all {
  color: #ff7878;
  font-family: "Gotham", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}

.mega-menu-all:hover,
.mega-menu-all:focus {
  color: #fff;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu-grid a {
  display: block;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.mega-menu-grid a:hover,
.mega-menu-grid a:focus {
  color: #fff;
  background: var(--color-slate-muted);
}

/* Page hero */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 340px;
  padding: 52px 15px;
  isolation: isolate;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 900px;
  padding: 0;
}

.page-hero-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 8vw, 70px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.page-hero-subtitle {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.page-hero-regions {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
}

.page-hero-regions a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.15s;
}

.page-hero-regions a:hover,
.page-hero-regions a:focus {
  color: #ff7878;
}

.page-hero[data-in-regions="true"] .page-hero-regions {
  display: none;
}

.page-hero .breadcrumb-hero {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
}

.page-hero .breadcrumb-hero a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.15s;
}

.page-hero .breadcrumb-hero a:hover,
.page-hero .breadcrumb-hero a:focus {
  color: #ff7878;
}

.page-hero .breadcrumb-hero [aria-current="page"] {
  color: rgba(255, 255, 255, 0.45);
}

.page-hero-home .breadcrumb-hero {
  display: none;
}

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin: 0;
}

.hero-quick-links a {
  display: inline-block;
  padding: 8px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.hero-quick-links a:hover,
.hero-quick-links a:focus {
  background: #ff7878;
  border-color: #ff7878;
  color: #fff;
}

.page-hero + .section,
.page-hero + #home .section-white,
.page-hero + #home .home-services-section,
.page-hero + .service-page.section {
  padding-top: 50px;
}

#home > .section-white {
  padding-top: 60px;
}

.section-white {
  background: #fff;
  padding: 60px 0;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.highlights h4 {
  font-weight: 700;
  margin-top: 0;
}

/* Trust banner */
#r {
  background: var(--color-slate);
  padding: 35px 0;
}

#r h4,
#r .heading-2 {
  color: #fff;
  margin-top: 0;
}

#r p { color: #fff; margin-bottom: 15px; }

#r a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#r a:hover,
#r a:focus {
  color: #ff7878;
  opacity: 1;
}

/* Section blocks */
.section {
  padding: 70px 0;
}

.section-alt { background: var(--color-slate-light); }

.section h1.page-title {
  font-size: 42px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 30px;
  text-align: center;
}

.seo-intro .heading-2,
.contact-intro .heading-2,
.content-block .heading-2 {
  text-align: center;
  margin: 0 auto 30px;
}

.region-intro .heading-3 {
  text-align: center;
  margin: 0 auto 24px;
}

.region-intro .heading-3::after,
.seo-intro .heading-2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-slate);
  margin: 14px auto 0;
}

.content-block,
.portfolio-entry .portfolio-text {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 30px;
}

.service-prose {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 10px;
}

.seo-intro {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
}

.home-services-intro {
  width: 100%;
  max-width: none;
  margin: 0 auto 40px;
  padding: 30px;
  color: #666;
}

.service-inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.section > .container > p.centered,
.section > .container > p.cross-links {
  padding-inline: 30px;
}

.service-inner .heading-2 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 24px;
}

.service-faq .heading-2 {
  text-align: left;
  margin: 0 0 20px;
}

.service-faq {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-slate-muted);
}

.service-faq-accordion {
  border: 1px solid #ddd;
  background: #fff;
}

.service-faq-item {
  border-bottom: 1px solid #ddd;
}

.service-faq-item:last-child {
  border-bottom: none;
}

.service-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  list-style: none;
  line-height: 1.5;
  transition: background 0.15s, color 0.15s;
}

.service-faq-question::-webkit-details-marker {
  display: none;
}

.service-faq-question::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-slate);
  transition: transform 0.2s;
}

.service-faq-item[open] .service-faq-question {
  background: var(--color-slate-light);
  color: #111;
  box-shadow: inset 3px 0 0 var(--color-slate);
  padding: 20px 20px 12px;
}

.service-faq-item[open] .service-faq-question::after {
  content: "−";
}

.service-faq-question:hover,
.service-faq-question:focus {
  background: var(--color-slate-light);
  outline: none;
}

.service-faq-answer {
  padding: 0 20px 20px;
  line-height: 1.6;
  color: #444;
}

.service-faq-item[open] .service-faq-answer {
  padding: 12px 20px 20px;
}

.service-faq-answer p {
  margin: 0;
}

.service-page .service-images,
.service-inner .service-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
}

.service-page .service-images img,
.service-inner .service-images img {
  max-width: 100%;
  width: 300px;
  height: auto;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.service-page .service-cta,
.service-inner .service-cta {
  background: #ff7878;
  color: #fff;
  text-align: left;
  padding: 24px 20px;
  margin: 32px 0 0;
  border-left: 4px solid #d9534f;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.cta-section {
  padding: 50px 0;
}

.cta-section .service-inner .service-cta {
  margin: 0;
}

.service-cta-text {
  margin: 0 0 20px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.service-cta-text em {
  color: #fff;
  font-style: italic;
}

.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.service-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #2d2d2d;
  color: #fff;
  font-family: "Gotham", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

.service-cta-btn:hover,
.service-cta-btn:focus {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-1px);
}

.service-cta-btn-outline {
  background: #fff;
  color: #2d2d2d;
  box-shadow: none;
}

.service-cta-btn-outline:hover,
.service-cta-btn-outline:focus {
  background: #f5f5f5;
  color: #2d2d2d;
}

.services-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.services-nav a {
  display: inline-block;
  padding: 8px 14px;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  border-left: 3px solid var(--color-slate);
  transition: background 0.15s, color 0.15s;
}

.services-nav a:hover {
  background: var(--color-slate);
  color: #fff;
}

/* Portfolio */
.portfolio-list {
  margin-top: 30px;
  text-align: left;
}

.portfolio-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid #ccc;
}

.portfolio-entry:last-child { border-bottom: none; }

.portfolio-entry .portfolio-image {
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.portfolio-entry .portfolio-image > img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s;
}

.portfolio-entry .portfolio-image > img:hover { transform: scale(1.02); }

.portfolio-entry h4 {
  font-weight: 700;
  margin-top: 0;
}

.portfolio-entry p { margin-bottom: 15px; }

.portfolio-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 8px;
  margin-bottom: 16px;
}

.portfolio-quick-links a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #ff7878;
  border-left: 3px solid #ff7878;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.portfolio-quick-links a:hover,
.portfolio-quick-links a:focus {
  background: #f2f2f2;
  border-left-color: #ff7878;
  color: #333;
}

.portfolio-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.portfolio-image .portfolio-thumbs-combined {
  margin-top: 0;
  flex-wrap: nowrap;
  gap: 12px;
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: stretch;
}

.portfolio-image .portfolio-thumbs-combined .portfolio-thumb {
  flex: 1;
  min-width: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.portfolio-image .portfolio-thumbs-combined .portfolio-thumb img {
  width: 100%;
  flex: 1;
  min-height: 0;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.portfolio-thumb {
  text-align: center;
  max-width: 182px;
}

.portfolio-thumb img {
  width: 182px;
  height: 243px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.portfolio-thumb figcaption {
  flex-shrink: 0;
  margin-top: 8px;
  font-weight: 700;
  color: #333;
  font-size: 14px;
}

/* Testimonials */
blockquote {
  margin: 0 0 30px;
  padding: 20px 30px;
  background: #fff;
  border-left: 4px solid var(--color-slate);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

blockquote .author {
  display: block;
  text-align: right;
  font-weight: 700;
  margin-top: 10px;
  color: #333;
}

/* Contact */
.contact-intro {
  text-align: center;
  margin-bottom: 40px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: none;
  margin: 0 auto 36px;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #333;
  transition: transform 0.15s, box-shadow 0.15s;
}

.contact-method:hover,
.contact-method:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 101, 114, 0.18);
  color: #333;
}

.contact-method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  background: var(--color-slate);
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

.contact-method-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}

.contact-method-value {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  word-break: break-word;
}

.contact-address {
  text-align: center;
  margin: 0 auto 32px;
  line-height: 1.7;
  color: #555;
}

.contact-page .cross-links {
  margin-top: 32px;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  font-family: "Gotham", sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-danger {
  background: #d9534f;
  color: #fff;
}

.btn-danger:hover { background: #c9302c; color: #fff; }

#mapwrap {
  margin-top: 40px;
  border: 0;
}

#mapwrap iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* Footer */
#f {
  background: var(--color-brand-black);
  color: #bdbdbd;
  margin-top: 0;
}

#f .container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 50px 0 30px;
  text-align: left;
}

.footer-col .heading-3 {
  color: #fff;
  margin: 0 0 18px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: #bdbdbd;
  margin-bottom: 16px;
}

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

.footer-brand-text {
  max-width: none;
}

.footer-brand a {
  color: #fff;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-brand a:hover,
.footer-brand a:focus {
  color: #ff7878;
}

.footer-brand strong {
  color: #fff;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #bdbdbd;
  font-size: 14px;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #ff7878;
}

.footer-contact p {
  font-size: 14px;
  line-height: 1.7;
  color: #bdbdbd;
  margin-bottom: 14px;
}

.footer-contact em {
  color: #fff;
  font-style: italic;
}

.footer-contact a {
  color: #fff;
}

.footer-contact a:hover {
  color: #ff7878;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #888;
  font-size: 13px;
}

.footer-bottom a {
  color: #bdbdbd;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
  color: #ff7878;
}

.footer-facebook {
  display: inline;
  color: #bdbdbd;
  font-size: 13px;
  vertical-align: baseline;
  text-decoration: none;
}

.footer-facebook:hover,
.footer-facebook:focus {
  color: #ff7878;
}

.footer-credit a {
  color: #bdbdbd;
}

.footer-credit a:hover {
  color: #ff7878;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: #f2f2f2;
  max-width: 560px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
  background: #fff;
}

.modal-header h4 {
  margin: 0;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  line-height: 1;
}

.modal-body { padding: 20px; }

.modal-footer {
  padding: 15px 20px;
  border-top: 1px solid #ddd;
  text-align: right;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

/* Home & listing grids */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  padding: 24px;
  border-left: 4px solid var(--color-slate);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-card .heading-2,
.service-card h4 { margin-top: 0; }

.service-card p { margin-bottom: 12px; font-size: 15px; }

.service-card a.read-more { font-weight: 700; font-size: 14px; }

.home-cta {
  text-align: center;
  padding: 50px 0;
  background: #fff;
}

.home-cta .btn-cta {
  display: inline-block;
  padding: 14px 32px;
  background: #ff7878;
  color: #fff;
  font-family: "Gotham", sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0 8px 8px;
}

.home-cta .btn-cta:hover { background: #e55; color: #fff; }

.home-services-section {
  padding: 70px 0;
  background: var(--color-slate-light);
}

.home-services-section .heading-2 {
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: 1px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.regions-list {
  columns: 2;
  column-gap: 40px;
  width: 100%;
  max-width: none;
  margin: 32px auto 0;
  padding: 0;
  list-style: none;
}

.regions-list li {
  margin-bottom: 28px;
  break-inside: avoid;
}

.regions-list-title {
  margin: 0 0 8px;
  font-size: 1.45em;
  line-height: 1.15;
}

.regions-list-title a {
  color: #2d2d2d;
  text-decoration: none;
}

.regions-list-title a:hover,
.regions-list-title a:focus {
  color: var(--color-slate);
}

.regions-list-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #555;
}

.regions-list-desc a {
  font-weight: 700;
  color: var(--color-slate);
}

.regions-list-desc a:hover,
.regions-list-desc a:focus {
  text-decoration: underline;
}

.regions-index-intro {
  max-width: 760px;
  margin: 0 auto 8px;
  text-align: center;
}

.regions-index-intro p {
  margin: 0 0 16px;
}

.regions-index-intro p:last-child {
  margin-bottom: 0;
}

.home-service-block {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 260px;
  background: #2d2d2d;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-service-block::before {
  display: none;
}

.home-service-block:hover,
.home-service-block:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  color: #fff;
  outline: none;
}

.home-service-block-bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.home-service-block-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-service-block:hover .home-service-block-bg,
.home-service-block:focus .home-service-block-bg {
  opacity: 0.6;
}

.home-service-block-content {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  width: 100%;
  background: linear-gradient(to top, rgba(45, 45, 45, 0.92) 0%, rgba(45, 45, 45, 0.4) 70%, transparent 100%);
}

.home-service-block .heading-3 {
  margin: 0 0 8px;
  color: #fff;
}

.home-service-block p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
}

.home-service-block-link {
  font-weight: 700;
  font-size: 14px;
  color: #ff7878;
}

.home-service-block:hover .home-service-block-link,
.home-service-block:focus .home-service-block-link {
  color: #fff;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #777;
  text-align: center;
}

.breadcrumb a { color: #f85c37; }

.related-services {
  margin: 40px 0 0;
  padding: 24px;
  background: #fff;
  border-left: 4px solid var(--color-slate);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.related-services .heading-3 {
  margin-top: 0;
  margin-bottom: 16px;
}

.related-services-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-services-list a {
  display: inline-block;
  padding: 8px 14px;
  background: var(--color-slate-light);
  color: #333;
  font-size: 14px;
  font-weight: 700;
  border-left: 3px solid var(--color-slate);
  transition: background 0.15s, color 0.15s;
}

.related-services-list a:hover,
.related-services-list a:focus {
  background: var(--color-slate);
  color: #fff;
}

.related-services-more {
  margin-bottom: 0;
  font-size: 15px;
}

.cross-links {
  margin-top: 30px;
  text-align: center;
}

/* Responsive */

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .highlights { grid-template-columns: 1fr; }

  .mega-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-entry {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .portfolio-image .portfolio-thumbs-combined {
    flex-wrap: wrap;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    padding: 36px 0 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-links a,
  .footer-contact p {
    font-size: 13px;
  }

  .page-hero-bg {
    background-attachment: scroll;
  }

  .page-hero-bg img {
    opacity: 1;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1002;
    background: var(--color-brand-black);
    border-bottom: 3px solid #ff7878;
  }

  .site-header.menu-open {
    border-bottom-color: transparent;
  }

  .site-header-bar {
    padding: 10px 15px;
    position: relative;
    z-index: 1003;
  }

  .site-logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    padding: 0;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1004;
  }

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

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

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

  .navbar {
    display: none;
  }

  .nav-mobile-panel {
    display: none;
    position: fixed;
    top: var(--header-bar-height, 70px);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-brand-black);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 1001;
  }

  .nav-mobile-panel.open {
    display: block;
  }

  .nav-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0 0 24px;
  }

  .nav-mobile-list a {
    display: block;
    padding: 18px 24px;
    color: rgba(255, 255, 255, 0.65);
    font-family: "Gotham", sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.06em;
    text-align: center;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.15s, background 0.15s, box-shadow 0.15s;
  }

  .nav-mobile-list a:hover,
  .nav-mobile-list a:focus {
    color: #fff;
    background: rgba(255, 120, 120, 0.12);
  }

  .nav-mobile-list li.active a {
    color: #ff7878;
    background: transparent;
    box-shadow: inset 3px 0 0 #ff7878;
  }

  .site-logo-img {
    width: min(360px, calc(100vw - 70px));
    height: auto;
    margin: 0 auto;
  }

  .regions-list {
    columns: 1;
  }
}

@media (min-width: 769px) {
  .nav-mobile-panel {
    display: none !important;
  }
}
