@charset "UTF-8";
:root {
  --ink: #20231f;
  --paper: #f0eee7;
  --muted: #666b62;
  --line: #cccfc3;
  --copper: #9b4b31;
  --dark: #232821;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 15px/1.9 var(--sans);
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 5px;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
button:disabled {
  cursor: default;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
::selection {
  background: #cfb59b;
  color: var(--ink);
}
.skip {
  position: fixed;
  left: 15px;
  top: -70px;
  background: var(--paper);
  padding: 10px 20px;
  z-index: 100;
}
.skip:focus {
  top: 15px;
}
.demo-bar {
  padding: 7px 4.2%;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  background: var(--dark);
  color: #e1e3d8;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.demo-bar a {
  white-space: nowrap;
  border-bottom: 1px solid #7d8373;
}
.header {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.2%;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
  background: var(--paper);
}
.logo {
  font-family: Georgia, serif;
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 0.075em;
  line-height: 1;
}
.logo span {
  display: block;
  font: 8px/1.6 var(--sans);
  letter-spacing: 0.23em;
  margin-top: 5px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
}
.nav a {
  padding: 8px 0;
}
.nav a[aria-current="page"] {
  color: var(--copper);
}
.nav .nav-cta {
  border: 1px solid var(--ink);
  padding: 12px 24px;
}
.nav-cta span {
  margin-left: 18px;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 8px 12px;
  font-size: 12px;
}
.shell {
  padding-left: 8.3%;
  padding-right: 8.3%;
  max-width: 1800px;
  margin: auto;
}
.eyebrow {
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 15px;
}
.eyebrow:before {
  content: "";
  width: 23px;
  height: 1px;
  background: currentColor;
}
.hero {
  min-height: 650px;
  height: min(760px, 76vw);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: radial-gradient(ellipse at 76% 46%, #d7d8cf, transparent 55%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#454e3910 1px, transparent 1px),
    linear-gradient(90deg, #454e3910 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: -2;
}
.hero-content {
  position: relative;
  padding-top: 80px;
  width: 60%;
  z-index: 2;
}
.hero .eyebrow {
  color: var(--copper);
  margin-bottom: 40px;
}
.hero h1 {
  font: clamp(48px, 5.65vw, 91px) / 1.45 var(--serif);
  letter-spacing: -0.065em;
}
.hero h1 .second {
  display: block;
  padding-left: 10%;
}
.hero-intro {
  font-size: 13px;
  line-height: 2.25;
  margin-top: 34px;
  max-width: 330px;
}
.hero-art {
  position: absolute;
  width: 68%;
  height: 90%;
  object-fit: contain;
  right: -10%;
  top: 3%;
  z-index: 0;
  filter: drop-shadow(0 36px 30px #1d211620);
}
.hero-caption {
  position: absolute;
  right: 5%;
  bottom: 52px;
  font:
    10px/1.8 Georgia,
    serif;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: right;
}
.hero-bottom {
  position: absolute;
  bottom: 32px;
  left: 8.3%;
  display: flex;
  align-items: center;
  gap: 18px;
  font:
    10px Georgia,
    serif;
  letter-spacing: 0.15em;
}
.hero-bottom:before {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--ink);
}
.home-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 8.3%;
  display: flex;
  gap: 40px;
  align-items: center;
  font-size: 11px;
}
.home-strip .tag {
  font-family: Georgia, serif;
  color: var(--copper);
  letter-spacing: 0.12em;
}
.home-strip a {
  margin-left: auto;
  white-space: nowrap;
}
.section {
  padding-top: 105px;
  padding-bottom: 105px;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 45px;
  margin-bottom: 64px;
}
.section h2 {
  font: clamp(29px, 3.2vw, 46px) / 1.6 var(--serif);
  letter-spacing: -0.035em;
}
.section-copy {
  font-size: 14px;
  line-height: 2.1;
  max-width: 600px;
  margin-top: 22px;
}
.section-no {
  font:
    13px Georgia,
    serif;
  color: var(--copper);
  margin-right: 25px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  border-bottom: 1px solid var(--ink);
  padding: 14px 0;
  font-size: 12px;
  transition: gap 0.2s;
}
.text-link:hover {
  gap: 58px;
}
.text-link span {
  font-size: 22px;
  line-height: 1;
}
.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.capability {
  padding: 36px 30px 36px 0;
}
.capability + .capability {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
.capability .number {
  font:
    12px Georgia,
    serif;
  color: var(--copper);
}
.capability h3 {
  font: 24px var(--serif);
  margin: 30px 0 15px;
}
.capability p {
  font-size: 12px;
  color: var(--muted);
}
.dark-section {
  background: var(--dark);
  color: var(--paper);
}
.dark-section .eyebrow,
.dark-section .section-no {
  color: #cab193;
}
.dark-section .section-copy {
  color: #bdc2b6;
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.work-card[hidden] {
  display: none;
}
.work-visual {
  height: 230px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #d8dad0;
  background-image:
    linear-gradient(#37422b12 1px, transparent 1px),
    linear-gradient(90deg, #37422b12 1px, transparent 1px);
  background-size: 38px 38px;
}
.work-visual svg {
  width: 82%;
  height: 85%;
  transition: transform 0.6s;
}
.work-card:hover .work-visual svg {
  transform: rotate(-4deg) scale(1.06);
}
.work-code {
  position: absolute;
  left: 16px;
  top: 12px;
  color: #555b4e;
  font:
    10px Georgia,
    serif;
  letter-spacing: 0.1em;
}
.work-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-top: 22px;
  color: var(--muted);
}
.dark-section .work-meta {
  color: #b5bcac;
}
.work-card h3 {
  font: 23px var(--serif);
  margin-top: 10px;
}
.work-card p {
  font-size: 12px;
  margin-top: 12px;
  color: var(--muted);
}
.dark-section .work-card p {
  color: #b5bcac;
}
.section-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 35px;
}
.dark-section .text-link {
  border-color: #8d9584;
}
.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 70px;
  padding-bottom: 70px;
  border-top: 1px solid var(--line);
  gap: 30px;
}
.contact-band h2 {
  font: clamp(30px, 4vw, 53px) / 1.5 var(--serif);
}
.contact-band p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}
.circle-link {
  width: 105px;
  height: 105px;
  flex-shrink: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font:
    35px Georgia,
    serif;
  transition:
    background 0.2s,
    color 0.2s;
}
.circle-link:hover {
  background: var(--ink);
  color: var(--paper);
}
.footer {
  padding: 50px 4.2% 25px;
  background: #e5e4db;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 11px;
}
.footer-note {
  border-top: 1px solid #c5c8ba;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: #596051;
}
.footer-note p {
  max-width: 640px;
}
.page-hero {
  padding-top: 58px;
  padding-bottom: 65px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.breadcrumb {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 45px;
}
.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-hero .eyebrow {
  color: var(--copper);
  margin-bottom: 17px;
}
.page-hero h1 {
  font: clamp(42px, 6vw, 80px) / 1.3 var(--serif);
  letter-spacing: -0.035em;
}
.page-lead {
  max-width: 630px;
  margin-top: 25px;
  font-size: 14px;
}
.technical-row {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 35px;
  padding: 50px 0;
  border-top: 1px solid var(--line);
}
.technical-row:last-child {
  border-bottom: 1px solid var(--line);
}
.technical-row .number {
  font:
    38px Georgia,
    serif;
  color: #9b4b31;
}
.technical-row h2 {
  font: 29px/1.5 var(--serif);
  margin-bottom: 20px;
}
.technical-row p {
  font-size: 13px;
  color: var(--muted);
}
.technical-row dl {
  margin: 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.technical-row dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.technical-row dt {
  color: var(--muted);
}
.technical-row dd {
  margin: 0;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #606954;
}
.process-item {
  padding: 30px 25px 0 0;
}
.process-item + .process-item {
  border-left: 1px solid #606954;
  padding-left: 25px;
}
.process-item b {
  font:
    12px Georgia,
    serif;
  color: #c8ad8c;
}
.process-item h3 {
  font: 23px var(--serif);
  margin: 25px 0 18px;
}
.process-item p {
  color: #b9c2af;
  font-size: 12px;
}
.small-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 30px;
}
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  padding: 10px 24px;
  border-radius: 0;
}
.filter[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.result-count {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 35px;
}
.works-page .works-grid {
  row-gap: 50px;
}
.company-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.company-intro h2 {
  font: clamp(30px, 3.2vw, 45px) / 1.7 var(--serif);
  margin: 24px 0;
}
.company-intro p {
  font-size: 13px;
  color: var(--muted);
}
.company-art {
  background: #d8d9cd;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 380px;
}
.company-art:after {
  content: "FORM FOLLOWS PRECISION.";
  position: absolute;
  bottom: 20px;
  left: 25px;
  font:
    10px Georgia,
    serif;
  letter-spacing: 0.1em;
}
.company-table {
  border-top: 1px solid var(--line);
  margin: 0;
}
.company-table div {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  font-size: 13px;
}
.company-table dt {
  color: var(--muted);
}
.company-table dd {
  margin: 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
}
.contact-aside h2 {
  font: 28px/1.6 var(--serif);
  margin-bottom: 22px;
}
.contact-aside p {
  font-size: 12px;
  color: var(--muted);
}
.contact-aside ul {
  padding-left: 18px;
  font-size: 12px;
  color: var(--muted);
  line-height: 2.3;
}
.form-notice {
  font-size: 12px;
  border: 1px solid #b6b69f;
  background: #e7e7da;
  padding: 20px;
  margin-bottom: 32px;
}
.form-row {
  margin-bottom: 25px;
}
.form-row label,
.form-row legend {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
}
.required {
  font-size: 10px;
  color: var(--copper);
  margin-left: 10px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid #afb4a5;
  border-radius: 0;
  background: #f8f7f1;
  color: var(--ink);
  padding: 13px 14px;
  font-size: 14px;
}
.form-row textarea {
  resize: vertical;
  min-height: 155px;
}
.field-help {
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
}
.error {
  font-size: 12px;
  color: #973f2d;
  margin-top: 5px;
  min-height: 0;
}
.error:empty {
  display: none;
}
[aria-invalid="true"] {
  border-color: #973f2d !important;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
}
.checkbox-label input {
  margin-top: 5px;
  accent-color: var(--ink);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.button-primary {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  padding: 17px 24px;
  display: inline-flex;
  gap: 45px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.button-secondary {
  border: 1px solid #a6ad9d;
  background: transparent;
  padding: 17px 24px;
  font-size: 13px;
}
.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.preview {
  scroll-margin-top: 30px;
}
.preview h2 {
  font: 28px var(--serif);
  margin-bottom: 18px;
}
.preview p {
  font-size: 12px;
  color: var(--muted);
}
.preview dl {
  margin-top: 30px;
}
.preview dl div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.preview dt {
  font-size: 11px;
  color: var(--muted);
}
.preview dd {
  font-size: 14px;
  margin: 6px 0 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.preview[hidden],
form[hidden] {
  display: none;
}
.hero-content {
  animation: arrive 0.9s both;
}
.hero-art {
  animation: metal-arrive 1.4s both;
}
@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes metal-arrive {
  from {
    opacity: 0;
    transform: translate(30px, 20px) rotate(6deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1600px) {
  .hero-content {
    padding-top: 110px;
  }
}
@media (max-width: 1000px) {
  .nav {
    gap: 18px;
  }
  .shell {
    padding-left: 6%;
    padding-right: 6%;
  }
  .hero {
    min-height: 610px;
  }
  .hero-content {
    width: 68%;
    padding-top: 75px;
  }
  .hero h1 {
    font-size: 65px;
  }
  .hero-art {
    right: -19%;
    width: 78%;
  }
  .section-head {
    grid-template-columns: 1fr 2.2fr;
    gap: 20px;
  }
  .contact-layout {
    gap: 45px;
    grid-template-columns: 1fr 1.8fr;
  }
  .company-intro {
    gap: 40px;
  }
  .work-visual {
    height: 185px;
  }
  .technical-row {
    grid-template-columns: 45px 1fr 1fr;
    gap: 25px;
  }
  .footer-links {
    gap: 15px;
  }
}
@media (max-width: 700px) {
  body {
    font-size: 14px;
  }
  .demo-bar {
    font-size: 9px;
    gap: 10px;
    padding: 7px 5%;
  }
  .header {
    height: 77px;
    padding: 0 6%;
  }
  .logo {
    font-size: 29px;
  }
  .logo span {
    font-size: 7px;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 77px;
    background: var(--paper);
    padding: 18px 6% 28px;
    border-bottom: 1px solid var(--ink);
    box-shadow: 0 15px 20px #1111;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav .nav-cta {
    margin-top: 12px;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
  }
  .hero {
    height: auto;
    min-height: 835px;
  }
  .hero-content {
    padding-top: 46px;
    width: 100%;
  }
  .hero .eyebrow {
    font-size: 10px;
    margin-bottom: 26px;
  }
  .hero h1 {
    font-size: clamp(42px, 9.8vw, 67px);
    line-height: 1.5;
  }
  .hero h1 .second {
    padding-left: 7%;
  }
  .hero-intro {
    font-size: 12px;
    margin-top: 26px;
    max-width: 280px;
  }
  .hero-art {
    width: 117%;
    height: 49%;
    top: auto;
    bottom: 25px;
    right: -16%;
  }
  .hero-caption {
    bottom: 38px;
    right: 6%;
    font-size: 8px;
  }
  .hero-bottom {
    left: 6%;
    bottom: 38px;
    font-size: 9px;
  }
  .hero-bottom:before {
    width: 20px;
  }
  .home-strip {
    padding: 16px 6%;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 10px;
  }
  .home-strip a {
    display: none;
  }
  .section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 35px;
  }
  .section-copy {
    font-size: 12px;
    margin-top: 18px;
  }
  .eyebrow {
    font-size: 11px;
  }
  .capabilities {
    grid-template-columns: 1fr;
  }
  .capability,
  .capability + .capability {
    padding: 25px 0;
    border-left: 0;
    position: relative;
  }
  .capability + .capability {
    border-top: 1px solid var(--line);
  }
  .capability h3 {
    margin: 10px 0 12px;
    font-size: 23px;
  }
  .capability p {
    max-width: 440px;
  }
  .capability .number {
    position: absolute;
    right: 4px;
    top: 30px;
  }
  .works-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .work-visual {
    height: 260px;
  }
  .work-meta {
    margin-top: 16px;
  }
  .work-card h3 {
    font-size: 23px;
  }
  .contact-band {
    padding-top: 45px;
    padding-bottom: 45px;
    gap: 15px;
  }
  .contact-band h2 {
    font-size: 28px;
  }
  .contact-band p {
    font-size: 10px;
  }
  .circle-link {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }
  .footer {
    padding: 40px 6% 23px;
  }
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 15px 22px;
  }
  .footer-note {
    flex-direction: column;
    font-size: 9px;
  }
  .page-hero {
    padding-top: 32px;
    padding-bottom: 43px;
  }
  .breadcrumb {
    margin-bottom: 30px;
    font-size: 9px;
  }
  .page-hero h1 {
    font-size: 46px;
  }
  .page-lead {
    font-size: 12px;
  }
  .technical-row {
    grid-template-columns: 30px 1fr;
    gap: 20px;
    padding: 30px 0;
  }
  .technical-row .number {
    font-size: 24px;
  }
  .technical-row h2 {
    font-size: 25px;
    margin-bottom: 13px;
  }
  .technical-row p {
    font-size: 12px;
  }
  .technical-row dl {
    grid-column: 2;
    font-size: 11px;
  }
  .technical-row dl div {
    grid-template-columns: 78px 1fr;
  }
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .process-item,
  .process-item + .process-item {
    padding: 25px 18px 25px 0;
  }
  .process-item:nth-child(2n) {
    border-left: 1px solid #606954;
    padding-left: 18px;
  }
  .process-item:nth-child(3) {
    border-left: 0;
  }
  .process-item:nth-child(n + 3) {
    border-top: 1px solid #606954;
  }
  .process-item h3 {
    font-size: 21px;
    margin: 13px 0;
  }
  .filters {
    gap: 8px;
  }
  .filter {
    font-size: 11px;
    padding: 8px 15px;
  }
  .company-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .company-art {
    min-height: 280px;
  }
  .company-table div {
    grid-template-columns: 85px 1fr;
    padding: 20px 0;
    font-size: 12px;
    gap: 15px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-aside h2 {
    font-size: 25px;
  }
  .contact-aside ul {
    margin-bottom: 0;
  }
  .form-notice {
    padding: 17px;
    font-size: 11px;
  }
  .form-actions .button-primary {
    width: 100%;
  }
  .button-primary {
    gap: 20px;
  }
  .small-note {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

#form-fields {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.button-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
