:root {
  --ink: #11110f;
  --paper: #f3f0e7;
  --paper-deep: #e8e3d7;
  --white: #fffef9;
  --lime: #c8ff3d;
  --lime-dark: #a9df24;
  --line: rgba(17, 17, 15, 0.18);
  --muted: #68675f;
  --shell: min(100% - 48px, 1240px);
  --header-height: 88px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

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

:focus-visible {
  outline: 3px solid #3168ff;
  outline-offset: 4px;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.eyebrow {
  margin: 0 0 22px;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section {
  padding-block: 128px;
}

.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 214px;
  min-height: 56px;
  padding: 14px 20px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-dark:hover {
  color: var(--ink);
  background: var(--lime);
}

.text-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding-block: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, 2px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(243, 240, 231, 0.92);
  transition: height 180ms ease, border-color 180ms ease, background-color 180ms ease;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  height: 72px;
  border-color: var(--line);
  background: rgba(243, 240, 231, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

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

.site-nav {
  display: flex;
  gap: clamp(20px, 2.8vw, 44px);
  align-items: center;
}

.site-nav a {
  position: relative;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 16px;
  color: var(--ink);
  background: var(--lime);
}

.nav-cta:hover {
  background: var(--lime-dark);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 27px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

/* Hero */
.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 46px);
  background: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 140px);
}

.hero-copy {
  padding-block: 52px;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.6vw, 8.1rem);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.83;
}

.hero h1 em {
  font-weight: 400;
}

.hero-lead {
  max-width: 620px;
  margin: 38px 0 0;
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 46px;
}

.hero-art {
  position: relative;
  min-height: 0;
  margin: 0 18px 18px 0;
  aspect-ratio: 1 / 1;
  background: var(--paper-deep);
  box-shadow: 18px 18px 0 var(--ink);
}

.art-label {
  position: absolute;
  z-index: 4;
  top: 20px;
  right: -12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(4deg);
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--ink);
  object-fit: cover;
  object-position: center;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 28px;
  border-top: 1px solid var(--ink);
}

.proof-row span {
  padding-inline: 20px;
  border-right: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.proof-row span:last-child {
  border-right: 0;
}

/* About */
.about {
  color: var(--white);
  background: var(--ink);
}

.about .section-heading h2 {
  font-size: clamp(4rem, 5.2vw, 5.4rem);
  line-height: 0.92;
}

.split-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.25fr 0.75fr;
  gap: 36px;
  align-items: start;
}

.split-heading .eyebrow {
  padding-top: 10px;
}

.heading-copy {
  padding-top: 12px;
  color: rgba(255, 254, 249, 0.74);
  font-size: 1.02rem;
}

.heading-copy p {
  margin: 0 0 22px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 98px;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}

.principle {
  min-height: 360px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.23);
}

.principle:last-child {
  border-right: 0;
}

.principle.featured {
  color: var(--ink);
  background: var(--lime);
}

.principle .number {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.principle h3 {
  margin: 112px 0 20px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.principle p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 254, 249, 0.7);
}

.principle.featured p {
  color: rgba(17, 17, 15, 0.72);
}

/* Products */
.products {
  background: var(--white);
}

.products-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  align-items: end;
}

.products-heading > p {
  max-width: 430px;
  margin: 0 0 8px;
  font-size: 1.07rem;
}

.product-list {
  margin-top: 92px;
  border-top: 1px solid var(--ink);
}

.product-item {
  border-bottom: 1px solid var(--ink);
}

.product-item summary {
  display: grid;
  grid-template-columns: 0.2fr 1fr 0.9fr auto;
  gap: 24px;
  align-items: center;
  min-height: 132px;
  padding-block: 22px;
  list-style: none;
  cursor: pointer;
}

.product-item summary::-webkit-details-marker {
  display: none;
}

