@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/heading.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("assets/body.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 200 900;
}

:root {
  --background: #101617;
  --surface: #1b2728;
  --foreground: #f5f6f3;
  --muted: #bdc8c5;
  --aqua: #39d8c1;
  --aqua-ink: #072320;
  --line: #344341;
  --aqua-glow: rgba(57, 216, 193, 0.32);
  --container: 1520px;
  --gutter: 52px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--aqua) var(--background);
}

/* Keep in-page destinations clear of the mobile browser edge. */
main [id] {
  scroll-margin-top: 64px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font: 18px/1.5 "Source Sans 3", sans-serif;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--aqua);
  color: var(--aqua-ink);
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

a:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 5px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  line-height: 1.04;
}

figure,
p {
  margin-top: 0;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--aqua);
  color: var(--aqua-ink);
  font-weight: 700;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: relative;
  z-index: 20;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img {
  width: 220px;
  height: auto;
}

.menu-toggle {
  display: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 17px;
}

.primary-nav .button {
  line-height: 1;
  text-align: center;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  background: var(--aqua);
  color: var(--aqua-ink);
  font-weight: 700;
  transition:
    background-color 220ms ease-out,
    color 220ms ease-out,
    box-shadow 220ms ease-out;
}

.button:hover,
.button:focus-visible {
  background: transparent;
  color: var(--aqua);
  box-shadow: inset 0 0 0 2px var(--aqua);
  text-decoration: none;
}

.button.button-inverted {
  background: transparent;
  color: var(--aqua);
  box-shadow: inset 0 0 0 2px var(--aqua);
}

.button.button-inverted:hover,
.button.button-inverted:focus-visible {
  background: var(--aqua);
  color: var(--aqua-ink);
  box-shadow: none;
}

.text-link {
  color: var(--aqua);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  transition: color 180ms ease-out;
}

.hero .text-link:hover,
.hero .text-link:focus-visible,
.section-heading .text-link:hover,
.section-heading .text-link:focus-visible,
.about .text-link:hover,
.about .text-link:focus-visible,
.process .text-link:hover,
.process .text-link:focus-visible {
  color: #ffffff;
}

.primary-nav a:not(.button),
.service-links a,
.footer-links a {
  position: relative;
}

.primary-nav a:not(.button)::after,
.service-links a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--aqua);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-nav a:not(.button)::after {
  bottom: -8px;
}

.service-links a::after {
  display: none;
}

.footer-links a::after {
  bottom: -6px;
}

.primary-nav a:not(.button):hover::after,
.primary-nav a:not(.button):focus-visible::after,
.primary-nav a[aria-current]::after,
.service-links a:hover::after,
.service-links a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  min-height: 535px;
  display: grid;
  grid-template-columns: 42% 58%;
  margin-bottom: 20px;
}

.hero-copy {
  align-self: center;
  padding: 50px 38px 50px 0;
}

.local-note {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
}

.hero h1 {
  max-width: 460px;
  font-size: 78px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--aqua);
}

