@font-face {
  font-family: "Lato BuiltWright";
  src: url("fonts/lato-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato BuiltWright";
  src: url("fonts/lato-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --green: oklch(0.39 0.1 158);
  --green-dark: oklch(0.28 0.075 158);
  --cream: oklch(0.94 0.028 86);
  --off-white: oklch(0.975 0.003 255);
  --surface: oklch(0.945 0.006 255);
  --steel: oklch(0.56 0.012 255);
  --ink: oklch(0.16 0.008 255);
  --ink-soft: oklch(0.34 0.012 255);
  --line: oklch(0.81 0.008 255);
  --focus: oklch(0.72 0.14 145);
  --page-bg: var(--off-white);
  --page-text: var(--ink);
  --panel-bg: var(--surface);
  --muted-text: var(--ink-soft);
  --divider: var(--line);
  --link-text: var(--green-dark);
  --control-bg: var(--off-white);
  --radius: 12px;
  --shell: min(1240px, calc(100vw - 48px));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --z-header: 20;
  --z-menu: 30;
  --z-mobile-call: 40;
}

:root[data-theme="light"] {
  color-scheme: light;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --page-bg: oklch(0.14 0.009 158);
  --page-text: oklch(0.95 0.005 158);
  --panel-bg: oklch(0.19 0.012 158);
  --muted-text: oklch(0.76 0.012 158);
  --divider: oklch(0.36 0.014 158);
  --link-text: oklch(0.79 0.105 145);
  --control-bg: oklch(0.17 0.011 158);
}

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

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

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--page-text);
  font-family: "Lato BuiltWright", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body[data-menu-open] .site-header {
  backdrop-filter: none;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--page-bg);
  color: var(--page-text);
  transform: translateY(-160%);
}

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

.announcement {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 0.35rem 1rem;
  background: var(--green-dark);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.announcement p {
  margin: 0;
}

.site-header {
  position: fixed;
  top: 46px;
  right: auto;
  left: 28px;
  width: calc(72% - 28px);
  z-index: var(--z-header);
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.45rem 0.55rem 0.45rem 0.45rem;
  border-radius: var(--radius);
  background: color-mix(in oklab, var(--ink) 82%, transparent);
  color: var(--off-white);
  backdrop-filter: blur(12px);
}

.brand,
.footer-brand {
  display: block;
  flex: 0 0 auto;
}

.brand {
  display: grid;
  min-height: 52px;
  place-items: center;
  padding-inline: 0.7rem;
  border-radius: 8px;
  background: var(--off-white);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.25vw, 1.4rem);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.theme-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.6rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.theme-toggle::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 6px 0 currentColor;
  transition: box-shadow 200ms var(--ease), transform 200ms var(--ease);
}

