:root {
  --bg: #ffffff;
  --bg-soft: #f5f8fa;
  --ink: #1f282f;
  --muted: #5f6a70;
  --line: #d8e2e8;
  --blue: #0d5f9c;
  --blue-dark: #083a66;
  --blue-soft: #e7f1f8;
  --orange: #f47b20;
  --charcoal: #172127;
  --shadow: 0 18px 44px rgba(23, 33, 39, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 60px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 225, 221, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 120px;
}

.brand img,
.footer-brand img {
  width: auto;
  max-width: 118px;
  max-height: 54px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12.5px;
  font-weight: 650;
}

.nav a {
  color: var(--ink);
  white-space: nowrap;
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.phone-link svg {
  color: var(--blue);
}

.header-quote {
  min-height: 36px;
  padding: 0 12px;
  font-size: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

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

.button-secondary {
  color: var(--blue-dark);
  background: transparent;
  border-color: var(--blue);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--blue-soft);
}

.button-secondary.on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.button-secondary.on-dark:hover,
.button-secondary.on-dark:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.button-accent {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: #d86511;
  border-color: #d86511;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 420px;
  background: var(--bg-soft);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    #f7fafb 0%,
    rgba(247, 250, 251, 0.99) 25%,
    rgba(247, 250, 251, 0.88) 38%,
    rgba(247, 250, 251, 0.48) 50%,
    rgba(247, 250, 251, 0) 64%
  );
  pointer-events: none;
}

.hero-copy {
  --hero-gutter: max(38px, calc((100vw - var(--max)) / 2 + 18px));
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(var(--hero-gutter) + 420px + 22px);
  max-width: 58%;
  padding: 0 22px 0 var(--hero-gutter);
}

.hero h1 {
  max-width: 330px;
  margin: 0;
  font-size: clamp(31px, 3.7vw, 38px);
  line-height: 1.12;
  font-weight: 850;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero p {
  max-width: 350px;
  margin: 20px 0 0;
  color: #334149;
  font-size: 16px;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-actions .button {
  min-height: 34px;
  padding: 0 11px;
  font-size: 12px;
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 28%;
  z-index: 0;
  min-height: 420px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 92%;
  filter: contrast(1.05) saturate(1.03);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px 24px;
}

.services {
  padding-top: 22px;
  padding-bottom: 18px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 16px;
  text-align: center;
}

.section-heading h2,
.projects-copy h2,
.colors-copy h2,
.areas h2,
.quote h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 850;
}

.section-heading p,
.projects-copy p,
.colors-copy p,
.areas-copy p,
.quote-copy p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-heading h2::after,
.areas h2::after,
.projects-copy h2::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 8px;
  background: var(--blue);
}

.section-heading h2::after {
  margin-left: auto;
  margin-right: auto;
}

.projects-copy h2::after,
.areas h2::after {
  margin-left: 0;
}

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

.service-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px 14px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--blue);
  background: transparent;
  border-radius: 0;
}

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

.service-card h3 {
  align-self: center;
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 850;
}

.service-card img {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 2.12 / 1;
  object-fit: cover;
  border-radius: 0;
}

.service-card p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.42;
}

.service-card a,
.colors-copy a {
  grid-column: 1 / -1;
  display: inline-flex;
  width: fit-content;
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 700;
  border-bottom: 1px solid rgba(13, 95, 156, 0.34);
}

.gallery-page {
  background: #fff;
}

.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 34px;
}

.gallery-intro-copy {
  max-width: 480px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-intro h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
  font-weight: 850;
}

.gallery-intro p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.gallery-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.gallery-feature {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.gallery-feature img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.gallery-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px 62px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 13px 14px 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.gallery-cta {
  margin-top: 0;
}

.samples-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 34px;
}

.samples-intro-copy {
  max-width: 520px;
}

.samples-intro h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
  font-weight: 850;
}

.samples-intro p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.samples-feature {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.samples-feature img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.sample-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px 64px;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sample-card {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.sample-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.sample-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.sample-card figcaption span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.locations-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 34px;
}

.locations-intro-copy {
  max-width: 540px;
}

.locations-intro h1,
.location-detail-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
  font-weight: 850;
}

.locations-intro p:not(.eyebrow),
.location-detail-hero p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.locations-map-feature,
.location-hero-photo {
  margin: 0;
  overflow: hidden;
  background: var(--bg-soft);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.locations-map-feature img,
.location-hero-photo img {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
}

.locations-map-feature img {
  aspect-ratio: 920 / 698;
}

.location-listing,
.location-detail-section,
.location-proof {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px 68px;
}

.location-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-card {
  min-height: 196px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.location-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 850;
}

.location-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.location-card a,
.location-copy a,
.location-side-panel a,
.area-link {
  display: inline-flex;
  width: fit-content;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(13, 95, 156, 0.34);
}

.location-card a {
  margin-top: 18px;
}

.location-proof {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 38px;
  align-items: start;
  padding-top: 12px;
}

.location-proof h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 850;
}

.location-proof p {
  margin: 13px 0 0;
  color: var(--muted);
}

