:root {
  --ink: #111315;
  --ink-soft: #30353b;
  --paper: #f7f7f5;
  --white: #ffffff;
  --line: #d8d8d4;
  --muted: #747b83;
  --steel: #e6e7e5;
  --blue: #1f5f93;
  --blue-dark: #123754;
  --shadow: 0 24px 70px rgba(17, 19, 21, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.split-image.reveal,
.machine-photo.reveal,
.gallery-grid figure.reveal {
  transform: translateY(34px) scale(0.985);
}

.split-image.reveal.is-visible,
.machine-photo.reveal.is-visible,
.gallery-grid figure.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 10, 12, 0.72);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(247, 247, 245, 0.94);
  border-color: var(--line);
  box-shadow: 0 16px 40px rgba(17, 19, 21, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 50px;
  background: var(--white);
  padding: 7px 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header.is-scrolled .brand,
.site-header.nav-open .brand {
  background: var(--white);
  border-color: rgba(17, 19, 21, 0.08);
  box-shadow: 0 8px 22px rgba(17, 19, 21, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--white);
}

.site-header.is-scrolled .site-nav a.is-active,
.site-header.nav-open .site-nav a.is-active {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 150px 34px 34px;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 8, 10, 0.84), rgba(6, 8, 10, 0.46), rgba(6, 8, 10, 0.18)),
    linear-gradient(0deg, rgba(6, 8, 10, 0.72), transparent 42%);
  content: "";
}

.hero-content {
  width: min(760px, 100%);
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  padding-bottom: 80px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #dceeff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 35px;
  font-size: 86px;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.hero-strip {
  position: absolute;
  right: max(34px, calc((100vw - var(--max)) / 2 - 220px));
  bottom: 28px;
  width: min(620px, calc(100vw - 68px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(139, 184, 223, 0.34);
  background: linear-gradient(135deg, rgba(6, 10, 14, 0.86), rgba(19, 31, 40, 0.72));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-strip div {
  position: relative;
  min-width: 0;
  min-height: 92px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 18px 24px 16px;
  border-right: 1px solid rgba(139, 184, 223, 0.24);
  text-align: center;
}

.hero-strip div:last-child {
  border-right: 0;
}

.hero-strip div::before {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 30px;
  height: 2px;
  background: #8bb8df;
  content: "";
  transform: translateX(-50%);
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
  font-size: clamp(32px, 2.35vw, 42px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(139, 184, 223, 0.28);
}

.hero-strip span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 112px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.wide {
  max-width: 940px;
}

.section-heading p,
.split-content p,
.quality-copy p,
.contact-panel p {
  color: var(--ink-soft);
  font-size: 18px;
}

.intro-section {
  position: relative;
  isolation: isolate;
}

.intro-section > * {
  position: relative;
  z-index: 1;
}

.intro-section::before {
  position: absolute;
  inset: 46px -34px 28px;
  z-index: 0;
  background-image:
    linear-gradient(rgba(31, 95, 147, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 95, 147, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(17, 19, 21, 0.04) 2px, transparent 2px),
    linear-gradient(90deg, rgba(17, 19, 21, 0.04) 2px, transparent 2px);
  background-size: 28px 28px, 28px 28px, 140px 140px, 140px 140px;
  background-position: center;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
  pointer-events: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-bottom: 36px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.intro-grid p {
  color: var(--ink-soft);
  font-size: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.service-card:last-child {
  border-right: 0;
}

.service-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  min-height: 680px;
  background: var(--ink);
  color: var(--white);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(28px, 5vw, 76px);
}

.split-content .eyebrow,
.quality-section .eyebrow {
  color: #a9d4ff;
}

.split-content p {
  color: rgba(255, 255, 255, 0.74);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 13px;
  height: 2px;
  background: var(--white);
  content: "";
}

.machine-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.machine-photo {
  min-height: 560px;
  margin: 0;
}

.machine-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.machine-list {
  position: relative;
  display: grid;
  align-self: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(31, 95, 147, 0.18);
  background:
    linear-gradient(135deg, rgba(31, 95, 147, 0.08), transparent 34%),
    linear-gradient(rgba(31, 95, 147, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 95, 147, 0.06) 1px, transparent 1px),
    #f2f2ef;
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.machine-list div {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 142px;
  padding: 28px 34px 28px 70px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 42px rgba(17, 19, 21, 0.07);
}

.machine-list div::before {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(31, 95, 147, 0.42);
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(31, 95, 147, 0.09);
  content: "";
}

.machine-list div::after {
  position: absolute;
  left: 39px;
  top: 58px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(31, 95, 147, 0.4), transparent);
  content: "";
}

.machine-list h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.16;
}

.machine-list p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.quality-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 60px;
  padding: 100px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}

.quality-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.quality-points {
  position: relative;
  display: grid;
  gap: 10px;
  align-self: center;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(139, 184, 223, 0.32);
  background:
    linear-gradient(135deg, rgba(139, 184, 223, 0.1), transparent 30%),
    linear-gradient(rgba(139, 184, 223, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 184, 223, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.025);
  background-size: auto, 26px 26px, 26px 26px, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 26px 70px rgba(0, 0, 0, 0.24);
}

.quality-points div {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 96px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022));
}

.quality-points div::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 42px;
  height: 2px;
  background: rgba(139, 184, 223, 0.55);
  content: "";
}

.quality-points strong {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #a9d4ff;
  border: 1px solid rgba(139, 184, 223, 0.36);
  background: rgba(6, 10, 14, 0.56);
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  box-shadow: inset 0 0 24px rgba(139, 184, 223, 0.1);
}

.quality-points span {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.38;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.gallery-grid figure {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--steel);
}

.gallery-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-large {
  grid-row: span 3;
}

.gallery-wide {
  grid-column: 1 / -1;
  min-height: 520px;
}

.scope-panel {
  width: min(var(--max), 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid var(--line);
}

.scope-block {
  padding: clamp(26px, 4vw, 46px);
}

.scope-block + .scope-block {
  border-left: 1px solid var(--line);
}

.scope-block-muted {
  background: #f1f1ee;
}

.scope-block h3 {
  max-width: 460px;
  margin: 8px 0 22px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.scope-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.scope-list li {
  position: relative;
  line-height: 1.45;
  padding-left: 24px;
}

.scope-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--blue);
  content: "";
  transform: translateY(-50%);
}

.scope-list-excluded li::before {
  background: var(--blue);
}

.process-section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 110px 0 38px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0b0d0f;
  color: var(--white);
}

.process-grid article {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  display: block;
  margin-bottom: 42px;
  color: #8bb8df;
  font-size: 13px;
  font-weight: 900;
}

.process-grid h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.12;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact-section {
  padding: 34px 22px 62px;
}

.contact-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.7fr);
  gap: 0px;
  padding: clamp(34px, 6vw, 10px);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  color: var(--ink-soft);
}