:root[data-theme="dark"] .theme-toggle::before {
  box-shadow: inset 0 0 currentColor;
  transform: rotate(180deg);
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a:not(.nav-phone)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 2px;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-phone {
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: var(--cream);
  color: var(--green-dark);
}

.menu-toggle {
  display: none;
  min-width: 68px;
  min-height: 44px;
  border: 1px solid var(--cream);
  border-radius: 8px;
  background: transparent;
  color: var(--off-white);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: calc(100dvh - 34px);
  padding: 12px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero-grid {
  display: grid;
  height: calc(100dvh - 58px);
  min-height: calc(100dvh - 58px);
  grid-template-columns: minmax(0, 3.25fr) minmax(260px, 1fr);
  grid-template-rows: minmax(0, 0.72fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.hero-grid > * {
  min-height: 0;
}

.hero-main,
.hero-status,
.hero-tile {
  border-radius: var(--radius);
  animation: bay-settle 850ms var(--ease) both;
}

.hero-main {
  position: relative;
  grid-row: 1 / -1;
  overflow: hidden;
  background: var(--ink);
}

.hero-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in oklab, var(--ink) 10%, transparent) 20%, color-mix(in oklab, var(--ink) 86%, transparent) 100%);
  pointer-events: none;
}

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

.hero-frame {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: calc(100dvh - 58px);
  align-items: flex-end;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.hero-panel {
  width: min(860px, 100%);
  color: var(--off-white);
}

.hero-kicker {
  margin-bottom: 0.8rem;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero h1 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 5.25vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.hero-copy {
  max-width: 58ch;
  margin-bottom: 1.6rem;
  color: oklch(0.91 0.006 255);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.hero-status {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--cream);
  color: var(--green-dark);
  animation-delay: 90ms;
}

.hero-status p,
.hero-status span {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-status strong {
  font-size: clamp(1.2rem, 1.9vw, 1.85rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero-status > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid color-mix(in oklab, var(--green-dark) 28%, transparent);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.hero-tile {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--off-white);
  text-decoration: none;
}

.hero-repair {
  animation-delay: 150ms;
}

.hero-fabrication {
  animation-delay: 210ms;
}

.hero-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, color-mix(in oklab, var(--ink) 88%, transparent) 100%);
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.hero-repair img {
  object-position: 50% 44%;
}

.hero-tile:hover img,
.hero-tile:focus-visible img {
  transform: scale(1.025);
}

.hero-tile-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem;
}

.hero-tile-copy > span:first-child {
  display: grid;
}

.hero-tile-copy strong {
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1;
}

.hero-tile-copy small {
  margin-top: 0.35rem;
  color: oklch(0.9 0.006 255);
}

.hero-tile-copy > span:last-child {
  color: var(--cream);
  font-size: 1.45rem;
}

@keyframes bay-settle {
  from {
    opacity: 0.84;
    filter: blur(4px);
    transform: translateY(10px);
  }
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  background: var(--cream);
  color: var(--green-dark);
}

.button-primary:hover {
  background: var(--off-white);
}

.button-quiet {
  border-color: color-mix(in oklab, var(--off-white) 66%, transparent);
  background: color-mix(in oklab, var(--ink) 70%, transparent);
  color: var(--off-white);
}

.button-quiet:hover {
  border-color: var(--off-white);
  background: var(--off-white);
  color: var(--ink);
}

.button-outline {
  border-color: var(--link-text);
  background: transparent;
  color: var(--link-text);
}

.button-outline:hover {
  background: var(--green);
  color: var(--off-white);
}

.section-marker {
  margin-bottom: 1rem;
  color: var(--link-text);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.intro-heading {
  max-width: 980px;
}

.intro h2,
.services h2,
.shop-story h2,
.work h2,
.appointments h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5.7vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.intro-copy {
  display: grid;
  max-width: 980px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 3rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.intro-copy p {
  max-width: 48ch;
  margin-bottom: 0;
}

.services {
  background: var(--panel-bg);
}

.services-heading,
.work-heading {
  display: grid;
  max-width: 850px;
  gap: 1.25rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services-heading p,
.work-heading p {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted-text);
  font-size: 1.12rem;
}

.service-bay {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding-inline: clamp(1rem, 3vw, 2.25rem);
}

.service-bay::before,
.service-bay::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: 3px;
  background: var(--green);
}

.service-bay::before {
  left: 0;
}

.service-bay::after {
  right: 0;
}

.service-rail {
  display: grid;
}

.service-item {
  display: grid;
  grid-template-areas:
    "title copy"
    "action copy";
  grid-template-columns: minmax(10.5rem, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 0.55rem 1.5rem;
  padding: 1.5rem 0.75rem;
  border-bottom: 1px solid var(--divider);
}

.service-item:first-child {
  border-top: 1px solid var(--divider);
}

.service-item h3 {
  grid-area: title;
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 900;
}

.service-item p {
  grid-area: copy;
  margin: 0;
  color: var(--muted-text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.service-item a {
  grid-area: action;
  align-self: end;
  justify-self: start;
  min-height: 44px;
  align-content: center;
  color: var(--link-text);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.service-featured {
  margin-inline: -0.75rem;
  padding-inline: 1.5rem;
  border-bottom-color: transparent;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--off-white);
}

.service-featured p,
.service-featured a {
  color: var(--off-white);
}

.service-media {
  position: relative;
  min-height: 650px;
}

.service-media figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.service-media figure:hover img {
  transform: scale(1.018);
}

.service-media-main {
  position: absolute;
  inset: 0 14% 16% 0;
}

.service-media-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  aspect-ratio: 4 / 3;
  border: 6px solid var(--panel-bg);
}

.shop-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
  padding-block: 0;
  background: var(--ink);
  color: var(--off-white);
}

.shop-photo {
  min-height: 760px;
}

.shop-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
}

.shop-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 7vw, 7rem);
}

.shop-copy h2 {
  margin-bottom: 2rem;
}

.shop-copy p:not(.section-marker) {
  max-width: 52ch;
  color: oklch(0.84 0.008 255);
  font-size: 1.05rem;
}

.shop-copy .text-link {
  align-self: flex-start;
  min-height: 44px;
  margin-top: 1rem;
  color: var(--cream);
  font-weight: 900;
}

.work {
  overflow: hidden;
}

.work-grid {
  display: grid;
  width: min(1480px, calc(100vw - 32px));
  margin-inline: auto;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: minmax(260px, 34vw) minmax(260px, 28vw);
  gap: 12px;
}

.work-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel-bg);
}