.proof-points {
  display: grid;
  gap: 12px;
}

.proof-points article {
  padding: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.proof-points h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 850;
}

.location-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 34px;
}

.location-hero-copy {
  max-width: 540px;
}

.location-detail-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: start;
}

.location-copy {
  color: #26343c;
  font-size: 18px;
  line-height: 1.72;
}

.location-copy h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 29px;
  line-height: 1.18;
}

.location-copy h2:not(:first-child) {
  margin-top: 34px;
}

.location-copy p,
.location-copy ul {
  margin: 16px 0 0;
}

.location-copy ul {
  padding-left: 22px;
}

.location-copy li {
  margin-top: 8px;
}

.location-side-panel {
  position: sticky;
  top: 84px;
  padding: 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.location-side-panel h2,
.location-side-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 850;
}

.location-side-panel h3 {
  margin-top: 24px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.location-side-panel a {
  display: flex;
  margin-top: 12px;
}

.nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.nearby-links a {
  margin-top: 0;
  padding: 7px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 34px;
}

.blog-hero h1,
.article-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
  font-weight: 850;
}

.blog-hero p,
.article-hero p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.blog-hero figure,
.article-hero figure {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.blog-hero img,
.article-hero img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.blog-listing {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px 68px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
}

.blog-card-body {
  padding: 18px;
}

.blog-card time,
.article-meta {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 9px 0 0;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 850;
}

.blog-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.blog-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(13, 95, 156, 0.34);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 34px;
}

.article-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 24px 70px;
}

.article-content {
  color: #26343c;
  font-size: 18px;
  line-height: 1.72;
}

.article-content h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
}

.article-content p {
  margin: 16px 0 0;
}

.article-content ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.article-content li {
  margin-top: 8px;
}

.article-content a {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 1px solid rgba(13, 95, 156, 0.34);
}

.article-cta {
  margin-top: 38px;
  padding: 26px;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 6px;
}

.article-cta h2 {
  margin: 0;
  color: #fff;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.article-cta .button {
  margin-top: 18px;
}

.projects {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 27px max(32px, calc((100vw - var(--max)) / 2 + 24px));
  color: #fff;
  background: var(--charcoal);
}

.projects-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
  font-size: 14px;
}

.projects .button {
  min-height: 36px;
  padding: 0 18px;
  font-size: 12px;
}

.project-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.project-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #253139;
}

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

.process {
  padding-top: 21px;
  padding-bottom: 15px;
}

.process .section-heading {
  margin-bottom: 18px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 0 8px;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-align: left;
}

.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  right: -20px;
  width: 13px;
  height: 13px;
  border-top: 3px solid #a6b4bc;
  border-right: 3px solid #a6b4bc;
  transform: rotate(45deg);
}

.process-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
}

.process-icon svg {
  width: 26px;
  height: 26px;
}

.process-list h3 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 5px;
  font-size: 12.5px;
}

.process-list h3 strong {
  color: var(--blue);
  font-size: 19px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.34;
}

.colors {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px 88px;
}

.colors img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.colors-copy p {
  margin-bottom: 22px;
}

.areas {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 0;
  align-items: stretch;
  height: 253px;
  overflow: hidden;
  padding: 0;
  background: var(--bg-soft);
}

.areas-copy {
  align-self: center;
  padding: 18px 32px 18px max(52px, calc((100vw - var(--max)) / 2 + 24px));
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 16px;
  max-width: 360px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  position: relative;
  padding-left: 28px;
  font-size: 13px;
  font-weight: 800;
}

.area-list a {
  color: inherit;
}

.area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.area-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.area-link {
  margin-top: 14px;
}

.map-panel {
  position: relative;
  min-height: 253px;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 0;
}

.map-panel img {
  width: 100%;
  height: 100%;
  min-height: 253px;
  object-fit: cover;
}

.lightbox-target {
  cursor: zoom-in;
  transition: opacity 160ms ease, transform 160ms ease, filter 160ms ease;
}

.lightbox-target:hover,
.lightbox-target:focus-visible {
  opacity: 0.94;
  filter: saturate(1.06) contrast(1.04);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(8, 18, 26, 0.86);
}

.image-lightbox.is-open {
  display: grid;
}

.image-lightbox figure {
  position: relative;
  max-width: min(1120px, 94vw);
  max-height: 90vh;
  margin: 0;
}

.image-lightbox img {
  width: auto;
  max-width: 100%;
  max-height: 82vh;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.image-lightbox figcaption {
  margin-top: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: none;
  align-items: stretch;
  justify-content: flex-end;
  background: rgba(8, 18, 26, 0.58);
}

.quote-modal.is-open {
  display: flex;
}

.quote-modal-panel {
  width: min(520px, 100%);
  height: 100%;
  overflow-y: auto;
  background: #fff;
  box-shadow: -22px 0 60px rgba(0, 0, 0, 0.26);
}

.quote-modal-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 28px 28px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.quote-modal-head h2 {
  margin: 4px 0 0;
  font-size: 30px;
  line-height: 1.1;
}

.quote-modal-head p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.quote-modal-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  cursor: pointer;
}

