:root {
  color-scheme: light;
  --ink: #242525;
  --muted: #646667;
  --paper: #fff;
  --surface: #f3f4f4;
  --coral: #ef6f6f;
  --accent: #b33d4b;
  --blush: #f9eeee;
  --line: #dedfdf;
  --shell: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
  font-weight: 500;
  overflow-wrap: break-word;
}
h1 {
  font-size: 64px;
}
h2 {
  font-size: 44px;
}
h3 {
  font-size: 25px;
}
p {
  color: var(--muted);
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
svg {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}
button svg {
  pointer-events: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: #ffd4d4;
  color: var(--ink);
}
.shell {
  width: min(calc(100% - 96px), var(--shell));
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.5;
  margin-bottom: 22px;
}
.index {
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -90px;
  z-index: 300;
  background: #fff;
  padding: 12px;
}
.skip-link:focus {
  top: 10px;
}
.hidden-field,
[hidden] {
  display: none !important;
}
.site-header {
  height: 94px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.brand > span {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}
.brand small {
  display: block;
  font-size: 9px;
  margin-top: 6px;
  font-weight: 500;
  white-space: nowrap;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}
.site-nav > a:not(.button) {
  padding-block: 12px;
  position: relative;
}
.site-nav > a[aria-current="page"]:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--coral);
}
.site-nav > a:hover {
  color: var(--accent);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background 0.2s,
    color 0.2s;
}
.button.primary,
.button.nav-cta {
  background: var(--accent);
  color: white;
}
.button.primary:hover,
.button.nav-cta:hover {
  background: #8e2c3c;
  color: white;
}
.button.nav-cta {
  min-height: 44px;
  padding: 10px 18px;
  gap: 18px;
}
.button.dark {
  background: var(--ink);
  color: white;
}
.button.dark:hover {
  background: #424343;
}
.button.outline {
  border-color: var(--line);
  background: transparent;
}
.button.outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  padding-block: 9px;
}
.text-link:hover {
  color: var(--accent);
}
.text-link svg,
.project-arrow svg {
  transition: transform 0.2s;
}
.text-link:hover svg,
.project-card a:hover .project-arrow svg {
  transform: translate(2px, -2px);
}
.actions {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
  align-items: center;
  justify-content: center;
}
.menu-toggle .lucide-x {
  display: none;
}
.hero {
  position: relative;
  isolation: isolate;
  background: #f2f3f3;
  min-height: 600px;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
.hero-inner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-block: 64px;
}
.hero-copy {
  max-width: 510px;
}
.hero h1 {
  font-size: 64px;
  line-height: 1.03;
  margin-bottom: 25px;
}
.hero h1 span {
  color: var(--accent);
}
.hero-copy > p:not(.eyebrow) {
  max-width: 420px;
  font-size: 17px;
  line-height: 1.65;
  color: #4f5253;
}
.hero .eyebrow {
  font-size: 11px;
}
.hero-caption {
  position: absolute;
  bottom: 24px;
  right: 0;
  font-size: 10px;
  color: #656767;
}
.service-rail {
  border-bottom: 1px solid var(--line);
}
.rail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.rail-grid a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.5;
}
.rail-grid a:first-child {
  padding-left: 0;
}
.rail-grid a:last-child {
  border: 0;
  padding-right: 0;
}
.rail-grid span {
  color: var(--accent);
  font-size: 11px;
}
.rail-grid strong {
  font-weight: 500;
  flex: 1;
}
.rail-grid a:hover strong {
  color: var(--accent);
}
.rail-grid svg {
  width: 16px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 42px;
}
.section-heading h2 {
  max-width: 720px;
}
.section-heading > p {
  max-width: 400px;
}
.section-heading > .text-link {
  flex-shrink: 0;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px 32px;
}
.project-card {
  min-width: 0;
}
.project-media {
  position: relative;
  aspect-ratio: 1.6;
  overflow: hidden;
  background: var(--surface);
}
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 30px 65px 36px;
  mix-blend-mode: multiply;
  transition: transform 0.45s ease;
}
.project-card a:hover .project-media img {
  transform: scale(1.045);
}
.project-copy {
  padding-top: 24px;
}
.project-copy .eyebrow {
  margin-bottom: 10px;
  font-size: 11px;
}
.project-copy h3 {
  margin-bottom: 12px;
}
.project-copy > p:not(.eyebrow) {
  max-width: 530px;
  font-size: 15px;
}
.project-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid #d2d4d4;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.image-label {
  position: absolute;
  bottom: 17px;
  left: 22px;
  font-size: 10px;
  color: #575959;
}
.stone {
  background: #f0f1ef;
}
.blush {
  background: var(--blush);
}
.silver {
  background: #eeefef;
}
.charcoal {
  background: #eceeef;
}
.project-media.charcoal img {
  object-fit: cover;
  padding: 0;
  mix-blend-mode: normal;
  filter: grayscale(1);
}
.project-media.charcoal .image-label {
  background: #fff;
  padding: 2px 7px;
}
.project-media.silver img {
  object-fit: cover;
  padding: 0;
  object-position: right;
  transform: scale(1.18);
  transform-origin: 90% 60%;
}
.project-card a:hover .project-media.silver img {
  transform: scale(1.23);
}
.tags {
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
  margin-top: 19px;
}
.tags span {
  font-size: 11px;
  font-weight: 500;
  color: #656768;
}
.tags span + span {
  position: relative;
}
.tags span + span:before {
  content: "/";
  position: absolute;
  left: -12px;
  color: #a0a0a0;
}
.dark-band {
  background: #252727;
  color: #fff;
}
.dark-band p {
  color: #c1c4c4;
}
.dark-band .eyebrow {
  color: var(--coral);
}
.dark-band .text-link {
  color: var(--coral);
  margin-top: 38px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 58px;
}
.value-grid article {
  border-top: 1px solid #555757;
  padding-top: 24px;
}
.value-grid h3 {
  font-size: 24px;
  line-height: 1.25;
  margin: 22px 0 16px;
  max-width: 330px;
}
.value-grid p {
  font-size: 15px;
}
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.editorial-split h2 {
  font-size: 40px;
  margin-bottom: 24px;
}
.editorial-split .text-link {
  margin-top: 28px;
}
.factory-image img {
  aspect-ratio: 1.33;
  object-fit: cover;
  width: 100%;
}
.factory-image figcaption {
  font-size: 11px;
  color: var(--muted);
  margin-top: 13px;
}
.stage-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 34px;
}
.stage-line span {
  padding: 10px 18px 10px 0;
  margin-right: 18px;
  border-top: 2px solid var(--coral);
  font-size: 13px;
  font-weight: 600;
}
.cta-band {
  background: var(--blush);
  border-block: 1px solid #ecdcdc;
}
.cta-inner {
  padding-block: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.cta-inner h2 {
  font-size: 42px;
  margin-bottom: 18px;
}
.cta-inner p:not(.eyebrow) {
  max-width: 640px;
}
.cta-inner .eyebrow {
  margin-bottom: 15px;
}
.cta-inner > .button {
  flex-shrink: 0;
}
.site-footer {
  background: white;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1.2fr;
  gap: 40px;
  padding-block: 64px;
}
.footer-main > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}
.footer-main p {
  margin-top: 15px;
  font-size: 15px;
}
.footer-main .brand > span {
  font-size: 18px;
}
.footer-main .brand img {
  width: 43px;
  height: 43px;
}
.footer-label {
  color: #777;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-email {
  border-bottom: 1px solid var(--coral);
  font-size: 16px;
  overflow-wrap: anywhere;
}
.footer-main a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 21px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: #707272;
}
.page-intro {
  padding-top: 78px;
  padding-bottom: 64px;
}
.page-intro h1 {
  max-width: 930px;
  margin-bottom: 28px;
}
.intro-copy {
  font-size: 18px;
  line-height: 1.65;
  max-width: 640px;
}
.portfolio-section {
  padding-bottom: 100px;
}
.portfolio-note {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 11px;
}
.portfolio-note > span {
  font-weight: 600;
  flex-shrink: 0;
}
.portfolio-note p {
  max-width: 470px;
  text-align: right;
}
.filter-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 25px;
  border-bottom: 1px solid var(--line);
  margin: 26px 0 34px;
  padding-block: 8px;
}
.filter-toolbar button {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 12px 0;
  font-size: 14px;
  color: #6b6e6e;
}
.filter-toolbar button[aria-pressed="true"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.filter-toolbar button:hover {
  color: var(--accent);
}
.result-count {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
}
.detail-intro {
  padding-block: 46px 60px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 48px;
}
.detail-intro h1 {
  max-width: 880px;
  margin-bottom: 26px;
  font-size: 60px;
}
.detail-visual {
  margin: 0;
  position: relative;
  height: 460px;
}
.detail-visual > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 40px;
}
.detail-visual.silver img {
  object-fit: cover;
  object-position: right 60%;
  padding: 0;
}
.detail-visual.charcoal img {
  filter: grayscale(1);
  object-fit: contain;
}
.detail-visual figcaption {
  position: absolute;
  bottom: 13px;
  left: 4%;
  right: 4%;
  font-size: 11px;
  text-align: center;
  color: #515555;
  background: rgba(255, 255, 255, 0.9);
  width: fit-content;
  max-width: 92%;
  margin: auto;
  padding: 3px 10px;
}
.detail-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  padding-block: 40px;
  border-bottom: 1px solid var(--line);
}
.detail-row:first-child {
  padding-top: 0;
}
.detail-row h2 {
  font-size: 34px;
  margin-bottom: 20px;
}
.detail-row p {
  max-width: 730px;
}
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.two-columns h3 {
  font-size: 22px;
}
.check-list {
  padding: 0;
  list-style: none;
  margin: 24px 0 0;
}
.check-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin: 16px 0;
  color: var(--muted);
  font-size: 15px;
}
.check-list svg {
  color: var(--accent);
  width: 17px;
  height: 24px;
}
.fit-note {
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.fit-note > .text-link {
  justify-self: end;
}
.light-band {
  background: var(--surface);
}
.capability-list {
  border-top: 1px solid var(--line);
}
.capability-row {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  padding-block: 44px;
}
.capability-row h3 {
  font-size: 30px;
  margin-bottom: 15px;
}
.capability-row .index {
  color: var(--accent);
}
.capability-row p {
  max-width: 440px;
}
.capability-row .check-list {
  margin: 0;
}
.split-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 40px;
}
.split-heading h2 {
  max-width: 560px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.process-grid article {
  border-top: 2px solid var(--coral);
  padding-top: 25px;
}
.process-grid h3 {
  margin: 18px 0;
  font-size: 24px;
}
.process-grid p {
  font-size: 15px;
}
.process-grid .index {
  color: var(--accent);
}
.feature-photo {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}
.fact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  margin-top: 35px;
}
.fact-list strong {
  font-size: 19px;
  font-weight: 500;
}
.fact-list p {
  font-size: 13px;
  margin-top: 7px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-list summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  list-style: none;
  font-size: 19px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list details[open] summary svg {
  transform: rotate(180deg);
}
.faq-list details p {
  padding-top: 20px;
  max-width: 760px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 28px;
}
.product-media {
  height: 290px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  overflow: hidden;
}
.product-media img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-cluster img {
  min-width: 0;
  width: 45%;
  height: 90%;
}
.product-body {
  padding-top: 22px;
}
.product-family {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}
.product-body h3 {
  font-size: 24px;
  line-height: 1.2;
  margin: 12px 0;
}
.product-body p {
  font-size: 14px;
}
.spec-list {
  margin-top: 22px;
  font-size: 12px;
}
.spec-list > div {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
}
.spec-list dt {
  color: var(--muted);
}
.spec-list dd {
  margin: 0;
  text-align: right;
}
.product-body details {
  margin-top: 20px;
}
.product-body summary {
  font-size: 13px;
  cursor: pointer;
  color: var(--accent);
}
.product-body .text-link {
  margin-top: 15px;
}
.product-note {
  font-size: 13px;
  max-width: 700px;
  margin-top: 40px;
}
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  padding-bottom: 100px;
}
.contact-aside h2 {
  font-size: 30px;
  margin-bottom: 25px;
}
.contact-aside > p {
  max-width: 420px;
}
.contact-email {
  display: inline-block;
  font-size: 23px;
  border-bottom: 1px solid var(--coral);
  margin-top: 30px;
  overflow-wrap: anywhere;
}
.next-steps {
  list-style: none;
  counter-reset: steps;
  padding: 0;
  margin: 45px 0;
}
.next-steps li {
  counter-increment: steps;
  display: flex;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 20px 0;
  font-size: 14px;
}
.next-steps li:before {
  content: "0" counter(steps);
  color: var(--accent);
  font-size: 12px;
}
.brief-form {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px;
  background: white;
  display: grid;
  gap: 24px;
}
.brief-form h2 {
  font-size: 28px;
}
.brief-form > p {
  font-size: 13px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.brief-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
}
.brief-form label > span {
  color: var(--muted);
  font-size: 12px;
}
.brief-form input,
.brief-form select,
.brief-form textarea {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid #cdd0d0;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
}
.brief-form textarea {
  resize: vertical;
  min-height: 130px;
}
.brief-form .button {
  justify-self: start;
}
.form-status {
  padding: 12px;
  background: var(--blush);
  color: var(--accent);
  font-size: 14px;
  overflow-wrap: anywhere;
}
.form-status:empty {
  display: none;
}
.success-intro {
  min-height: 65vh;
}
.success-intro .actions {
  margin-top: 35px;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 660px;
  }
  .hero-inner {
    min-height: 660px;
  }
  .hero h1 {
    font-size: 72px;
  }
  .hero-copy {
    max-width: 560px;
  }
  .hero-image {
    object-fit: cover;
  }
  .hero-copy > p:not(.eyebrow) {
    max-width: 450px;
  }
}
@media (max-width: 1150px) {
  .shell {
    width: calc(100% - 64px);
  }
  .site-nav {
    gap: 17px;
    font-size: 13px;
  }
  .brand > span {
    font-size: 19px;
  }
  .brand small {
    font-size: 8px;
  }
  .brand img {
    width: 42px;
    height: 42px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-copy {
    max-width: 440px;
  }
  .hero-copy > p:not(.eyebrow) {
    max-width: 360px;
  }
  .hero .actions {
    gap: 18px;
  }
  .hero .button {
    padding: 13px 18px;
  }
  .section-heading {
    gap: 35px;
  }
  .contact-section {
    gap: 55px;
  }
  .footer-main {
    gap: 25px;
  }
  .project-media img {
    padding-inline: 40px;
  }
  .rail-grid a {
    padding: 24px 15px;
    gap: 10px;
  }
  .editorial-split {
    gap: 45px;
  }
}
@media (max-width: 980px) {
  .site-header {
    height: 80px;
  }
  .menu-toggle {
    display: flex;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 79px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 26px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-height: calc(100dvh - 80px);
    overflow: auto;
  }
  .nav-open .site-nav {
    display: flex;
  }
  .nav-open .menu-toggle .lucide-menu {
    display: none;
  }
  .nav-open .menu-toggle .lucide-x {
    display: block;
  }
  .site-nav > a {
    font-size: 18px;
  }
  .nav-open {
    overflow: hidden;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-copy {
    max-width: 390px;
  }
  .hero-image {
    object-position: 42%;
  }
  .hero-copy > p:not(.eyebrow) {
    max-width: 330px;
    font-size: 16px;
  }
  .hero .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
  .hero-inner {
    min-height: 580px;
  }
  .hero {
    min-height: 580px;
  }
  .rail-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rail-grid a:nth-child(2) {
    border-right: 0;
  }
  .rail-grid a:nth-child(3) {
    padding-left: 0;
  }
  .rail-grid a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .section {
    padding-block: 72px;
  }
  h2 {
    font-size: 36px;
  }
  .section-heading {
    align-items: flex-start;
  }
  .section-heading > p {
    max-width: 340px;
  }
  .value-grid {
    gap: 24px;
  }
  .footer-main {
    grid-template-columns: 1.4fr 1fr;
    gap: 35px;
  }
  .cta-inner h2 {
    font-size: 36px;
  }
  .cta-inner {
    gap: 30px;
  }
  .editorial-split h2 {
    font-size: 34px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 42px;
  }
  .detail-intro h1 {
    font-size: 50px;
  }
  .detail-row {
    grid-template-columns: 1fr 2fr;
    gap: 25px;
  }
  .two-columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .fit-note {
    grid-template-columns: 1fr 2fr;
  }
  .fit-note > .text-link {
    grid-column: 2;
    justify-self: start;
  }
  .contact-section {
    gap: 40px;
  }
  .brief-form {
    padding: 25px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .page-intro h1 {
    font-size: 56px;
  }
  .capability-row {
    grid-template-columns: 35px 1fr 1fr;
    gap: 25px;
  }
}
@media (max-width: 680px) {
  .shell {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 76px;
  }
  .site-nav {
    top: 75px;
  }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .brand > span {
    font-size: 19px;
  }
  .brand small {
    font-size: 8px;
  }
  .hero {
    min-height: 0;
  }
  .hero-inner {
    min-height: 0;
    display: block;
    padding-top: 38px;
    padding-bottom: 262px;
  }
  .hero-image {
    height: 262px;
    top: auto;
    bottom: 0;
    object-fit: cover;
    object-position: right center;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero .eyebrow {
    font-size: 10px;
    margin-bottom: 21px;
  }
  .hero h1 {
    font-size: 44px;
    line-height: 1.08;
    margin-bottom: 20px;
  }
  .hero h1 br:nth-of-type(2) {
    display: none;
  }
  .hero-copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 16px;
  }
  .hero .actions {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
  }
  .hero .button {
    padding: 12px 15px;
    font-size: 12px;
    gap: 12px;
    min-height: 46px;
  }
  .hero .text-link {
    font-size: 12px;
    gap: 10px;
  }
  .hero-caption {
    font-size: 8px;
    bottom: 12px;
    right: 0;
  }
  .rail-grid a {
    font-size: 12px;
    padding: 19px 13px;
  }
  .rail-grid a:nth-child(2n) {
    padding-right: 0;
    padding-left: 17px;
  }
  .rail-grid svg {
    width: 14px;
  }
  .rail-grid span {
    display: none;
  }
  .section {
    padding-block: 60px;
  }
  .eyebrow {
    margin-bottom: 17px;
  }
  h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 24px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > .text-link {
    margin-top: 20px;
  }
  .section-heading > p {
    margin-top: 25px;
    max-width: 100%;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .project-media {
    aspect-ratio: 1.4;
  }
  .project-media img {
    padding: 28px 42px 36px;
  }
  .project-copy {
    padding-top: 20px;
  }
  .project-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .value-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 38px;
  }
  .value-grid h3 {
    max-width: 100%;
    margin: 16px 0 12px;
  }
  .value-grid article {
    padding-top: 22px;
  }
  .editorial-split {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .editorial-split h2 {
    font-size: 32px;
  }
  .factory-image img {
    aspect-ratio: 1.4;
  }
  .cta-inner {
    display: block;
    padding-block: 45px;
  }
  .cta-inner h2 {
    font-size: 32px;
  }
  .cta-inner > .button {
    margin-top: 26px;
  }
  .footer-main {
    padding-block: 44px;
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }
  .footer-main > div:first-child,
  .footer-main > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
    font-size: 10px;
  }
  .footer-bottom span {
    display: block;
    margin-bottom: 5px;
  }
  .page-intro {
    padding-block: 45px 38px;
  }
  .page-intro h1 {
    font-size: 42px;
    margin-bottom: 24px;
  }
  .intro-copy {
    font-size: 17px;
  }
  .portfolio-section {
    padding-bottom: 60px;
  }
  .portfolio-note {
    display: block;
    font-size: 10px;
  }
  .portfolio-note p {
    text-align: left;
    margin-top: 12px;
    font-size: 12px;
  }
  .filter-toolbar {
    gap: 0 20px;
    margin-top: 20px;
    margin-bottom: 28px;
  }
  .filter-toolbar button {
    font-size: 13px;
    padding: 10px 0;
  }
  .result-count {
    width: 100%;
    margin: 6px 0 8px;
    font-size: 11px;
  }
  .detail-intro {
    padding-block: 30px 38px;
  }
  .back-link {
    margin-bottom: 30px;
  }
  .detail-intro h1 {
    font-size: 41px;
  }
  .detail-visual {
    height: 310px;
  }
  .detail-visual > img {
    padding: 30px 30px 45px;
  }
  .detail-visual figcaption {
    font-size: 9px;
  }
  .detail-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-block: 32px;
  }
  .detail-row h2 {
    font-size: 29px;
  }
  .detail-row > .eyebrow {
    font-size: 11px;
  }
  .fit-note {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .fit-note > .text-link {
    grid-column: 1;
  }
  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .capability-row {
    grid-template-columns: 32px 1fr;
    gap: 18px;
    padding-block: 32px;
  }
  .capability-row h3 {
    font-size: 26px;
  }
  .capability-row > .check-list {
    grid-column: 2;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .process-grid h3 {
    margin-block: 13px;
  }
  .fact-list {
    gap: 25px;
  }
  .faq-list summary {
    font-size: 17px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .product-media {
    height: 300px;
  }
  .product-body h3 {
    font-size: 26px;
  }
  .product-body p {
    font-size: 15px;
  }
  .spec-list {
    font-size: 13px;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 60px;
  }
  .contact-aside h2 {
    font-size: 29px;
  }
  .contact-email {
    font-size: 23px;
  }
  .next-steps {
    margin-block: 28px 0;
  }
  .brief-form {
    padding: 25px 20px;
    gap: 22px;
  }
  .brief-form label {
    font-size: 14px;
  }
  .brief-form h2 {
    font-size: 25px;
  }
  .two-columns {
    gap: 22px;
  }
}
@media (max-width: 680px) {
  .hero h1 br:nth-of-type(2) {
    display: initial;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-inner {
    padding-bottom: 238px;
  }
  .hero-image {
    height: 238px;
  }
}
@media (max-width: 680px) and (max-height: 740px) {
  .hero-inner {
    padding-top: 24px;
    padding-bottom: 175px;
  }
  .hero-image {
    height: 175px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero .eyebrow {
    margin-bottom: 16px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .hero .actions {
    margin-top: 20px;
  }
  .hero-caption {
    font-size: 7px;
  }
}
@media (min-width: 681px) and (max-width: 1150px) {
  .hero-image {
    left: 140px;
    width: calc(100% - 140px);
    object-fit: contain;
    object-position: center right;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