.hero-intro {
  max-width: 360px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-image {
  position: relative;
  min-height: 535px;
  margin: 0;
}

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

.hero-image figcaption {
  position: absolute;
  right: 24px;
  bottom: 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 9px;
  background: rgba(245, 240, 225, 0.88);
  color: #122220;
  font-size: 15px;
}

.hero-image figcaption::before {
  width: 35px;
  height: 1px;
  background: currentColor;
  content: "";
}

.service-links {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-block: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font: 24px/1 "Barlow Condensed", sans-serif;
  font-weight: 700;
}

.service-links a {
  flex: 1;
  margin-block: -12px;
  padding: 12px 8px;
  text-align: center;
  transition:
    background-color 220ms ease-out,
    color 220ms ease-out,
    text-shadow 220ms ease-out,
    box-shadow 220ms ease-out;
}

.service-links a + a {
  border-left: 1px solid var(--line);
}

.service-links a:hover,
.service-links a:focus-visible {
  background: rgba(57, 216, 193, 0.09);
  color: var(--aqua);
  box-shadow:
    0 0 0 2px var(--aqua),
    0 0 14px 4px rgba(57, 216, 193, 0.78),
    0 0 40px 10px rgba(57, 216, 193, 0.4);
  text-shadow:
    0 0 5px var(--aqua),
    0 0 13px rgba(57, 216, 193, 0.95),
    0 0 28px rgba(57, 216, 193, 0.78);
}

.work {
  margin: 32px 0 52px;
  padding: 44px;
  background: var(--surface);
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 30px;
}

.work-kicker {
  margin: 0 0 9px;
  color: var(--aqua);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work h2 {
  font-size: 58px;
}

.featured-gallery {
  display: grid;
  grid-template-columns: minmax(0, 3.3fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.featured-gallery figure,
.project-grid figure {
  position: relative;
  margin: 0;
}

.project-image-link {
  min-height: 0;
  display: block;
  height: 100%;
}

.featured-project {
  min-width: 0;
  display: block;
}

.featured-project img {
  width: 100%;
  height: auto;
  aspect-ratio: 1230 / 475;
  object-fit: contain;
}

.featured-side {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  contain: size;
}

.featured-side figure {
  min-height: 0;
  display: block;
}

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

.featured-side figure:first-child img {
  object-position: center 40%;
}

.featured-side .motorcycle-project img {
  box-sizing: border-box;
  padding: 6px 8px 0;
  background: var(--surface);
  object-fit: contain;
  object-position: center;
}

.featured-side figure:last-child img {
  object-position: center 57%;
}

figcaption {
  height: 35px;
  padding-top: 9px;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.project-grid img {
  height: 210px;
  object-position: center;
}

.project-grid figure:nth-child(4) img {
  object-position: center 40%;
}

.work .project-caption {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: max-content;
  max-width: calc(100% - 14px);
  height: auto;
  display: grid;
  gap: 4px;
  padding: 10px 26px 11px 15px;
  border-left: 4px solid var(--aqua);
  background: linear-gradient(90deg, rgba(8, 13, 14, 0.97) 0%, rgba(8, 13, 14, 0.88) 72%, rgba(8, 13, 14, 0.18) 100%);
  color: var(--foreground);
  line-height: 1;
  pointer-events: none;
}

.work .project-caption span {
  color: var(--aqua);
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.work .project-caption strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  line-height: 1;
}

.featured-side .project-caption strong,
.project-grid .project-caption strong {
  font-size: 19px;
}

.about {
  width: min(calc(100% - (2 * var(--gutter))), 1392px);
  margin-inline: auto;
  background: var(--surface);
}

.about-inner {
  padding: 44px;
}

.about-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 34px;
}

.about-kicker {
  margin: 0 0 9px;
  color: var(--aqua);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about h2 {
  font-size: 58px;
}

.about-intro {
  max-width: 520px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 19px;
}

.heritage-visuals {
  height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(300px, 1fr);
  gap: 20px;
}

.heritage-feature {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--background);
}

.heritage-feature img {
  height: 100%;
}

.heritage-feature--today img {
  object-position: center 30%;
}

.heritage-feature--roots img {
  object-position: 40% 44%;
}

.heritage-feature--legacy img {
  object-position: 52% 43%;
}

.heritage-side {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.heritage-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: auto;
  display: grid;
  gap: 4px;
  padding: 16px 20px 17px 25px;
  border-left: 6px solid var(--aqua);
  background: rgba(7, 13, 14, 0.94);
  color: var(--foreground);
  line-height: 1.15;
}

.heritage-caption span {
  color: var(--aqua);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.heritage-caption strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  line-height: 1.05;
}

.heritage-feature--today .heritage-caption {
  padding-block: 19px 20px;
}

.heritage-feature--today .heritage-caption strong {
  font-size: 31px;
}

.heritage-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  margin-top: 36px;
  padding-top: 31px;
  border-top: 1px solid var(--line);
}

.heritage-story__copy {
  max-width: 820px;
}

.heritage-story h3 {
  font-size: 34px;
}

.heritage-story__copy p {
  max-width: 780px;
  margin: 13px 0 17px;
  color: var(--muted);
}

.heritage-since {
  display: grid;
  justify-items: center;
  margin: 0;
  color: var(--foreground);
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.82;
}

.heritage-since span {
  color: var(--aqua);
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.heritage-since strong {
  margin-top: 8px;
  font-size: 76px;
}

.process {
  padding: 68px 0 66px;
  border-bottom: 1px solid var(--line);
}

.process-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 39px;
}

.process-kicker {
  margin: 0 0 10px;
  color: var(--aqua);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process h2 {
  font-size: 58px;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 25px;
  right: 14%;
  left: 14%;
  height: 1px;
  background: var(--line);
}

.process-steps li {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.process-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--aqua);
  background: var(--background);
  color: var(--aqua);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.process-steps h3 {
  font-size: 29px;
}

.process-steps p {
  max-width: 330px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.process-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 29px;
}

.reviews {
  padding: 70px 0 62px;
  border-bottom: 1px solid var(--line);
}

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

.reviews-kicker {
  margin: 0 0 10px;
  color: var(--aqua);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews h2 {
  max-width: 660px;
  font-size: 58px;
}

.reviews-summary {
  min-width: 230px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition:
    border-color 200ms ease-out,
    box-shadow 200ms ease-out;
}

.reviews-summary:hover,
.reviews-summary:focus-visible {
  border-color: var(--aqua);
  box-shadow: 0 0 22px rgba(57, 216, 193, 0.18);
}

.reviews-summary > img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.reviews-summary > span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 3px 9px;
}

.reviews-summary strong {
  font-size: 22px;
}

.reviews-summary small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
}

.review-stars {
  color: #f6b91a;
  font-family: Arial, sans-serif;
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-rail {
  display: flex;
  gap: 18px;
  padding: 4px 2px 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--aqua) var(--surface);
  scrollbar-width: thin;
}

.review-rail::-webkit-scrollbar {
  height: 7px;
}

.review-rail::-webkit-scrollbar-track {
  background: var(--surface);
}

.review-rail::-webkit-scrollbar-thumb {
  background: var(--aqua);
}

.review-card {
  flex: 0 0 min(380px, 34vw);
  min-height: 250px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  padding: 25px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--aqua);
  background: var(--surface);
  scroll-snap-align: start;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 200ms ease-out,
    box-shadow 200ms ease-out;
}

.review-card:hover,
.review-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(57, 216, 193, 0.72);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), 0 0 24px rgba(57, 216, 193, 0.16);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.review-card__top img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.review-card blockquote {
  margin: 0;
  color: var(--foreground);
  font-size: 19px;
  line-height: 1.55;
}

.review-card > p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.review-card > p strong {
  font-size: 16px;
}

.review-card > p span {
  color: var(--muted);
  font-size: 13px;
}

.review-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.review-controls span {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.review-controls button {
  min-width: 98px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--foreground);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition:
    border-color 180ms ease-out,
    color 180ms ease-out,
    background-color 180ms ease-out;
}

.review-controls button:hover,
.review-controls button:focus-visible {
  border-color: var(--aqua);
  background: rgba(57, 216, 193, 0.08);
  color: var(--aqua);
}

.review-controls button:disabled {
  cursor: default;
  opacity: 0.35;
}

.contact {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.15fr) minmax(245px, 0.85fr);
  align-items: center;
  gap: 32px;
  padding-block: 64px;
}

