:root {
  --ink: #070b0f;
  --graphite: #0f151b;
  --graphite-2: #17212a;
  --paper: #f6f8fb;
  --paper-2: #e7edf3;
  --white: #ffffff;
  --text: #111821;
  --muted: #637080;
  --line: rgba(122, 145, 164, 0.28);
  --blue: #155cff;
  --blue-2: #58a7ff;
  --lime: #d4f53f;
  --rust: #b65e37;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--blue);
  color: var(--white);
  border-radius: 6px;
  transition: transform 180ms ease;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-pad {
  padding: clamp(70px, 9vw, 128px) 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: rgba(7, 11, 15, 0.54);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 11, 15, 0.9);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  overflow: hidden;
  border-radius: 8px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: 0;
}

.brand-text strong {
  font-size: 14px;
  font-weight: 900;
}

.brand-text span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.76);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.header-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 13px;
  color: var(--white);
  background: rgba(21, 92, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(21, 92, 255, 0.28);
}

.header-call svg,
.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/images/engine-block-closeup.jpg");
  background-size: cover;
  background-position: 58% 45%;
  transform: translateY(calc(var(--scroll-shift, 0) * 1px)) scale(1.04);
  filter: saturate(1.02) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.94) 0%, rgba(5, 8, 12, 0.72) 42%, rgba(5, 8, 12, 0.24) 75%),
    linear-gradient(180deg, rgba(5, 8, 12, 0.52) 0%, rgba(5, 8, 12, 0.2) 46%, rgba(5, 8, 12, 0.9) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--ink));
  pointer-events: none;
}

.hero-inner {
  width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h) + 38px) 0 76px;
}

.hero-copy {
  max-width: 1040px;
}

.hero h1 {
  max-width: none;
  margin: 0;
  font-size: 4.25rem;
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: 0;
  text-wrap: balance;
  white-space: nowrap;
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.28rem;
  line-height: 1.35;
  font-weight: 560;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 18px 42px rgba(21, 92, 255, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #0f50e8;
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.btn-quiet {
  color: var(--text);
  background: var(--white);
  border-color: rgba(17, 24, 33, 0.12);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  margin: 34px 0 0;
  padding: 0;
}

.hero-facts div {
  min-width: 150px;
  padding-left: 14px;
  border-left: 2px solid var(--blue-2);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 780;
}

.hero-strip {
  position: absolute;
  inset: auto 0 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: rgba(7, 11, 15, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-strip span {
  position: relative;
  white-space: nowrap;
}

.hero-strip span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  width: 4px;
  height: 4px;
  transform: translateY(-50%);
  background: var(--lime);
  border-radius: 50%;
}

.intro {
  background: var(--paper);
}

.intro.section-pad {
  padding-top: clamp(34px, 5vw, 54px);
}

.intro-grid,
.atelier-grid,
.process-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.section-kicker {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.intro h2,
.section-head h2,
.atelier h2,
.process h2,
.contact h2 {
  margin: 0;
  font-size: 4.1rem;
  line-height: 0.98;
  font-weight: 910;
  letter-spacing: 0;
  text-wrap: balance;
}

.atelier h2,
.process h2 {
  font-size: 3.35rem;
  line-height: 1.02;
}

.intro-text p,
.atelier-copy > p:not(.section-kicker),
.process-copy > p:not(.section-kicker),
.contact-copy > p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.atelier-copy > p:not(.section-kicker),
.process-copy > p:not(.section-kicker) {
  margin-top: 20px;
  max-width: 42rem;
}

.services {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 11, 15, 0.96), rgba(15, 21, 27, 0.98)),
    var(--graphite);
}

.services .section-kicker,
.gallery .section-kicker {
  color: var(--blue-2);
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.service-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) minmax(170px, 260px);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.service-index {
  color: var(--lime);
  font-size: 13px;
  font-weight: 950;
}

.service-row h3 {
  margin: 0;
  color: var(--white);
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: 0;
}

.service-row p {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
}

.service-row img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.98) contrast(1.04);
}

.atelier {
  background:
    linear-gradient(90deg, rgba(246, 248, 251, 0) 0%, rgba(246, 248, 251, 0) 54%, rgba(21, 92, 255, 0.08) 54%),
    var(--paper);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #24303d;
  font-weight: 720;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 2px;
  background: var(--blue);
  box-shadow: 8px -8px 0 -5px var(--lime);
}

.atelier-visual {
  position: relative;
  min-height: 640px;
}

