:root {
  --primary-navy: #101c2d;
  --secondary-navy: #1a2a40;
  --accent-copper: #c88c3a;
  --accent-copper-hover: #e09f44;
  --text-dark: #333333;
  --text-muted: #56606c;
  --text-light: #f4f4f4;
  --bg-offwhite: #f8f9fa;
  --white: #ffffff;
  --footer-black: #0b131e;
  --hero-support: #d1d8e0;
  --dark-cta-support: #b0c0d0;
  --line: #dfe4e9;
  --shadow: 0 10px 30px rgba(11, 19, 30, 0.1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  background: var(--white);
  color: var(--text-dark);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

body,
p,
li,
input,
textarea,
select {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.6;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.6;
}

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

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

button,
summary {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  background: var(--accent-copper);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -80px;
  z-index: 2000;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 3px solid var(--accent-copper-hover);
  outline-offset: 3px;
}

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

.section-padding {
  padding: 80px 0;
}

.bg-offwhite {
  background: var(--bg-offwhite);
}

.eyebrow {
  color: var(--accent-copper);
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-intro {
  margin: 0 auto 48px;
  max-width: 760px;
  text-align: center;
}

.section-intro h2 {
  margin-bottom: 16px;
}

.section-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  letter-spacing: 1px;
  line-height: 1.6;
  padding: 14px 28px;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  background: var(--accent-copper);
  box-shadow: 0 4px 6px rgba(200, 140, 58, 0.2);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-copper-hover);
  box-shadow: 0 6px 12px rgba(200, 140, 58, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-navy);
}

.btn-dark {
  background: var(--primary-navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--secondary-navy);
  transform: translateY(-2px);
}

.text-link {
  align-items: center;
  color: var(--primary-navy);
  display: inline-flex;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 8px;
}

.text-link i {
  color: var(--accent-copper);
  transition: transform 0.2s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

.top-bar {
  background: var(--secondary-navy);
  color: var(--hero-support);
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-bar .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.top-bar a {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.site-header {
  align-items: center;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  height: 90px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 12px;
}

.brand img {
  height: 68px;
  object-fit: contain;
  width: 68px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.wordmark {
  color: var(--primary-navy);
  font-family: "Montserrat", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-tagline {
  color: var(--text-muted);
  font-family: "Open Sans", sans-serif;
  font-size: 0.72rem;
  margin-top: 6px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 27px;
  margin-left: auto;
  margin-right: 28px;
}

.site-nav > a,
.nav-dropdown > summary {
  color: var(--text-dark);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  list-style: none;
  padding: 30px 0;
  transition: color 0.2s ease;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-size: 0.72rem;
  font-weight: 900;
  margin-left: 7px;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-dropdown > summary:hover,
.nav-dropdown.active > summary {
  color: var(--accent-copper);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  background: var(--white);
  border-top: 3px solid var(--accent-copper);
  box-shadow: var(--shadow);
  display: grid;
  left: -24px;
  min-width: 245px;
  opacity: 0;
  padding: 12px;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 4px);
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  visibility: hidden;
}

.dropdown-menu a {
  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 12px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--bg-offwhite);
  color: var(--accent-copper);
}

.nav-dropdown[open] .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.header-phone {
  align-items: center;
  color: var(--primary-navy);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  gap: 9px;
}

.header-phone i {
  color: var(--accent-copper);
}

.mobile-call {
  display: none;
}

.mobile-call-bar {
  display: none;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--primary-navy);
  cursor: pointer;
  display: none;
  font-size: 1.6rem;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.page-hero {
  background: var(--primary-navy);
  color: var(--white);
  overflow: hidden;
  padding: 140px 0;
  position: relative;
}

.page-hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.page-hero-overlay {
  background: linear-gradient(90deg, rgba(16, 28, 45, 0.97) 0%, rgba(16, 28, 45, 0.87) 45%, rgba(16, 28, 45, 0.38) 100%);
  inset: 0;
  position: absolute;
  z-index: 2;
}

.page-hero .container {
  position: relative;
  z-index: 3;
}

.page-hero h1 {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 800px;
}

.page-hero p {
  color: var(--hero-support);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 650px;
}

.page-hero p {
  margin-bottom: 0;
}

.hero {
  background: var(--primary-navy);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 650px;
  position: relative;
}

.hero-copy {
  align-self: center;
  margin: 0 auto;
  padding: 92px 0 96px;
  position: relative;
  width: min(calc(100% - 48px), 1200px);
  z-index: 2;
}

.hero-kicker {
  align-items: center;
  color: var(--accent-copper);
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 4.2vw, 4.3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 24px;
  max-width: 760px;
}

.hero p {
  color: var(--hero-support);
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 610px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-proof {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 30px;
  padding-top: 22px;
}

.hero-proof span {
  align-items: center;
  color: var(--white);
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  gap: 8px;
}

.hero-proof i {
  color: var(--accent-copper);
}

.google-review-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  gap: 9px;
  margin-bottom: 28px;
  padding: 8px 11px;
  transition: background 0.2s ease, border-color 0.2s ease;
  width: max-content;
}

.google-review-badge:hover,
.google-review-badge:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--accent-copper);
  color: var(--white);
}

.google-review-badge .google-review-stars {
  color: #fbbc04;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.google-review-badge .google-review-copy {
  display: grid;
  gap: 0;
  line-height: 1.1;
}

.google-review-copy strong {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.google-review-copy small {
  color: var(--hero-support);
  font-size: 0.65rem;
  margin-top: 3px;
}

.hero-visual {
  inset: 0;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}

.hero-visual::after {
  background:
    linear-gradient(90deg, rgba(16, 28, 45, 0.98) 0%, rgba(16, 28, 45, 0.93) 34%, rgba(16, 28, 45, 0.72) 56%, rgba(16, 28, 45, 0.26) 100%),
    linear-gradient(0deg, rgba(16, 28, 45, 0.22), transparent 48%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-image {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 12%, #000 30%);
  height: 125%;
  left: auto;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 12%, #000 30%);
  max-width: none;
  object-fit: contain;
  object-position: center;
  position: absolute;
  right: -2%;
  top: -8%;
  width: auto;
  z-index: 0;
}

.hero-location {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(16, 28, 45, 0.9);
  bottom: 28px;
  color: var(--white);
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 9px;
  left: auto;
  padding: 13px 17px;
  position: absolute;
  right: max(24px, calc((100vw - 1200px) / 2));
  z-index: 2;
}

.hero-location i {
  color: var(--accent-copper);
}

.hero-service-links {
  background: var(--white);
  border-bottom: 1px solid var(--line-grey);
  box-shadow: 0 12px 30px rgba(16, 28, 45, 0.05);
  padding: 20px 0;
}

.hero-service-links .container {
  align-items: center;
  display: flex;
  gap: 28px;
}

.hero-service-links .container > span {
  color: var(--primary-navy);
  flex: 0 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-service-links .hero-actions {
  gap: 8px;
}

.hero-service-links a {
  background: var(--off-white);
  border: 1px solid var(--line-grey);
  color: var(--primary-navy);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 13px;
}

.hero-service-links a:hover,
.hero-service-links a:focus-visible {
  background: var(--accent-copper);
  border-color: var(--accent-copper);
  color: var(--white);
}

.trust-strip {
  background: var(--primary-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px 0;
}

.trust-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: center;
}

.trust-item i {
  color: var(--accent-copper);
  font-size: 2rem;
}

.trust-item strong,
.trust-item span {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.identity-grid,
.work-intro-grid,
.contact-grid,
.areas-grid {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
}

.identity-copy h2,
.work-intro-copy h2,
.areas-copy h2 {
  margin-bottom: 22px;
}

.identity-copy p,
.work-intro-copy p,
.areas-copy p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.image-frame {
  padding: 0 20px 20px 0;
  position: relative;
}

.image-frame::after {
  background: var(--accent-copper);
  border: 2px solid var(--bg-offwhite);
  border-radius: 8px;
  bottom: 0;
  content: "";
  height: calc(100% - 20px);
  position: absolute;
  right: 0;
  width: calc(100% - 20px);
  z-index: 1;
}

.image-frame img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 2;
}

.identity-proof {
  border-left: 4px solid var(--accent-copper);
  display: grid;
  gap: 8px;
  margin: 28px 0;
  padding-left: 20px;
}

.identity-proof strong {
  color: var(--primary-navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

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

.service-card {
  background: var(--white);
  border-bottom: 4px solid transparent;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 38px 30px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-bottom-color: var(--accent-copper);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.service-card > i {
  color: var(--accent-copper);
  font-size: 2.2rem;
  margin-bottom: 22px;
}

.service-card .text-link i {
  flex: 0 0 auto;
  font-size: 1rem;
  line-height: 1;
  margin: 0;
}

.service-card h3 {
  margin-bottom: 13px;
}

.service-card p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 24px;
}

.scope-layout {
  align-items: start;
  display: grid;
  gap: 60px;
  grid-template-columns: 0.85fr 1.15fr;
}

.scope-layout h2 {
  margin-bottom: 20px;
}

.scope-layout p {
  color: var(--text-muted);
}

.scope-list {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.scope-list li {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  color: var(--primary-navy);
  display: flex;
  font-weight: 600;
  gap: 10px;
  padding: 15px 14px 15px 0;
}

.scope-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-right: 22px;
}

.scope-list li:nth-child(even) {
  padding-left: 22px;
}

.scope-list i {
  color: var(--accent-copper);
  margin-top: 6px;
}

.work-teaser {
  background: var(--secondary-navy);
  color: var(--hero-support);
}

.work-teaser h2,
.work-teaser h3 {
  color: var(--white);
}

.work-teaser .section-intro p {
  color: var(--hero-support);
}

.work-preview-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.work-preview-item {
  min-height: 330px;
  overflow: hidden;
  position: relative;
}

.work-preview-item img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.work-preview-label,
.gallery-label {
  background: linear-gradient(0deg, rgba(16, 28, 45, 0.96), rgba(16, 28, 45, 0));
  bottom: 0;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  left: 0;
  padding: 42px 20px 16px;
  position: absolute;
  right: 0;
}

.work-teaser-actions {
  margin-top: 34px;
  text-align: center;
}

.areas-preview {
  display: grid;
  gap: 60px;
  grid-template-columns: 0.9fr 1.1fr;
}

.area-lead {
  color: var(--primary-navy);
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.area-names {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}

.area-names li {
  border-bottom: 1px solid var(--line);
  color: var(--primary-navy);
  font-weight: 600;
  padding: 11px 6px;
}

.area-names li::before {
  color: var(--accent-copper);
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-size: 0.78rem;
  font-weight: 900;
  margin-right: 8px;
}

.testimonials-grid {
  display: grid;
  gap: 36px 46px;
  grid-template-columns: 1fr 1fr;
}

.testimonial {
  border-left: 4px solid var(--accent-copper);
  padding: 8px 0 8px 24px;
}

.testimonial blockquote {
  color: var(--primary-navy);
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 12px;
}

.testimonial cite {
  color: var(--text-muted);
  font-style: normal;
}

.reviews-link {
  margin-top: 38px;
  text-align: center;
}

.hts-testimonials-v3 {
  background: linear-gradient(180deg, var(--primary-navy) 0 54%, var(--bg-offwhite) 54% 100%);
  color: var(--white);
  padding: 78px 0 82px;
}

.hts-testimonials-v3__heading {
  align-items: end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.hts-testimonials-v3 h2 {
  color: var(--white);
  font-size: clamp(2.45rem, 4vw, 3.5rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
  max-width: 620px;
}

.hts-testimonials-v3__proof {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 auto;
  gap: 12px;
  min-height: 48px;
  padding: 10px 15px;
}

.hts-testimonials-v3__proof:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-copper);
}

.hts-testimonials-v3__proof:focus-visible {
  outline: 3px solid var(--accent-copper-hover);
  outline-offset: 3px;
}

.hts-testimonials-v3__proof-stars {
  color: #fbbc04;
  display: flex;
  font-size: 0.72rem;
  gap: 2px;
}

.hts-testimonials-v3__proof-copy {
  display: grid;
  font-family: "Montserrat", sans-serif;
  line-height: 1.15;
}

.hts-testimonials-v3__proof-copy strong {
  font-size: 0.84rem;
}

.hts-testimonials-v3__proof-copy small {
  color: var(--hero-support);
  font-size: 0.72rem;
  margin-top: 3px;
}

.hts-testimonials-v3__board {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--text-dark);
  display: grid;
  gap: 0 46px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  overflow: hidden;
  padding: 42px;
  position: relative;
}

.hts-testimonials-v3__board::before {
  background: var(--accent-copper);
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.hts-testimonials-v3__feature {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  min-height: 300px;
  padding: 10px 42px 4px 0;
}

.hts-testimonials-v3__feature > i {
  color: var(--accent-copper);
  font-size: 2rem;
  margin-bottom: 30px;
}

.hts-testimonials-v3__feature blockquote {
  color: var(--primary-navy);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.24;
  margin: 0 0 28px;
  max-width: 19ch;
}

.hts-testimonials-v3 cite {
  color: var(--text-muted);
  font-style: normal;
}

.hts-testimonials-v3__support {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.hts-testimonials-v3__support figure {
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 20px 0;
}

.hts-testimonials-v3__support figure:first-child {
  border-top: 0;
}

.hts-testimonials-v3__support blockquote {
  color: var(--primary-navy);
  font-family: "Montserrat", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 9px;
}

.cta-section {
  background: var(--primary-navy);
  padding: 100px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  color: var(--dark-cta-support);
  font-size: 1.1rem;
  margin-bottom: 34px;
}

.giant-phone {
  align-items: center;
  color: var(--accent-copper);
  display: inline-flex;
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  gap: 16px;
  line-height: 1.1;
}

.giant-phone:hover {
  color: var(--accent-copper-hover);
}

.giant-phone i {
  font-size: 0.72em;
}

.cta-secondary-link {
  color: var(--white);
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 26px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.jump-nav {
  background: var(--primary-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.jump-list a {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 15px;
  transition: background-color 0.2s ease;
}

.jump-list a:hover {
  background: var(--accent-copper);
}

.service-detail {
  scroll-margin-top: 150px;
}

.service-row {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
}

.service-row.reverse .service-copy {
  order: 2;
}

.service-row.reverse .service-image {
  order: 1;
}

.service-copy h2 {
  margin-bottom: 20px;
}

.service-copy p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.service-image {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  width: 100%;
}

.service-image.portrait-crop {
  object-position: center 38%;
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.checklist li {
  align-items: flex-start;
  color: var(--primary-navy);
  display: flex;
  font-weight: 600;
  gap: 11px;
}

.checklist i {
  color: var(--accent-copper);
  margin-top: 6px;
}

.alert-box {
  background: rgba(200, 140, 58, 0.1);
  border-left: 4px solid var(--accent-copper);
  margin: 22px 0;
  padding: 20px;
}

.alert-box strong {
  color: var(--primary-navy);
  display: block;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.service-matrix {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.service-matrix li {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  color: var(--primary-navy);
  display: flex;
  font-weight: 600;
  gap: 10px;
  min-height: 72px;
  padding: 20px;
}

.service-matrix li:not(:nth-child(3n)) {
  border-right: 1px solid var(--line);
}

.service-matrix i {
  color: var(--accent-copper);
  margin-top: 6px;
}

.locations-container {
  align-items: start;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 2fr;
}

.locations-intro h2 {
  margin-bottom: 20px;
}

.locations-intro p {
  color: #444;
  font-size: 1.08rem;
  margin-bottom: 18px;
}

.suburb-index {
  background: var(--bg-offwhite);
  border-left: 4px solid var(--accent-copper);
  border-radius: 8px;
  column-count: 3;
  column-gap: 38px;
  padding: 40px;
}

.suburb-index li {
  break-inside: avoid;
  color: var(--primary-navy);
  font-weight: 600;
  margin-bottom: 14px;
}

.suburb-index i {
  color: var(--accent-copper);
  font-size: 0.82rem;
  margin-right: 8px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.gallery-intro {
  margin: 0 auto 48px;
  max-width: 800px;
  text-align: center;
}

.gallery-intro h2 {
  margin-bottom: 16px;
}

.gallery-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.gallery-grid {
  display: grid;
  gap: 20px;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  background: var(--bg-offwhite);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

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

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.contact-grid {
  align-items: start;
}

.contact-info {
  background: var(--bg-offwhite);
  border-radius: 8px;
  border-top: 4px solid var(--accent-copper);
  padding: 40px;
}

.contact-info h2,
.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.urgent-note {
  background: var(--primary-navy);
  color: var(--white);
  margin-bottom: 30px;
  padding: 22px;
}

.urgent-note strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px;
}

.urgent-note a {
  color: var(--accent-copper-hover);
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.contact-row {
  align-items: flex-start;
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-row > i {
  color: var(--accent-copper);
  flex: 0 0 24px;
  font-size: 1.25rem;
  margin-top: 4px;
  text-align: center;
}

.contact-text strong {
  color: var(--primary-navy);
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-text a:hover {
  color: var(--accent-copper);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.social-link {
  align-items: center;
  border: 1px solid var(--primary-navy);
  border-radius: 4px;
  color: var(--primary-navy);
  display: inline-flex;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  gap: 8px;
  padding: 9px 15px;
}

.social-link:hover {
  background: var(--primary-navy);
  color: var(--white);
}

.contact-form {
  padding-top: 8px;
}

.contact-form > p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  color: var(--primary-navy);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-control {
  background: var(--white);
  border: 1px solid #bbc3cb;
  border-radius: 4px;
  color: var(--text-dark);
  font-size: 1rem;
  min-height: 48px;
  padding: 12px 15px;
  width: 100%;
}

.form-control:focus {
  border-color: var(--accent-copper);
  outline: 2px solid rgba(200, 140, 58, 0.24);
  outline-offset: 1px;
}

textarea.form-control {
  min-height: 145px;
  resize: vertical;
}

.honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.form-status {
  border-left: 4px solid var(--accent-copper);
  margin: 20px 0;
  padding: 12px 16px;
}

.form-status[data-state="success"] {
  background: #edf7f0;
  border-left-color: #2e7d4f;
  color: #1f5a38;
}

.form-status[data-state="error"] {
  background: #fff1ef;
  border-left-color: #b23a2b;
  color: #8b2d22;
}

.form-submit {
  margin-top: 22px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.site-footer {
  background: var(--footer-black);
  color: var(--hero-support);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 2fr 1fr 1fr;
  margin-bottom: 48px;
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand .brand img {
  background: var(--white);
  border-radius: 50%;
  height: 74px;
  padding: 4px;
  width: 74px;
}

.footer-brand .wordmark,
.footer-brand .brand-tagline {
  color: var(--white);
}

.footer-brand p {
  max-width: 430px;
}

.footer-trust {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  margin-top: 18px;
}

.footer-heading {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-links a:hover {
  color: var(--accent-copper);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  font-size: 0.88rem;
  justify-content: space-between;
  padding-top: 26px;
}

.footer-socials {
  display: flex;
  gap: 18px;
}

.footer-socials a:hover {
  color: var(--accent-copper);
}

@media (hover: hover) and (min-width: 901px) {
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 18px;
    margin-right: 18px;
  }

  .site-nav > a,
  .nav-dropdown > summary {
    font-size: 0.86rem;
  }

  .header-phone {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .identity-grid,
  .work-intro-grid,
  .areas-grid,
  .contact-grid,
  .service-row,
  .scope-layout,
  .areas-preview,
  .locations-container {
    grid-template-columns: 1fr;
  }

  .service-row.reverse .service-copy,
  .service-row.reverse .service-image {
    order: initial;
  }

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

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

  .work-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-preview-item:first-child {
    grid-column: 1 / -1;
  }

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

  .giant-phone {
    font-size: 3rem;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (min-width: 901px) and (max-width: 1400px) {
  .hero-image {
    height: 110%;
    right: -18%;
    top: -5%;
  }
}

@media (max-width: 900px) {
  .top-bar {
    display: none;
  }

  .site-header {
    height: 90px;
  }

  .brand img {
    height: 58px;
    width: 58px;
  }

  .wordmark {
    font-size: 1.15rem;
  }

  .brand-tagline {
    font-size: 0.66rem;
  }

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

  .header-phone {
    display: none;
  }

  .site-nav {
    align-items: stretch;
    background: var(--white);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
    display: none;
    gap: 0;
    left: 0;
    margin: 0;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    padding: 14px 20px 24px;
    position: absolute;
    right: 0;
    top: 90px;
  }

  .menu-open .site-nav {
    display: flex;
    flex-direction: column;
  }

  .site-nav > a,
  .nav-dropdown > summary {
    border-bottom: 1px solid var(--line);
    display: block;
    font-size: 0.94rem;
    padding: 13px 4px;
  }

  .nav-dropdown > summary {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }

  .dropdown-menu {
    border-top: 0;
    box-shadow: none;
    display: none;
    left: auto;
    min-width: 0;
    opacity: 1;
    padding: 6px 0 10px 14px;
    pointer-events: auto;
    position: static;
    transform: none;
    visibility: visible;
  }

  .nav-dropdown[open] .dropdown-menu {
    display: grid;
  }

  .dropdown-menu a {
    padding: 8px 6px;
  }

  .mobile-call {
    background: var(--accent-copper);
    border-bottom: 0 !important;
    color: var(--white) !important;
    display: block;
    margin-top: 16px;
    padding: 13px 18px !important;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mobile-call-bar {
    align-items: center;
    background: var(--accent-copper);
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    bottom: max(12px, env(safe-area-inset-bottom));
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.34);
    color: var(--white);
    display: flex;
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    gap: 9px;
    justify-content: center;
    left: 12px;
    letter-spacing: 0.02em;
    min-height: 56px;
    padding: 13px 20px;
    position: fixed;
    right: 12px;
    text-transform: uppercase;
    transition: background 0.2s ease, opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1100;
  }

  .mobile-call-bar[data-hide-while-hero-call-visible]:not(.is-visible) {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    visibility: hidden;
  }

  .mobile-call-bar:hover,
  .mobile-call-bar:focus-visible {
    background: var(--accent-copper-hover);
    color: var(--white);
  }

  .site-header.menu-open ~ .mobile-call-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }

  .section-padding {
    padding: 64px 0;
  }

  .hts-testimonials-v3 {
    background: linear-gradient(180deg, var(--primary-navy) 0 36%, var(--bg-offwhite) 36% 100%);
    padding: 64px 0;
  }

  .hts-testimonials-v3__heading {
    align-items: stretch;
    display: grid;
    gap: 24px;
    margin-bottom: 30px;
  }

  .hts-testimonials-v3 h2 {
    font-size: 2.35rem;
  }

  .hts-testimonials-v3__proof {
    justify-content: center;
    width: 100%;
  }

  .hts-testimonials-v3__board {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .hts-testimonials-v3__feature {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 0;
    padding: 8px 0 30px;
  }

  .hts-testimonials-v3__feature blockquote {
    font-size: 1.75rem;
  }

  .hts-testimonials-v3__support figure:first-child {
    border-top: 0;
  }

  .page-hero {
    padding: 100px 0;
    text-align: center;
  }

  .page-hero h1 {
    font-size: 2.2rem;
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero-overlay {
    background: linear-gradient(180deg, rgba(16, 28, 45, 0.78) 0%, rgba(16, 28, 45, 0.96) 100%);
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .trust-grid,
  .service-grid,
  .testimonials-grid,
  .scope-list,
  .service-matrix,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .scope-list li:nth-child(odd),
  .scope-list li:nth-child(even),
  .service-matrix li,
  .service-matrix li:not(:nth-child(3n)) {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .work-preview-grid {
    grid-template-columns: 1fr;
  }

  .work-preview-item,
  .work-preview-item:first-child {
    grid-column: auto;
    min-height: 300px;
  }

  .area-names {
    grid-template-columns: 1fr 1fr;
  }

  .giant-phone {
    flex-direction: column;
    font-size: 2.5rem;
    gap: 10px;
  }

  .suburb-index {
    column-count: 2;
    padding: 28px;
  }

  .gallery-grid {
    grid-auto-rows: 270px;
    grid-template-columns: 1fr;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .contact-info {
    padding: 30px 24px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .hero-layout {
    min-height: 660px;
  }

  .hero-copy {
    padding: 72px 0 96px;
    text-align: left;
    width: min(calc(100% - 48px), 760px);
  }

  .hero-kicker {
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 9vw, 3.4rem);
    max-width: 620px;
  }

  .hero p {
    max-width: 650px;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-image {
    -webkit-mask-image: none;
    height: 100%;
    left: 0;
    mask-image: none;
    object-fit: cover;
    object-position: 28% center;
    right: 0;
    top: 0;
    width: 100%;
  }

  .hero-visual::after {
    background:
      linear-gradient(90deg, rgba(16, 28, 45, 0.96) 0%, rgba(16, 28, 45, 0.86) 58%, rgba(16, 28, 45, 0.58) 100%),
      linear-gradient(0deg, rgba(16, 28, 45, 0.5), transparent 54%);
  }

  .hero-location {
    right: 24px;
  }

  .hero-service-links .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .brand-copy {
    max-width: 180px;
  }

  .brand-tagline {
    display: none;
  }

  .hero p,
  .page-hero p {
    font-size: 1.05rem;
  }

  .hero-copy {
    padding: 52px 0 94px;
    width: calc(100% - 40px);
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-proof {
    gap: 12px 18px;
  }

  .google-review-badge {
    justify-content: center;
    width: 100%;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-image {
    object-position: 28% center;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, rgba(16, 28, 45, 0.78) 0%, rgba(16, 28, 45, 0.9) 45%, rgba(16, 28, 45, 0.98) 100%);
  }

  .hero-location {
    bottom: 16px;
    left: 20px;
    right: auto;
  }

  .hero-service-links .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .hero-service-links a {
    text-align: center;
  }

  .area-names,
  .suburb-index {
    column-count: 1;
    grid-template-columns: 1fr;
  }

  .giant-phone {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
