/* =============================================================
   Design tokens — use these on every new page/component.

   Color   --navy --navy-deep --blue --blue-dark --light-blue
           --orange --orange-dark --ink --text --muted --line
           --bg --bg-alt --bg-strip
   Font    --font-body  (Inter, body copy)
           --font-display (Oswald, headings + logo)
           --font-script  (Caveat, signature)
   Size    --fs-xs 11 / sm 12 / md 13 / base 15 / lg 17
           --fs-xl 22 / 2xl 26 / 3xl 32 / 4xl 44 / 5xl 58
   Weight  --fw-medium 500 / semibold 600 / bold 700
   Lh      --lh-tight 1.1 / snug 1.3 / normal 1.5 / relaxed 1.65
   Ls      --ls-tight -.01em / wide .06 / wider .1 / widest .15
   Space   --space-xs 4 / sm 8 / md 16 / lg 24 / xl 40
           --space-2xl 56 / 3xl 80
   Border  --border-width 1px / --radius-sm 2 / --radius 4
   Shadow  --shadow-sm / --shadow-md
   Layout  --container-max 1200 / --gutter 24
   ============================================================= */
:root {
  /* Color */
  --navy: #0f3a5f;
  --navy-deep: #0b2d4a;
  --blue: #104568;
  --blue-dark: #1a5a82;
  --light-blue: #40ACD8;
  --orange: #e87722;
  --orange-dark: #d56a17;
  --ink: #1d1d1f;
  --text: #3a3a3a;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #ffffff;
  --bg-alt: #f4f5f7;
  --bg-strip: #ededef;
  --hero-dark: #1a1a1a;
  --footer-bg: #1c1c1e;
  --footer-base: #141416;

  /* Type — families */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Oswald', 'Inter', sans-serif;
  --font-script: 'Caveat', cursive;

  /* Type — size scale */
  --fs-xs: 11px;
  --fs-sm: 12px;
  --fs-md: 13px;
  --fs-base: 15px;
  --fs-lg: 17px;
  --fs-xl: 22px;
  --fs-2xl: 26px;
  --fs-3xl: 32px;
  --fs-4xl: 44px;
  --fs-5xl: 58px;

  /* Type — weight */
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Type — line-height */
  --lh-tight: 1.1;
  --lh-snug: 1.3;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;

  /* Type — letter-spacing */
  --ls-tight: -.01em;
  --ls-wide: .06em;
  --ls-wider: .1em;
  --ls-widest: .15em;

  /* Space (use these for padding, margin, gap) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 56px;
  --space-3xl: 80px;

  /* Border + radius */
  --border-width: 1px;
  --radius-sm: 2px;
  --radius: 4px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, .06);

  /* Layout */
  --container-max: 1200px;
  --gutter: 24px;
}

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

html {
  scroll-behavior: smooth;
}

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

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

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

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

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

button {
  font: inherit;
  cursor: pointer;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  color: var(--blue);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  margin: 0 0 12px;
}

.eyebrow.center {
  text-align: center;
}

.section-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--ink);
  margin: 0 0 var(--space-xl);
  text-align: center;
  letter-spacing: var(--ls-tight);
}

.section-title.left {
  text-align: left;
  margin-bottom: 20px;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 20px;
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius);
  border: var(--border-width) solid transparent;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.btn-outline {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.btn-cta {
  background: var(--orange);
  color: #fff;
  padding: 14px 24px;
}

.btn-cta:hover {
  background: var(--orange-dark);
}

/* ----- Utility bar ----- */
.utility-bar {
  background: var(--navy-deep);
  color: #cfd8e0;
  font-size: 12px;
}

.utility-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
}

.utility-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.utility-meta {
  display: inline-flex;
  gap: 10px;
}

/* ----- Header ----- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: auto;
  height: 46px;
  flex: none;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-word {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 28px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.logo-word .dark {
  color: var(--ink);
}

.logo-word .light {
  color: #fff;
}

.logo-word .blue {
  color: var(--blue);
}

.logo-word .light-blue {
  color: var(--light-blue);
}

.logo-tag {
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--muted);
  margin-top: 5px;
  font-weight: 500;
}

.nav ul {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
}

.nav a:hover {
  color: var(--blue);
}

.nav a.active {
  color: var(--blue);
}

.nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--blue);
}

.header-cta {
  padding: 12px 18px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-phone {
  display: none;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.mobile-phone:hover {
  background: var(--blue-dark);
}

.nav-toggle-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-close {
  display: block;
}

/* ----- Hero ----- */
.hero {
  background: var(--hero-dark);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
  min-height: 460px;
}