.work-grid figure::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--ink) 86%, transparent));
  pointer-events: none;
}

.work-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.work-grid figure:hover img {
  transform: scale(1.018);
}

.work-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  padding: clamp(1rem, 2vw, 1.6rem);
  color: var(--off-white);
}

.work-grid figcaption strong {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.1;
}

.work-grid figcaption span {
  margin-top: 0.3rem;
  color: oklch(0.87 0.006 255);
  font-size: 0.82rem;
}

.work-wide {
  grid-column: span 2;
}

.work-tall {
  grid-row: span 2;
}

.appointments {
  background: var(--green);
  color: var(--off-white);
}

.appointment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.appointment-intro {
  position: sticky;
  top: 2rem;
}

.appointment-intro .section-marker {
  color: var(--cream);
}

.appointment-intro h2 {
  margin-bottom: 1.5rem;
}

.appointment-intro > p:not(.section-marker, .appointment-state, .appointment-immediate) {
  max-width: 55ch;
  margin-bottom: 1.5rem;
  color: oklch(0.91 0.018 105);
  font-size: 1.05rem;
}

.appointment-state {
  display: flex;
  max-width: 52ch;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  border: 1px solid color-mix(in oklab, var(--cream) 42%, transparent);
  border-radius: var(--radius);
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 700;
}

.appointment-state > span:first-child {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: var(--cream);
}

.appointment-immediate {
  color: var(--off-white);
  font-weight: 700;
}

.appointment-immediate a {
  color: var(--cream);
}

.appointment-form {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  border-radius: var(--radius);
  background: var(--page-bg);
  color: var(--page-text);
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.appointment-form label {
  display: grid;
  min-width: 0;
  gap: 0.45rem;
  font-size: 0.86rem;
  font-weight: 900;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--divider);
  border-radius: 8px;
  background: var(--control-bg);
  color: var(--page-text);
}

.appointment-form textarea {
  min-height: 128px;
  resize: vertical;
  line-height: 1.5;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
  color: var(--muted-text);
  opacity: 1;
}

