:root {
  --ink: #0e0f11;
  --ink-2: #17191d;
  --paper: #f7f4ee;
  --white: #ffffff;
  --muted: #cfd5dc;
  --steel: #727c86;
  --line: rgba(255, 255, 255, 0.16);
  --orange: #ff6a00;
  --orange-2: #f4a01f;
  --orange-dark: #a63e00;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(14, 15, 17, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.scroll-progress {
  position: fixed;
  z-index: 100;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2), var(--white));
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
  padding: 0 5vw;
  color: var(--white);
  transition: background 0.25s ease, border-color 0.25s ease, height 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(14, 15, 17, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--orange);
  background: var(--orange);
  color: var(--ink);
  font-weight: 900;
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.16);
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.main-nav a {
  min-width: 92px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 106, 0, 0.24);
  transform: translateY(-1px);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 190px;
}

.icon-btn,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover,
.menu-toggle:hover,
.icon-btn:focus-visible,
.menu-toggle:focus-visible {
  transform: translateY(-2px);
  background: var(--orange);
  border-color: var(--orange);
  color: var(--ink);
  outline: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 89svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-shade,
.hero-lines {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.9) contrast(1.05);
  transform: translateY(var(--hero-shift, 0));
  transition: transform 0.2s linear;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 15, 17, 0.93) 0%, rgba(14, 15, 17, 0.74) 42%, rgba(14, 15, 17, 0.12) 100%),
    linear-gradient(180deg, rgba(14, 15, 17, 0.32) 0%, rgba(14, 15, 17, 0.18) 46%, rgba(14, 15, 17, 0.95) 100%);
}

.hero-lines {
  opacity: 0.52;
  background:
    linear-gradient(115deg, transparent 0 40%, rgba(255, 106, 0, 0.78) 40% 41%, transparent 41% 100%),
    repeating-linear-gradient(115deg, transparent 0 96px, rgba(255, 255, 255, 0.12) 96px 97px);
  animation: heroLines 9s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 10vw));
  margin: 0 0 98px 5vw;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--orange-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--orange);
}

.hero h1 {
  margin: 0;
  font-size: 5.8rem;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-copy {
  width: min(640px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 30px rgba(255, 106, 0, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(255, 106, 0, 0.4);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--orange);
  background: rgba(255, 106, 0, 0.16);
}

.btn-ghost.light {
  color: var(--ink);
  border-color: rgba(14, 15, 17, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

.hero-status {
  position: absolute;
  z-index: 3;
  right: 5vw;
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  width: min(620px, calc(100% - 10vw));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(14, 15, 17, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-status div {
  min-height: 88px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-status div:last-child {
  border-right: 0;
}

.hero-status span,
.contact-panel span,
.stat span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-status strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1rem;
}

.quick-strip {
  overflow: hidden;
  color: var(--white);
  background: var(--orange);
}

.strip-track {
  display: flex;
  width: max-content;
  animation: stripMove 28s linear infinite;
}

.strip-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 34px;
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

.strip-track span::after {
  content: "";
  position: absolute;
  right: 0;
  width: 7px;
  height: 7px;
  background: var(--ink);
  transform: rotate(45deg);
}

.section {
  padding: 96px 5vw;
}

.section-head {
  width: min(760px, 100%);
  margin-bottom: 38px;
}

.section-head h2,
.workshop-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3rem;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-head p,
.workshop-copy p,
.contact-copy p {
  margin: 16px 0 0;
  color: #59626b;
  font-size: 1.04rem;
  line-height: 1.8;
}

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

.service-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 20px 40px rgba(14, 15, 17, 0.14);
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 15, 17, 0.06) 0%, rgba(14, 15, 17, 0.92) 82%),
    linear-gradient(115deg, rgba(255, 106, 0, 0.7) 0 12%, transparent 12% 100%);
  opacity: 0.92;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.service-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.service-card div {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  color: var(--white);
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--orange);
  font-weight: 900;
}

.service-card h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.service-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.workshop {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(360px, 1.12fr);
  gap: 44px;
  align-items: center;
  background: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.process-list div {
  display: grid;
  place-items: center;
  min-height: 116px;
  padding: 14px;
  border: 1px solid rgba(14, 15, 17, 0.1);
  border-radius: var(--radius);
  background: #f3f5f7;
  color: var(--ink);
  font-weight: 900;
}

.process-list svg {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  color: var(--orange);
}

.workshop-gallery {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  grid-auto-rows: 240px;
  gap: 14px;
}

.workshop-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(14, 15, 17, 0.12);
}

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

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  color: var(--white);
  background: var(--ink);
}

.stat {
  min-height: 210px;
  padding: 42px 24px;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.12), transparent 58%),
    var(--ink-2);
}