.contact h2 {
  max-width: 430px;
  font-size: 58px;
}

.contact-intro p {
  max-width: 360px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.contact-details {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-style: normal;
  font-size: 17px;
}

.location-card {
  position: relative;
  min-width: 0;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition:
    border-color 220ms ease-out,
    box-shadow 220ms ease-out;
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transition:
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 220ms ease-out;
}

.location-card__label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 24px);
  display: inline-grid;
  gap: 1px;
  padding: 10px 12px;
  background: rgba(16, 22, 23, 0.9);
  color: var(--foreground);
  text-align: center;
  transform: translateX(-50%);
}

.location-card__label strong {
  font-size: 15px;
  font-weight: 700;
}

.location-card__label small {
  color: var(--aqua);
  font-size: 14px;
}

.location-card:hover,
.location-card:focus-visible {
  border-color: var(--aqua);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.location-card:hover img,
.location-card:focus-visible img {
  transform: scale(1.025);
  filter: brightness(1.04);
}

.location-card:hover .location-card__label small,
.location-card:focus-visible .location-card__label small {
  color: #ffffff;
}

.contact-action {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.contact-details a {
  width: fit-content;
}

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

.map-link {
  display: grid;
  gap: 4px;
}

.map-link:hover .map-label,
.map-link:focus-visible .map-label {
  color: #ffffff;
}

.map-label {
  width: fit-content;
  color: var(--aqua);
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 180ms ease-out;
}

.hours {
  margin: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 28px;
  border-top: 1px solid var(--line);
}

.site-footer > img {
  width: 155px;
  height: auto;
}

.footer-links {
  display: flex;
  gap: 25px;
  font-size: 16px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (hover: hover) and (pointer: fine) {
  .featured-gallery figure img,
  .project-grid figure img {
    position: relative;
    z-index: 1;
    transition:
      transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 260ms ease-out,
      filter 260ms ease-out;
  }

  .featured-gallery figure:hover img,
  .featured-gallery figure:focus-within img,
  .project-grid figure:hover img {
    transform: translateY(-6px);
    box-shadow:
      0 11px 28px rgba(0, 0, 0, 0.34),
      0 0 0 2px var(--aqua),
      0 0 14px 3px rgba(57, 216, 193, 0.75),
      0 0 36px 8px rgba(57, 216, 193, 0.4);
    filter:
      brightness(1.045)
      drop-shadow(0 0 14px rgba(57, 216, 193, 0.46));
  }
}

@media (min-width: 981px) {
  :root {
    --gutter: 64px;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .contact {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .contact-action {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    align-items: end;
    justify-items: stretch;
  }

  .contact-action .button {
    justify-self: end;
  }

  .featured-gallery {
    grid-template-columns: 1fr;
  }

  .featured-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 20px;
    contain: none;
  }

  .featured-side figure {
    display: block;
  }

  .featured-side img {
    height: auto;
    aspect-ratio: 1.5;
  }

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

  .about-intro {
    max-width: 690px;
  }

  .heritage-visuals {
    height: auto;
    grid-template-columns: 1fr;
  }

  .heritage-feature--today {
    height: 440px;
  }

  .heritage-side {
    height: 270px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .process h2 {
    font-size: 58px;
  }

  .process-steps {
    gap: 26px;
  }

  .process-steps p {
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 22px;
  }

  .site-header {
    min-height: auto;
    gap: 16px;
    padding-block: 22px;
  }

  body::before {
    content: "";
    position: fixed;
    z-index: 15;
    inset: 0;
    background: rgba(3, 7, 8, 0.68);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease-out;
  }

  body.menu-open::before {
    opacity: 1;
    pointer-events: auto;
  }

  .brand img {
    width: 175px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--foreground);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    background: currentColor;
    transition:
      transform 220ms ease-out,
      opacity 180ms ease-out;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible,
  .menu-toggle[aria-expanded="true"] {
    border-color: var(--aqua);
    color: var(--aqua);
  }

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

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

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

  .primary-nav {
    position: absolute;
    top: calc(100% - 10px);
    right: var(--gutter);
    left: var(--gutter);
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: #152021;
    font-size: 16px;
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    transition:
      opacity 180ms ease-out,
      transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s linear 220ms;
  }

  .primary-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .primary-nav a:not(.button) {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:not(.button)::after {
    right: 12px;
    bottom: -1px;
    left: 12px;
  }

  .primary-nav .button {
    width: 100%;
    margin-top: 12px;
    padding: 11px 17px;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }

  .hero-copy {
    padding: 30px 0 35px;
  }

  .local-note {
    margin-bottom: 20px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: 56px;
  }

  .hero-intro {
    font-size: 19px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 10px;
    font-size: clamp(14px, 4vw, 16px);
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .hero-actions .text-link {
    border: 2px solid var(--aqua);
    color: var(--aqua);
    text-decoration: none;
  }

  .hero-actions .text-link:hover,
  .hero-actions .text-link:focus-visible {
    border-color: #ffffff;
    color: #ffffff;
  }

  .hero-image {
    min-height: 0;
    aspect-ratio: 1440 / 1040;
  }

  .hero-image figcaption {
    right: 10px;
    bottom: 8px;
    gap: 8px;
    font-size: 12px;
  }

  .hero-image figcaption::before {
    width: 22px;
  }

  .service-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-block: 20px;
    font-size: 20px;
  }

  .service-links a {
    min-height: 56px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 10px 8px;
    border: 1px solid var(--line);
    border-bottom: 3px solid rgba(57, 216, 193, 0.48);
    background: #152021;
    text-align: center;
  }

  .service-links a + a {
    border-left: 1px solid var(--line);
  }

  .service-links a:last-child {
    grid-column: 1 / -1;
  }

  .service-links a::after {
    right: -1px;
    bottom: -3px;
    left: -1px;
    height: 3px;
  }

  .service-links a:hover,
  .service-links a:focus-visible {
    border-color: var(--aqua);
  }

  .work {
    margin: 22px 0 28px;
    padding: 25px 20px 27px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .text-link {
    display: inline-block;
    margin-top: 18px;
  }

  .work h2 {
    font-size: 42px;
  }

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

  .featured-project {
    display: block;
  }

  .project-image-link {
    height: auto;
  }

  .featured-side {
    display: grid;
    grid-template-rows: none;
    gap: 14px;
    contain: none;
  }

  .featured-side figure {
    display: block;
  }

  .featured-side img {
    height: auto;
    aspect-ratio: 1.5;
  }

  figcaption {
    height: auto;
    padding-top: 11px;
    line-height: 1.5;
  }

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

  .project-grid img {
    height: auto;
    aspect-ratio: 1.1;
  }

  .project-grid figcaption {
    font-size: 15px;
  }

  .work .project-caption {
    max-width: calc(100% - 8px);
    gap: 3px;
    padding: 7px 12px 8px 10px;
    border-left-width: 3px;
  }

  .work .project-caption span {
    font-size: 11px;
  }

  .work .project-caption strong,
  .featured-side .project-caption strong,
  .project-grid .project-caption strong {
    font-size: 16px;
  }

  .about {
    width: calc(100% - (2 * var(--gutter)));
  }

  .about-inner {
    padding: 25px 20px 27px;
  }

  .about-heading {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-bottom: 25px;
  }

  .about-kicker {
    margin-bottom: 7px;
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .about h2 {
    font-size: 42px;
  }

  .about h2 span {
    display: block;
  }

  .about-intro {
    max-width: none;
    margin: 0;
    font-size: 17px;
  }

  .heritage-visuals {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .heritage-feature--today {
    height: clamp(290px, 84vw, 380px);
  }

  .heritage-side {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 16px;
  }

  .heritage-side .heritage-feature {
    height: clamp(225px, 66vw, 310px);
  }

  .heritage-caption,
  .heritage-feature--today .heritage-caption {
    gap: 3px;
    padding: 14px 15px 15px 18px;
    border-left-width: 5px;
  }

  .heritage-caption strong,
  .heritage-feature--today .heritage-caption strong {
    font-size: 23px;
  }

  .heritage-story {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 16px;
    margin-top: 25px;
    padding-top: 24px;
  }

  .heritage-story h3 {
    font-size: 29px;
  }

  .heritage-story__copy p {
    margin: 12px 0 16px;
    font-size: 16px;
  }

  .heritage-since strong {
    font-size: 49px;
  }

  .heritage-since span {
    font-size: 11px;
  }

  .process {
    padding: 48px 0;
  }

  .process-heading {
    display: grid;
    gap: 19px;
    margin-bottom: 31px;
  }

  .process-kicker {
    margin-bottom: 7px;
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .process h2 {
    font-size: 42px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .process-steps::before {
    top: 26px;
    right: auto;
    bottom: 26px;
    left: 25px;
    width: 1px;
    height: auto;
  }

  .process-steps li {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 17px;
    align-items: start;
  }

  .process-number {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .process-steps h3,
  .process-steps p {
    grid-column: 2;
  }

  .process-steps h3 {
    font-size: 27px;
  }

  .process-steps p {
    margin-top: 6px;
    font-size: 16px;
  }

  .process-action {
    justify-content: flex-start;
    margin-top: 27px;
  }

  .reviews {
    padding: 48px 0 42px;
  }

  .reviews-heading {
    display: grid;
    gap: 22px;
    margin-bottom: 24px;
  }

  .reviews h2 {
    font-size: 42px;
  }

  .reviews-summary {
    width: 100%;
    min-width: 0;
  }

  .review-card {
    flex-basis: calc(100% - 28px);
    min-height: 265px;
    padding: 22px;
  }

  .review-card blockquote {
    font-size: 18px;
  }

  .review-controls {
    gap: 10px;
  }

  .review-controls span {
    font-size: 12px;
  }

  .review-controls button {
    min-width: 86px;
    padding-inline: 10px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 40px;
  }

  .contact h2 {
    font-size: 42px;
  }

  .contact .button {
    justify-self: start;
  }

  .site-footer {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: no-preference) {
  body.mobile-reveal .reveal-item {
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 320ms ease-out,
      transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

  body.mobile-reveal .reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .button,
  .primary-nav a:not(.button)::after,
  .service-links a::after,
  .footer-links a::after,
  .service-links a,
  .text-link,
  .featured-gallery figure img,
  .project-grid figure img,
  .review-card,
  .review-rail {
    transition-duration: 80ms !important;
  }

  .featured-gallery figure:hover img,
  .project-grid figure:hover img {
    transform: none;
  }
}