.atelier-main {
  width: 78%;
  height: 600px;
  margin-left: auto;
  object-fit: cover;
  object-position: 50% 45%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.atelier-side {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 43%;
  height: 330px;
  object-fit: cover;
  object-position: 50% 38%;
  border: 10px solid var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.process {
  color: var(--white);
  background: var(--ink);
}

.process-grid {
  grid-template-columns: minmax(360px, 0.95fr) minmax(460px, 1.05fr);
  align-items: center;
}

.process-media {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.process-media img {
  width: 100%;
  height: min(720px, 78svh);
  object-fit: cover;
  object-position: 50% 45%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.timeline li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.timeline span {
  grid-row: 1 / span 2;
  color: var(--lime);
  font-weight: 950;
}

.timeline strong {
  grid-column: 2;
  display: block;
  margin: 0 0 6px;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.1;
}

.timeline p {
  grid-column: 2;
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
  line-height: 1.58;
}

.gallery {
  color: var(--white);
  background:
    linear-gradient(180deg, var(--graphite) 0%, #101820 52%, var(--ink) 100%);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(220px, 26vw);
  gap: 12px;
}

.media-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
}

.media-item.tall {
  grid-row: span 2;
}

.media-item.wide {
  grid-column: span 2;
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.media-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.74));
  pointer-events: none;
}

.media-item span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--white);
  background: rgba(7, 11, 15, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 850;
}

.media-item:hover img,
.media-item:hover video,
.media-item:focus-visible img,
.media-item:focus-visible video {
  transform: scale(1.045);
  filter: contrast(1.08) saturate(1.08);
}

.video-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.video-strip video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.contact {
  background:
    linear-gradient(90deg, rgba(21, 92, 255, 0.08), rgba(246, 248, 251, 0) 42%),
    var(--paper);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) 420px;
}

.contact-copy h2 {
  max-width: 760px;
}

.contact-actions .btn {
  width: fit-content;
}

.contact-actions {
  max-width: 720px;
}

.contact-actions .btn-secondary {
  color: var(--white);
  background: var(--graphite);
  border-color: rgba(17, 24, 33, 0.12);
  box-shadow: 0 18px 42px rgba(17, 24, 33, 0.14);
}

.contact-actions .btn-secondary:hover,
.contact-actions .btn-secondary:focus-visible {
  background: #1b2631;
}

.contact-panel {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(17, 24, 33, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgba(30, 43, 57, 0.16);
}

.contact-panel img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: 50% 36%;
}

.contact-details {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.contact-details strong {
  font-size: 1.15rem;
  line-height: 1.1;
}

.contact-details span {
  color: var(--muted);
}

.contact-details a {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.56);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 760;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact {
  justify-self: end;
  text-align: right;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(3, 6, 10, 0.88);
  backdrop-filter: blur(12px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-frame {
  width: min(980px, 100%);
  margin: 0;
}

.lightbox-media {
  overflow: hidden;
  background: #000;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-media img,
.lightbox-media video {
  width: 100%;
  max-height: 82svh;
  object-fit: contain;
  background: #000;
}

.lightbox-frame figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 760;
}

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

.lightbox-close svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

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

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

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

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

  .hero-bg {
    transform: none;
  }
}

@media (max-width: 1160px) {
  .hero h1 {
    font-size: 3.75rem;
    white-space: normal;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100vw - 28px, 760px);
    --header-h: 70px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 14px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    padding: 8px 14px;
    background: rgba(7, 11, 15, 0.96);
    border-block: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
    transform: none;
    opacity: 1;
    pointer-events: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 38px;
    display: flex;
    align-items: center;
    padding-inline: 12px;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-bg {
    background-position: 58% 52%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 8, 12, 0.94), rgba(5, 8, 12, 0.62)),
      linear-gradient(180deg, rgba(5, 8, 12, 0.22), rgba(5, 8, 12, 0.82));
  }

  .hero-inner {
    padding-top: calc(var(--header-h) + 74px);
    padding-bottom: 86px;
  }

  .hero h1 {
    font-size: 4rem;
    white-space: normal;
  }

  .hero-lead {
    font-size: 1.22rem;
  }

  .intro h2,
  .section-head h2,
  .atelier h2,
  .process h2,
  .contact h2 {
    font-size: 3.15rem;
  }

  .service-row h3 {
    font-size: 1.95rem;
  }

  .intro-grid,
  .atelier-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .service-row img {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .atelier {
    background: var(--paper);
  }

  .atelier-visual {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .atelier-main,
  .atelier-side {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    border: 0;
  }

  .atelier-side {
    aspect-ratio: 16 / 10;
  }

  .process-media {
    position: static;
  }

  .process-media img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

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

  .contact-grid {
    gap: 34px;
  }

  .contact-panel {
    max-width: 560px;
  }

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

  .footer-contact {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100vw - 22px, 560px);
  }

  .section-pad {
    padding: 60px 0;
  }

  .intro.section-pad {
    padding-top: 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-text strong {
    font-size: 12px;
  }

  .brand-text span {
    font-size: 11px;
  }

  .hero-inner {
    padding-top: calc(var(--header-h) + 70px);
  }

  .hero-lead {
    margin-top: 20px;
    max-width: 21.5rem;
    font-size: 0.96rem;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.35rem;
    text-wrap: pretty;
  }

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

  .hero-facts div {
    min-width: 0;
  }

  .hero-strip {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hero-strip::-webkit-scrollbar {
    display: none;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 14px;
    text-align: center;
  }

  .hero-facts {
    gap: 14px;
  }

  .hero-facts div {
    min-width: calc(50% - 14px);
  }

  .hero-strip {
    gap: 18px;
    min-height: 48px;
    font-size: 11px;
  }

  .intro h2,
  .section-head h2,
  .atelier h2,
  .process h2,
  .contact h2 {
    font-size: 2.25rem;
  }

  .service-row h3 {
    font-size: 1.55rem;
  }

  .service-row {
    padding: 24px 0;
  }

  .media-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .video-strip {
    grid-template-columns: 1fr;
  }

  .media-item.tall,
  .media-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .contact-panel img {
    height: 300px;
  }

  .lightbox {
    padding: 12px;
  }
}