.appointment-submit {
  display: grid;
  grid-template-columns: minmax(210px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding-top: 0.25rem;
}

.appointment-button {
  border-color: var(--green);
  background: var(--green);
  color: var(--off-white);
}

.appointment-button:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.appointment-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-response {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-response:focus {
  outline: 0;
}

.contact {
  background: var(--page-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-lead h2 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
}

.contact-lead > p:not(.section-marker) {
  max-width: 58ch;
  margin-bottom: 1.8rem;
  color: var(--muted-text);
  font-size: 1.1rem;
}

.contact .button-primary {
  background: var(--green);
  color: var(--off-white);
}

.contact .button-primary:hover {
  background: var(--green-dark);
}

.visit-card {
  display: grid;
  gap: 2.5rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  background: var(--panel-bg);
}

.visit-card h3 {
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

.visit-card address {
  margin-bottom: 1rem;
  color: var(--muted-text);
  font-style: normal;
}

.map-frame {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  background: var(--control-bg);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.text-link {
  color: var(--link-text);
  font-weight: 900;
}

.hours dl {
  margin: 0;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--divider);
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dd {
  color: var(--muted-text);
  text-align: right;
}

.site-footer {
  padding-block: 4rem 1.5rem;
  background: var(--ink);
  color: var(--off-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 3rem;
}

.footer-brand img {
  width: 150px;
  height: auto;
}

.footer-contact,
.footer-social {
  display: grid;
  gap: 0.55rem;
}

.footer-contact a,
.footer-social a {
  color: oklch(0.85 0.008 255);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid oklch(0.31 0.008 255);
  color: oklch(0.66 0.008 255);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-call {
  display: none;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 0.65rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 2.5fr) minmax(240px, 1fr);
  }

  .service-bay {
    grid-template-columns: 1fr 0.78fr;
  }

  .service-item {
    grid-template-areas:
      "title"
      "copy"
      "action";
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .service-item a {
    justify-self: start;
  }

  .shop-copy {
    padding-inline: 3rem;
  }
}

@media (max-width: 1099px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  html {
    scroll-padding-top: 88px;
  }

  body {
    padding-bottom: 64px;
  }

  .site-header {
    top: 54px;
    right: 18px;
    left: 18px;
    width: calc(100% - 36px);
    min-height: 66px;
    padding: 0.45rem;
  }

  .brand img {
    width: 108px;
    height: 50px;
  }

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

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: var(--z-menu);
    display: none;
    align-content: start;
    align-items: stretch;
    padding: 8rem 20px 7rem;
    background: var(--page-bg);
    font-size: 1.35rem;
    overflow-y: auto;
  }

  .site-nav[data-open] {
    display: grid;
  }

  .site-nav a {
    display: flex;
    min-height: 56px;
    align-items: center;
    border-bottom: 1px solid var(--divider);
  }

  .site-nav a:not(.nav-phone) {
    color: var(--page-text);
  }

  .site-nav .theme-toggle {
    width: 100%;
    min-height: 56px;
    justify-content: flex-start;
    padding-inline: 0;
    border-bottom: 1px solid var(--divider);
    border-radius: 0;
    color: var(--page-text);
    font-size: 1rem;
  }

  .nav-phone {
    justify-content: center;
    margin-top: 1rem;
    border: 0;
    background: var(--green);
    color: var(--off-white);
  }

  body[data-menu-open] .menu-toggle {
    position: fixed;
    top: 66px;
    right: 30px;
    z-index: calc(var(--z-menu) + 1);
    border-color: var(--page-text);
    background: var(--page-bg);
    color: var(--page-text);
  }

  .hero {
    min-height: 0;
    padding: 10px;
  }

  .hero-grid {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px;
  }

  .hero-main {
    min-height: calc(100dvh - 62px);
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .hero-image {
    object-position: 56% 55%;
  }

  .hero-frame {
    align-items: flex-end;
    min-height: calc(100dvh - 62px);
    padding: 8.5rem 1.5rem calc(1.5rem + 64px);
  }

  .hero-panel {
    width: min(100%, 720px);
  }

  .hero-status {
    min-height: 170px;
    grid-column: 1 / -1;
  }

  .hero-tile {
    min-height: 340px;
  }

  .hero h1 {
    max-width: 16ch;
    font-size: clamp(2.4rem, 8.5vw, 4.5rem);
  }

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

  .service-bay {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-inline: 1.25rem;
  }

  .service-media {
    min-height: 560px;
  }

  .shop-story {
    grid-template-columns: 1fr;
  }

  .shop-photo {
    min-height: 620px;
    max-height: 82dvh;
  }

  .shop-copy {
    padding: 5rem var(--shell-gutter, 20px);
  }

  .shop-copy > * {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 48vw 58vw 42vw;
  }

  .work-wide {
    grid-column: span 2;
  }

  .work-tall {
    grid-row: span 2;
  }

  .appointment-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .appointment-intro {
    position: static;
  }

  .mobile-call {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: var(--z-mobile-call);
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 20px;
    background: var(--cream);
    color: var(--green-dark);
    font-size: 0.92rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-call span {
    white-space: nowrap;
  }

  .text-link,
  .footer-contact a,
  .footer-social a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .announcement {
    min-height: 42px;
    padding-inline: 0.8rem;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .section {
    padding-block: 5rem;
  }

  .hero-main,
  .hero-frame {
    min-height: calc(100dvh - 62px);
  }

  .hero-image {
    object-position: 60% 52%;
  }

  .hero-panel {
    padding: 0;
  }

  .hero h1 {
    max-width: 13ch;
    margin-bottom: 0.8rem;
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    line-height: 1.02;
  }

  .hero-copy {
    margin-bottom: 1.25rem;
    font-size: 0.96rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-status {
    min-height: 156px;
  }

  .hero-status strong {
    font-size: 1.35rem;
  }

  .hero-tile {
    min-height: 58vw;
  }

  .hero-tile-copy {
    padding: 0.9rem;
  }

  .hero-tile-copy strong {
    font-size: 1.1rem;
  }

  .hero-tile-copy small {
    font-size: 0.68rem;
  }

  .button {
    width: 100%;
  }

  .intro h2,
  .services h2,
  .shop-story h2,
  .work h2,
  .appointments h2,
  .contact h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .service-bay {
    padding-inline: 1rem;
  }

  .service-item {
    padding-block: 1.35rem;
  }

  .service-featured {
    margin-inline: -0.5rem;
    padding-inline: 1rem;
  }

  .service-media {
    display: grid;
    min-height: auto;
    gap: 12px;
  }

  .service-media-main,
  .service-media-secondary {
    position: static;
    width: auto;
    border: 0;
  }

  .service-media-main {
    aspect-ratio: 4 / 5;
  }

  .service-media-secondary {
    aspect-ratio: 4 / 3;
  }

  .shop-photo {
    min-height: 68dvh;
    max-height: 720px;
  }

  .shop-copy {
    padding: 4.5rem 16px;
  }

  .work-grid {
    width: calc(100vw - 24px);
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .work-grid figure,
  .work-wide,
  .work-tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .work-grid .work-tall {
    aspect-ratio: 4 / 5;
  }

  .appointment-grid {
    gap: 2.5rem;
  }

  .field-pair,
  .appointment-submit {
    grid-template-columns: 1fr;
  }

  .appointment-form {
    padding: 1.25rem;
  }

  .contact-actions {
    display: grid;
  }

  .visit-card {
    padding: 1.5rem;
  }

  .hours dl div {
    display: grid;
    gap: 0.2rem;
  }

  .hours dd {
    text-align: left;
  }

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

  .footer-bottom {
    display: grid;
    gap: 0.5rem;
  }
}

@media (max-width: 360px) {
  .announcement {
    font-size: 0.64rem;
  }

  .site-header {
    right: 12px;
    left: 12px;
    width: calc(100% - 24px);
  }

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

  .hero-frame {
    padding-inline: 1.1rem;
  }

  .mobile-call {
    padding-inline: 14px;
    font-size: 0.84rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .service-media img,
  .work-grid img,
  .hero-tile img {
    transform: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .hero-main {
    backdrop-filter: none;
  }

  .site-header {
    background: var(--ink);
  }
}