.contact-details a {
  width: fit-content;
  color: var(--ink);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  scroll-margin-top: 112px;
}

.hidden-field {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form .consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #f5f5f2;
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(31, 95, 147, 0.26);
  border-color: var(--blue);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.map-section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
  background: #0b0d0f;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-copy {
  padding: clamp(34px, 5vw, 58px);
}

.map-copy h2 {
  margin: 8px 0 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

.map-copy p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.map-frame {
  width: 100%;
  min-height: 380px;
  border: 0;
  filter: grayscale(0.35) contrast(1.03);
}

.site-footer {
  display: grid;
  grid-template-columns: 220px minmax(240px, 0.8fr) minmax(390px, 1.2fr) minmax(130px, auto);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  justify-content: space-between;
  padding: 52px max(34px, calc((100vw - var(--max)) / 2));
  background: #08090a;
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.site-footer img {
  width: 146px;
  margin: 0;
}

.footer-brand p,
.footer-column strong,
.footer-column span,
.footer-column a {
  display: block;
}

.footer-brand p,
.footer-column span {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-column {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.footer-column h3 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  line-height: 1.35;
}

.footer-top {
  justify-self: end;
  align-self: start;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .site-header {
    height: 70px;
    padding: 0 22px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 22px 22px;
    background: rgba(247, 247, 245, 0.98);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-self: center;
    padding: 14px 0;
  }

  .hero {
    min-height: auto;
    padding: 120px 22px 24px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 20px;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .hero-strip {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .intro-grid,
  .split-section,
  .machine-layout,
  .quality-section,
  .contact-panel,
  .scope-panel,
  .map-section {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .machine-list,
  .quality-points,
  .map-section,
  .site-footer {
    min-width: 0;
  }

  .scope-block + .scope-block {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid article {
    min-height: 210px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .process-grid article:nth-child(2n) {
    border-right: 0;
  }

  .process-grid article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 34px 52px;
  }

  .footer-top {
    justify-self: start;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:nth-child(2) {
    border-right: 0;
  }

  .service-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split-image {
    min-height: 420px;
  }

  .quality-section {
    gap: 34px;
  }
}

@media (min-width: 981px) and (max-height: 900px) {
  .hero {
    padding-top: 118px;
    padding-bottom: 24px;
  }

  .hero-content {
    width: min(690px, 100%);
    padding-bottom: 36px;
  }

  h1 {
    max-width: 720px;
    margin-bottom: 42px;
    font-size: clamp(62px, 5.6vw, 74px);
    line-height: 0.95;
  }

  .hero-lead {
    max-width: 650px;
    font-size: 20px;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-strip {
    bottom: 24px;
    width: min(590px, calc(100vw - 68px));
  }

  .hero-strip div {
    min-height: 84px;
    padding: 17px 22px 14px;
  }

  .hero-strip strong {
    font-size: clamp(30px, 2.2vw, 38px);
  }

  .hero-strip span {
    font-size: 11px;
  }
}

@media (max-width: 680px) {
  *,
  *::before,
  *::after {
    max-width: 100%;
  }

  body {
    background: var(--paper);
  }

  .site-header {
    right: 0;
    width: auto;
    overflow: visible;
  }

  .site-nav {
    max-width: 100%;
  }

  .nav-toggle {
    flex: 0 0 44px;
    max-width: 44px;
  }

  .brand {
    width: 150px;
    height: 40px;
    flex: 0 0 150px;
  }

  .hero-content {
    width: 100%;
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
  }

  h1 {
    font-size: 35px;
    line-height: 1.02;
  }

  h2 {
    font-size: 29px;
  }

  .hero-lead {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.48;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 58px 0;
  }

  .gallery-section {
    padding-top: 46px;
  }

  .hero,
  .section,
  .contact-section,
  .map-section,
  .quality-section,
  .site-footer {
    max-width: 100%;
    overflow-x: clip;
  }

  .intro-section::before {
    inset-right: 0;
    inset-left: 0;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-strip {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-strip div {
    min-height: 72px;
    padding: 17px 12px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(139, 184, 223, 0.24);
  }

  .hero-strip div:last-child {
    border-bottom: 0;
  }

  .hero-strip div::before {
    top: 13px;
    width: 24px;
  }

  .hero-strip strong {
    font-size: 25px;
  }

  .hero-strip span {
    font-size: 9px;
    line-height: 1.2;
    white-space: normal;
  }

  .service-grid,
  .gallery-grid,
  .process-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .process-section {
    width: min(100% - 32px, var(--max));
    padding: 58px 0 20px;
  }

  .process-grid article,
  .process-grid article:nth-child(2n),
  .process-grid article:last-child {
    grid-column: auto;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .process-grid span {
    margin-bottom: 24px;
  }

  .map-section {
    width: min(100% - 32px, var(--max));
    margin-bottom: 64px;
  }

  .map-frame {
    min-height: 320px;
  }

  .quality-points {
    padding: 10px;
  }

  .quality-points div {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    min-height: 86px;
    padding: 16px;
  }

  .quality-points strong {
    width: 48px;
    height: 48px;
    font-size: 15px;
  }

  .quality-points span {
    font-size: 15px;
    line-height: 1.35;
  }

  .quality-section {
    gap: 28px;
    padding-top: 60px;
    padding-bottom: 42px;
  }

  .service-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .machine-photo,
  .gallery-grid figure,
  .split-image {
    min-height: 320px;
  }

  .gallery-large {
    grid-row: auto;
  }

  .gallery-wide {
    grid-column: auto;
  }

  .contact-panel {
    gap: 12px;
    padding: 22px 18px;
  }

  .contact-panel h2 {
    display: none;
  }

  .contact-panel > div > :last-child {
    margin-bottom: 0;
  }

  .contact-form {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .split-image.reveal,
  .machine-photo.reveal,
  .gallery-grid figure.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