.product-number,
.product-tags {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-name {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.2vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.product-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  place-items: center;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.product-item summary:hover .product-toggle {
  background: var(--lime);
}

.product-item[open] .product-toggle {
  color: var(--white);
  background: var(--ink);
  transform: rotate(45deg);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 64px;
  padding: 0 68px 44px calc(20% + 24px);
}

.product-detail p {
  max-width: 650px;
  margin: 0;
}

/* Services */
.services {
  background: var(--paper-deep);
}

.services-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 86px;
}

.services-intro {
  position: sticky;
  top: 118px;
  align-self: start;
}

.services-intro > p:not(.eyebrow) {
  max-width: 440px;
  margin: 36px 0 30px;
  font-size: 1.05rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.service-cards article {
  min-height: 320px;
  padding: 28px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.service-cards article:nth-child(2),
.service-cards article:nth-child(3) {
  background: rgba(255, 254, 249, 0.4);
}

.service-cards span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-cards h3 {
  margin: 72px 0 18px;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.service-cards p {
  margin: 0;
  color: #4f4e48;
}

/* Solutions */
.solutions {
  background: var(--white);
}

.solutions .split-heading {
  grid-template-columns: 0.55fr 2fr;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 86px;
}

.solution-card {
  position: relative;
  min-height: 560px;
  padding: clamp(30px, 4vw, 54px);
  overflow: hidden;
}

.lime-card {
  color: var(--ink);
  background: var(--lime);
}

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

.card-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-card h3 {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 85px 0 24px;
  font-family: var(--serif);
  font-size: clamp(2.9rem, 4.9vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.solution-card p {
  position: relative;
  z-index: 2;
  max-width: 470px;
  margin: 0 0 38px;
}

.solution-card a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.solution-card img {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 260px;
  opacity: 0.19;
  transform: rotate(-12deg);
}

.giant-type {
  position: absolute;
  right: -28px;
  bottom: -105px;
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--serif);
  font-size: 22rem;
  letter-spacing: -0.12em;
  line-height: 1;
}

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

.process-title-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: end;
}

.process-title-row > p {
  max-width: 390px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 92px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  list-style: none;
}

.process-list li {
  min-height: 330px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-list strong {
  display: block;
  margin: 105px 0 18px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
}

/* Contact */
.contact {
  background: var(--lime);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 9vw, 130px);
}

.contact-copy {
  align-self: start;
}

.contact-copy h2 {
  font-size: clamp(3.6rem, 6.5vw, 7rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 36px 0 48px;
  font-size: 1.1rem;
}

.contact-copy address {
  display: flex;
  flex-direction: column;
  margin: 0 0 20px;
  font-style: normal;
}

.contact-copy address span:first-child {
  margin-bottom: 6px;
  font-weight: 750;
}

.contact-email {
  font-weight: 750;
}

.contact-panel {
  padding: clamp(32px, 5vw, 62px);
  color: var(--white);
  background: var(--ink);
}

.contact-panel-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel-title {
  max-width: 600px;
  margin: 72px 0 24px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.contact-panel > p:not(.contact-panel-title) {
  max-width: 560px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-button {
  width: 100%;
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
}

.contact-button:hover {
  color: var(--ink);
  background: var(--white);
}

.contact-checklist {
  padding: 0;
  margin: 52px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  list-style: none;
}

.contact-checklist li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
}

.contact-checklist span {
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

/* Footer */

.site-footer {
  padding: 74px 0 24px;
  color: var(--white);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.7fr;
  gap: 50px;
  align-items: start;
  padding-bottom: 66px;
}

.footer-brand img {
  filter: invert(1);
}

.footer-main > p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-self: end;
}

.footer-main nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-main nav a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  gap: 34px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom a {
  text-decoration: none;
}

.footer-bottom a:last-child {
  margin-left: auto;
}

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

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.7fr);
    gap: 40px;
  }

  .hero-art {
    min-height: 0;
  }

  .split-heading {
    grid-template-columns: 0.4fr 1.2fr;
  }

  .split-heading .heading-copy {
    grid-column: 2;
  }

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

  .services-intro {
    position: static;
  }

  .services-intro > p:not(.eyebrow) {
    max-width: 650px;
  }

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

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .contact-grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 72px;
    --shell: min(100% - 32px, 680px);
  }

  .section {
    padding-block: 88px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
    backdrop-filter: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100svh;
    padding: max(100px, calc(env(safe-area-inset-top) + 84px)) 32px max(36px, env(safe-area-inset-bottom));
    background: var(--lime);
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-16px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

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

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(17, 17, 15, 0.3);
    font-family: var(--serif);
    font-size: clamp(2rem, 8vw, 3.2rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    text-transform: none;
  }

  .site-nav .nav-cta {
    margin-top: 24px;
    padding: 15px 18px;
    color: var(--white);
    border: 0;
    background: var(--ink);
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
  }

  @media (max-height: 620px) {
    .site-nav {
      justify-content: flex-start;
      padding-top: max(76px, calc(env(safe-area-inset-top) + 64px));
      padding-bottom: max(16px, env(safe-area-inset-bottom));
    }

    .site-nav a {
      padding-block: 6px;
      font-size: clamp(1.55rem, 6vh, 2.2rem);
    }
  }

  .hero {
    padding-top: calc(var(--header-height) + 36px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 40px 0 10px;
  }

  .hero h1 {
    font-size: clamp(4rem, 15vw, 7rem);
  }

  .hero-art {
    min-height: 0;
    margin-bottom: 40px;
    aspect-ratio: 4 / 3;
    box-shadow: 14px 14px 0 var(--ink);
  }

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

  .proof-row span {
    padding-block: 12px;
  }

  .proof-row span:nth-child(2) {
    border-right: 0;
  }

  .split-heading,
  .solutions .split-heading,
  .products-heading,
  .process-title-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-heading .heading-copy {
    grid-column: 1;
    max-width: 600px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    margin-top: 66px;
  }

  .principle {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle h3 {
    margin-top: 58px;
  }

  .products-heading {
    gap: 34px;
  }

  .product-list {
    margin-top: 64px;
  }

  .product-item summary {
    grid-template-columns: 52px 1fr auto;
    min-height: 110px;
  }

  .product-tags {
    display: none;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 20px 36px 76px;
  }

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

  .process-title-row {
    gap: 30px;
  }

  .contact-grid {
    gap: 58px;
  }

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

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

  .footer-main > p {
    grid-row: 2;
    grid-column: 1 / -1;
  }
}

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

  .section {
    padding-block: 72px;
  }

  .brand {
    font-size: 0.66rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 17vw, 5.4rem);
    line-height: 0.86;
  }

  .hero-lead {
    margin-top: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 34px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-art {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .proof-row span,
  .proof-row span:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-row span:last-child {
    border-bottom: 0;
  }

  .section h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .about .section-heading h2 {
    font-size: clamp(2.75rem, 13vw, 3.65rem);
  }

  .split-heading {
    gap: 22px;
  }

  .principle {
    padding: 26px 20px;
  }

  .product-item summary {
    grid-template-columns: 34px 1fr auto;
    gap: 12px;
    min-height: 92px;
    padding-block: 16px;
  }

  .product-name {
    font-size: 1.85rem;
  }

  .product-toggle {
    width: 38px;
    height: 38px;
  }

  .product-detail {
    padding: 0 4px 30px 46px;
  }

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

  .service-cards article {
    min-height: 280px;
  }

  .solution-card {
    min-height: 520px;
  }

  .solution-card h3 {
    margin-top: 64px;
  }

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

  .process-list li,
  .process-list li:nth-child(2) {
    min-height: auto;
    padding: 28px 10px 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list strong {
    margin-top: 48px;
  }

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

  .footer-main > p {
    grid-row: auto;
    grid-column: auto;
  }

  .footer-main nav {
    justify-self: start;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 14px 26px;
  }

  .footer-bottom a:last-child {
    width: 100%;
    margin-left: 0;
  }
}

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

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

@media print {
  .site-header,
  .hero-art,
  .hero-actions,
  .site-footer {
    display: none !important;
  }

  body,
  .about,
  .products,
  .services,
  .solutions,
  .process,
  .contact {
    color: #000;
    background: #fff;
  }

  .section {
    padding-block: 36px;
  }
}