.hero-copy {
  padding: 70px 56px 70px max(24px, calc((100vw - 1200px) / 2 + 24px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy .eyebrow {
  color: var(--light-blue);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-5xl);
  line-height: 1.05;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  margin: 0 0 22px;
}

.hero-sub {
  font-size: var(--fs-lg);
  color: #d6d6d6;
  margin: 0 0 22px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  overflow: hidden;
  clip-path: polygon(70px 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* ----- Trust strip ----- */
.trust-strip {
  background: var(--bg-strip);
  border-bottom: 1px solid var(--line);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22px 24px;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ink);
  line-height: 1.3;
  padding: 6px 16px;
}

.trust-item+.trust-item {
  border-left: 1px solid #c9ccd1;
}

.trust-item>svg {
  color: var(--navy);
}

.trust-item strong {
  font-weight: 700;
}

/* ----- Services ----- */
.services {
  padding: var(--space-3xl) 0;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: start;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: block;
  grid-row: 1 / span 2;
  align-self: start;
  color: var(--blue);
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.25;
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ----- Projects ----- */
.projects {
  background: var(--bg-alt);
  padding: var(--space-3xl) 0;
}

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

.project {
  margin: 0;
}

.project-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project figcaption {
  padding: 12px 4px 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.project figcaption strong {
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
}

.project figcaption span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.projects-more,
.services-more {
  text-align: center;
  margin-top: 32px;
}

/* ----- Service details ----- */
.service-details {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.service-details .section-title {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(320px, 1.15fr);
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--line);
}

.service-row-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}

.service-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.service-row-copy .service-icon {
  grid-row: auto;
}

.service-row-copy h3 {
  margin: 0 0 var(--space-sm);
  color: var(--ink);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
}

.service-row-copy p {
  margin: 0 0 var(--space-md);
  max-width: 520px;
  color: var(--text);
  line-height: var(--lh-relaxed);
}

.service-row-copy ul {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: var(--fs-md);
}

.service-row-copy li {
  position: relative;
  padding-left: 20px;
}

.service-row-copy li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: inset 0 0 0 2px #fff;
}

.service-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-alt);
}

.service-custom .eyebrow {
  margin-bottom: var(--space-sm);
}

.service-custom h2 {
  margin: 0 0 var(--space-xs);
  color: var(--ink);
  font-size: var(--fs-2xl);
  line-height: var(--lh-snug);
}

.service-custom p:not(.eyebrow) {
  margin: 0;
  color: var(--text);
}

/* ----- Project gallery (rich card grid) ----- */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.project-card {
  display: flex;
  flex-direction: column;
}

.project-card .project-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
  margin-bottom: var(--space-md);
}

.project-card .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.project-card:hover .project-img img {
  transform: scale(1.03);
}

.project-card h3 {
  margin: 0 0 var(--space-xs);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--ink);
}

.project-card .project-loc {
  margin: 0 0 var(--space-sm);
  color: var(--muted);
  font-size: var(--fs-md);
}

.project-card .project-link {
  color: var(--blue);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.project-card .project-link:hover {
  color: var(--blue-dark);
}

@media (max-width: 1024px) {
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .project-gallery {
    grid-template-columns: 1fr;
  }
}

/* ----- About ----- */
.about {
  padding: var(--space-3xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.about-copy p:not(.eyebrow):not(.signature) {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.about-copy .signature {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--ink);
  margin: 18px 0 22px;
  line-height: 1;
}

/* ----- About page ----- */
.about-story,
.about-local {
  padding: var(--space-3xl) 0;
}

.about-story-grid,
.about-local-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-story-grid {
  grid-template-columns: .86fr 1.14fr;
  align-items: start;
}

.about-story-image,
.about-local-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}

.about-story-image {
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-md);
}

.about-story-image img,
.about-local-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-copy {
  padding-top: var(--space-xs);
}

.about-story-copy .section-title {
  max-width: 520px;
  font-size: var(--fs-3xl);
  line-height: var(--lh-snug);
}

.about-story-copy p:not(.eyebrow):not(.signature),
.about-local-copy p:not(.eyebrow) {
  margin: 0 0 14px;
  color: var(--text);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
}

.about-story-copy .signature {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--ink);
  margin: 20px 0 0;
  line-height: 1;
}