.stat strong {
  display: block;
  color: var(--orange);
  font-size: 3.1rem;
  line-height: 1;
}

.stat span {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
}

.gallery-section {
  overflow: hidden;
}

.gallery-marquee {
  width: calc(100% + 10vw);
  margin: 0 -5vw 30px;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 5vw;
  animation: galleryMove 42s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

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

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  min-height: 210px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  cursor: pointer;
}

.gallery-track .gallery-item {
  width: 340px;
  height: 220px;
  min-height: 220px;
  flex: 0 0 auto;
}

.gallery-grid .gallery-item:nth-child(1),
.gallery-grid .gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-grid .gallery-item:nth-child(2),
.gallery-grid .gallery-item:nth-child(3),
.gallery-grid .gallery-item:nth-child(5),
.gallery-grid .gallery-item:nth-child(6) {
  grid-column: span 1;
}

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

.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(14, 15, 17, 0.72);
  backdrop-filter: blur(12px);
  font-weight: 800;
  text-align: left;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.07);
  opacity: 0.92;
}

.gallery-item:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.1fr);
  gap: 44px;
  align-items: stretch;
  padding: 96px 5vw;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 106, 0, 0.18) 0 24%, transparent 24% 100%),
    var(--white);
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.2), transparent 54%),
    var(--ink);
  box-shadow: var(--shadow);
}

.address-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.address-row svg {
  display: block;
  width: 26px;
  height: 26px;
  color: var(--orange);
}

.address-row strong {
  display: block;
  margin-top: 6px;
  line-height: 1.55;
}

.map-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 20px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--orange);
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.map-link:hover,
.map-link:focus-visible {
  transform: translateY(-3px);
  background: var(--orange-2);
  outline: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 5vw;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer span {
  font-weight: 900;
  color: var(--white);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--orange-2);
  font-weight: 900;
}

.site-footer .site-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-footer .site-credit svg {
  width: 13px;
  height: 13px;
  color: var(--orange-2);
}

.site-footer .site-credit:hover,
.site-footer .site-credit:focus-visible {
  color: var(--white);
  background: rgba(255, 106, 0, 0.13);
  border-color: rgba(244, 160, 31, 0.48);
  transform: translateY(-2px);
  outline: none;
}

.lightbox {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  width: min(1100px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox figcaption {
  margin-top: 14px;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  color: var(--ink);
  background: var(--orange);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

.hero .reveal {
  opacity: 1;
  transform: translateY(0);
  animation: heroRise 0.76s ease both;
}

.hero .hero-copy.reveal {
  animation-delay: 0.08s;
}

.hero .hero-actions.reveal {
  animation-delay: 0.16s;
}

.hero .hero-status.reveal {
  animation-delay: 0.24s;
}

svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

@keyframes heroLines {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 260px 0, 180px 0;
  }
}

@keyframes heroRise {
  from {
    opacity: 0.68;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stripMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes galleryMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-grid .gallery-item,
  .gallery-grid .gallery-item:nth-child(1),
  .gallery-grid .gallery-item:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 70px;
    padding: 0 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 70px 16px auto 16px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(14, 15, 17, 0.96);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    min-width: 100%;
    text-align: left;
  }

  .header-actions {
    min-width: 0;
    gap: 0;
  }

  .header-actions .icon-btn {
    display: none;
  }

  .site-header .menu-toggle {
    display: inline-grid !important;
    position: fixed;
    top: 14px;
    right: 18px;
    z-index: 70;
    color: var(--ink);
    background: var(--orange);
    border-color: var(--orange);
  }

  .hero {
    min-height: 88svh;
    align-items: start;
    padding-top: 118px;
    padding-bottom: 24px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(14, 15, 17, 0.6) 0%, rgba(14, 15, 17, 0.74) 44%, rgba(14, 15, 17, 0.96) 100%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 22px;
  }

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

  .hero-copy {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 330px;
  }

  .hero-lines {
    opacity: 0.34;
  }

  .hero-status {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    margin: 0 18px;
  }

  .hero-status div {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 16px;
  }

  .hero-status div:last-child {
    border-bottom: 0;
  }

  .section,
  .contact-section {
    padding: 72px 18px;
  }

  .section-head h2,
  .workshop-copy h2,
  .contact-copy h2 {
    font-size: 2.25rem;
  }

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

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

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 620px) {
  .site-header .menu-toggle {
    left: min(calc(100vw - 62px), 328px);
    right: auto;
  }

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

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .gallery-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 380px;
  }

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

  .workshop-gallery .tall {
    grid-row: auto;
  }

  .gallery-track .gallery-item {
    width: 270px;
    height: 190px;
    min-height: 190px;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 150px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