.quote-modal-body {
  padding: 24px 28px 28px;
}

.quote-contact-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.quote-contact-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--blue-dark);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 850;
}

.quote-modal-form {
  display: grid;
  gap: 14px;
}

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

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 11px;
  color: var(--ink);
  background: #f8fafb;
  border: 1px solid #cfdbe2;
  border-radius: 6px;
}

.form-field textarea {
  min-height: 116px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(13, 95, 156, 0.2);
  border-color: var(--blue);
}

.quote-form-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quote-modal-form .button {
  width: 100%;
}

.quote {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding: 20px max(60px, calc((100vw - var(--max)) / 2 + 24px));
  color: #fff;
  background:
    linear-gradient(110deg, rgba(8, 58, 102, 0.98), rgba(13, 95, 156, 0.94)),
    var(--blue-dark);
}

.quote-copy {
  position: static;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.quote-actions {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.quote-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}

.quote-phone svg {
  color: #fff;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #3d484f;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  color: var(--ink);
  background: #f8faf9;
  border: 1px solid #cfd8d4;
  border-radius: 6px;
  padding: 11px 12px;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.quote-form textarea {
  min-height: 130px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(13, 95, 156, 0.2);
  border-color: var(--blue);
}

.quote-form button {
  width: fit-content;
}

.form-status {
  align-self: center;
  min-height: 22px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, minmax(120px, 1fr));
  gap: 34px;
  padding: 24px max(44px, calc((100vw - var(--max)) / 2 + 24px)) 18px;
  color: #dfe8e3;
  background: #131d23;
}

.footer p {
  margin: 10px 0 0;
  color: #aebbb5;
}

.footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer a {
  display: block;
  width: fit-content;
  margin-top: 9px;
  color: #dfe8e3;
  font-weight: 500;
}

.footer a:hover,
.footer a:focus-visible {
  color: #fff;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 820px) {
  .site-header {
    gap: 18px;
    padding: 10px 20px;
  }

  .nav {
    gap: 17px;
  }

  .phone-link span {
    display: none;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    width: auto;
    padding: 74px 28px 56px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    min-height: 430px;
  }

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

  .process-list li::after {
    display: none;
  }

  .projects,
  .areas,
  .quote,
  .colors,
  .locations-intro,
  .location-detail-hero,
  .location-detail-section,
  .location-proof,
  .samples-intro,
  .gallery-intro,
  .blog-hero,
  .article-hero {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto 1fr;
    min-height: 70px;
  }

  .brand {
    width: 106px;
  }

  .brand img {
    width: 96px;
  }

  .menu-toggle {
    display: block;
  }

  .header-quote {
    display: none;
  }

  .phone-link {
    min-width: 44px;
    height: 44px;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

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

  .nav a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .hero-copy {
    padding: 58px 22px 44px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-media {
    min-height: 330px;
  }

  .section,
  .projects,
  .areas,
  .quote,
  .colors,
  .locations-intro,
  .location-listing,
  .location-detail-hero,
  .location-detail-section,
  .location-proof,
  .samples-intro,
  .sample-section,
  .gallery-intro,
  .gallery-section,
  .blog-hero,
  .blog-listing,
  .article-hero,
  .article-shell {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-heading {
    margin-bottom: 32px;
    text-align: left;
  }

  .section-heading h2,
  .projects-copy h2,
  .colors-copy h2,
  .areas h2,
  .quote h2 {
    font-size: 31px;
  }

  .service-grid,
  .process-list,
  .project-strip,
  .location-card-grid,
  .sample-grid,
  .gallery-grid,
  .blog-grid,
  .quote-form,
  .footer {
    grid-template-columns: 1fr;
  }

  .gallery-intro,
  .locations-intro,
  .location-detail-hero,
  .samples-intro,
  .blog-hero,
  .article-hero {
    padding-top: 44px;
  }

  .gallery-intro h1,
  .locations-intro h1,
  .location-detail-hero h1,
  .samples-intro h1,
  .blog-hero h1,
  .article-hero h1 {
    font-size: 42px;
  }

  .location-side-panel {
    position: static;
  }

  .gallery-feature img,
  .gallery-card img {
    aspect-ratio: 1.22 / 1;
  }

  .project-strip img {
    height: 220px;
  }

  .colors {
    padding-top: 0;
    padding-bottom: 66px;
  }

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

  .map-panel {
    min-height: 300px;
  }

  .quote-form {
    padding: 20px;
  }

  .quote-form button {
    width: 100%;
  }

  .quote-modal {
    align-items: flex-end;
  }

  .quote-modal-panel {
    width: 100%;
    max-height: 94vh;
    height: auto;
  }

  .quote-modal-head,
  .quote-modal-body {
    padding-left: 22px;
    padding-right: 22px;
  }

  .quote-contact-strip,
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 34px;
  }

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

  .button {
    padding-left: 16px;
    padding-right: 16px;
  }

  .map-point {
    font-size: 12px;
  }
}

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

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