.about-values {
  padding: var(--space-3xl) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: stretch;
}

.about-values li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  padding: 0 var(--space-xl);
}

.about-values li+li {
  border-left: 1px solid #c9ccd1;
}

.about-values svg {
  width: 56px;
  height: 56px;
  color: var(--blue);
  margin-bottom: var(--space-sm);
}

.about-values strong {
  color: var(--ink);
  font-size: var(--fs-lg);
  line-height: var(--lh-snug);
}

.about-values span {
  color: var(--text);
  line-height: var(--lh-relaxed);
  font-size: var(--fs-base);
}

.about-local {
  background: var(--bg);
}

.about-local-grid {
  grid-template-columns: .72fr 1.28fr;
}

.about-local-image {
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-md);
}

.about-local-copy .section-title {
  max-width: 430px;
}

.about-service-areas {
  display: grid;
  gap: 10px;
  margin-top: var(--space-lg);
  color: var(--text);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
}

.about-service-areas li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-service-areas li svg {
  flex: none;
  color: var(--blue);
}

/* ----- Contact page ----- */
.contact-details {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-intro p:not(.eyebrow) {
  margin: 0;
  max-width: 520px;
  color: var(--text);
  line-height: var(--lh-relaxed);
}

.contact-panel {
  display: grid;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-alt);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--blue);
}

.contact-method.is-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.contact-method span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.contact-method strong {
  color: inherit;
  font-size: var(--fs-lg);
  line-height: var(--lh-snug);
}

.contact-method small {
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
}

.contact-method.is-primary small {
  color: #d8e2ec;
}

a.contact-method {
  transition: border-color .15s, background .15s, transform .15s;
}

a.contact-method:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}

a.contact-method.is-primary:hover {
  background: var(--blue-dark);
}

.contact-map {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-strip);
}

.contact-map>img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-map-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(var(--gutter), calc((100vw - var(--container-max)) / 2 + var(--gutter)));
  transform: translateY(-50%);
  display: flex;
  gap: var(--space-md);
  width: min(380px, calc(100% - 48px));
  padding: var(--space-lg);
  border-radius: var(--radius);
  background: #fff;
  color: var(--blue);
  box-shadow: var(--shadow-md);
}

.contact-map-card h2 {
  margin: 0 0 var(--space-sm);
  color: var(--ink);
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
}

.contact-map-card p {
  margin: 0;
  color: var(--text);
  line-height: var(--lh-relaxed);
}

.contact-map-attr {
  position: absolute;
  bottom: 6px;
  right: 8px;
  z-index: 2;
  font-size: var(--fs-xs);
  color: var(--muted);
  background: rgba(255, 255, 255, .85);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

/* ----- CTA banner ----- */
.cta-banner {
  background: var(--navy-deep);
  color: #fff;
}

.cta-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 20px 24px;
  gap: 32px;
}

.cta-image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cta-image img {
  display: block;
  max-height: 200px;
  width: auto;
  height: auto;
}

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

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta-action-heading {
  margin: 0;
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
}

.cta-action .btn {
  font-size: var(--fs-lg);
}

.cta-text h2 {
  margin: 0 0 var(--space-xs);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
}

.cta-text p {
  margin: 0;
  color: #d8e2ec;
  font-size: var(--fs-lg);
}

/* ----- Footer ----- */
.site-footer {
  background: var(--footer-bg);
  color: #b8babd;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.1fr;
  gap: var(--space-xl);
  padding: var(--space-2xl) var(--gutter) var(--space-xl);
}

.footer-brand p {
  margin: 14px 0 0;
  color: #9ea1a5;
  line-height: 1.6;
}

.footer-col h4 {
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  margin: 0 0 var(--space-md);
}

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

.footer-col ul li a {
  color: #b8babd;
}

.footer-col ul li a:hover {
  color: #fff;
}

.contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.contact-list svg {
  flex: none;
  margin-top: 4px;
}

.contact-list a:hover {
  color: #fff;
}

.footer-base {
  background: var(--footer-base);
  padding: 14px 0;
  font-size: 12px;
  color: #8b8d91;
}

.footer-base-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .cta-row {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 24px 20px;
  }

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

  .cta-image {
    display: none;
  }

  .utility-bar {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .mobile-phone {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    z-index: 50;
  }

  .nav.is-open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 4px 20px;
  }

  .nav li+li {
    border-top: 1px solid var(--line);
  }

  .nav a {
    display: block;
    padding: 14px 0;
  }

  .nav a.active::after {
    display: none;
  }

  .header-row {
    gap: 12px;
  }

  .hero-copy {
    padding: 56px 32px 56px var(--gutter);
  }

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

  .service-row {
    grid-template-columns: .9fr 1.1fr;
    gap: var(--space-xl);
  }

  .about-values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl) 0;
  }

  .about-values li:nth-child(4) {
    border-left: 0;
  }

  .about-local-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-local-copy {
    max-width: 560px;
    order: 2;
  }

  .about-local-image {
    aspect-ratio: 16/7;
    order: 1;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-map {
    min-height: 360px;
  }

  .contact-map>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

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

  .trust-item {
    font-size: 10px;
  }
}

@media (max-width: 760px) {
  .header-row {
    padding: 12px 16px;
  }

  .logo-mark {
    height: 36px;
  }

  .logo-word {
    font-size: 20px;
  }

  .logo-tag {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
  }

  .hero-copy {
    padding: 48px 20px;
    order: 2;
  }

  .hero-image {
    order: 1;
    aspect-ratio: 16/10;
    position: relative;
    clip-path: none;
  }

  .hero-image img {
    position: static;
    height: 100%;
  }

  .hero .hero-grid {
    display: block;
    position: relative;
    min-height: 430px;
    overflow: hidden;
  }

  .hero .hero-copy {
    position: relative;
    z-index: 1;
    min-height: 430px;
    max-width: 430px;
    padding: 56px 24px 48px;
  }

  .hero .hero-copy .eyebrow {
    margin-bottom: 20px;
  }

  .hero h1 {
    line-height: 1.08;
    margin-bottom: 24px;
  }

  .hero .hero-sub {
    line-height: 1.55;
    max-width: 360px;
    color: #f1f3f5;
  }

  .hero .hero-image {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    clip-path: none;
  }

  .hero .hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(15, 15, 15, .88) 0%, rgba(15, 15, 15, .72) 36%, rgba(15, 15, 15, .22) 72%),
      linear-gradient(180deg, rgba(15, 15, 15, .35) 0%, rgba(15, 15, 15, .12) 50%, rgba(15, 15, 15, .45) 100%);
  }

  .hero .hero-image img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 16px;
    gap: 12px 0;
  }

  .trust-item+.trust-item {
    border-left: 0;
  }

  .services {
    padding: 60px 0;
  }

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

  .service-details {
    padding: 60px 0;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
  }

  .service-row-copy {
    gap: var(--space-md);
  }

  .service-custom {
    align-items: flex-start;
    flex-direction: column;
    padding: var(--space-lg);
  }

  .service-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 12px;
  }

  .service-icon {
    grid-row: auto;
  }

  .projects {
    padding: 60px 0;
  }

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

  .about {
    padding: 60px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-story,
  .about-local {
    padding: 60px 0;
  }

  .about-story-grid,
  .about-local-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-values li {
    max-width: 360px;
    margin: 0 auto;
    padding: 0;
  }

  .about-values li+li {
    border-left: 0;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--line);
  }

  .about-local-copy {
    order: 2;
  }

  .about-local-image {
    order: 1;
  }

  .section-title {
    font-size: 26px;
  }

  .contact-details {
    padding: 60px 0;
  }

  .contact-panel {
    padding: var(--space-md);
  }

  .contact-method {
    align-items: flex-start;
  }

  .cta-text h2,
  .cta-action-heading {
    font-size: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px;
  }

  .footer-base-row {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(var(--fs-4xl), 12vw, var(--fs-5xl));
  }

  .hero-sub {
    font-size: clamp(var(--fs-base), 4.25vw, var(--fs-lg));
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .service-row-copy {
    grid-template-columns: 1fr;
  }

  .service-row-copy .service-icon {
    width: 44px;
    height: 44px;
  }
}
