@font-face { font-family: 'Playfair Display'; src: url('../fonts/playfair-display.ttf') format('truetype'); font-style: normal; font-weight: 400 900; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('../fonts/playfair-display-italic.ttf') format('truetype'); font-style: italic; font-weight: 400 900; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('../fonts/manrope.ttf') format('truetype'); font-style: normal; font-weight: 200 800; font-display: swap; }
:root {
  --paper: #ffffff;
  --tint: #f3f4f3;
  --ink: #17191a;
  --muted: #65696c;
  --line: #e3e5e4;
  --field-line: #8d9290;
  /* Neutral scheme: set this back to #b92f24 to restore the rust accent everywhere. */
  --accent: #17191a;
  --footer-muted: #9aa0a0;
  --footer-line: #3a3d3e;
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px; --s5: 48px; --s6: 64px; --s7: 96px; --s8: 128px;
  --maxw: 1320px;
  --gutter: 24px;
  --pad-x: max(var(--gutter), calc((100% - var(--maxw)) / 2));
  --t-xs: 12px; --t-sm: 13px; --t-base: 15px; --t-md: 19px; --t-lg: 25px; --t-xl: 34px; --t-2xl: 52px; --t-3xl: 92px;
  --display: 'Playfair Display', Georgia, serif;
  --body: 'Manrope', Verdana, sans-serif;
  --speed: 150ms;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.75 var(--body); -webkit-font-smoothing: antialiased; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
figure, p, h1, h2, h3 { margin: 0; }
[hidden] { display: none !important; }
::selection { color: var(--paper); background: var(--ink); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.section-heading, .reference-heading, .project-group, .wordmarks, .about-layout, .process, .production-heading, .production-images, .production-bottom, .contact-layout { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: var(--gutter); }
.section-wrap { padding-block: var(--s7); padding-inline: var(--pad-x); }
.band { background: var(--tint); border-block: 1px solid var(--line); }
.skip-link { position: fixed; top: 10px; left: 10px; padding: 12px 20px; background: var(--ink); color: var(--paper); z-index: 100; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.site-header { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: var(--s4); padding-block: var(--s2); padding-inline: var(--pad-x); position: sticky; top: 0; z-index: 30; background: var(--paper); border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; line-height: 1; }
.brand-mark { font-size: 40px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark > span { color: var(--accent); }
.brand-name { font-size: 11px; font-weight: 800; line-height: 1.5; border-left: 1px solid var(--line); padding-left: 12px; }
#site-nav { display: flex; align-items: center; gap: var(--s3); font-size: var(--t-sm); font-weight: 600; }
#site-nav a { padding: 10px 0; position: relative; color: var(--muted); transition: color var(--speed); }
#site-nav a:hover, #site-nav a[aria-current] { color: var(--ink); }
#site-nav a[aria-current]::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 1px; background: currentColor; }
#site-nav .nav-contact { border-left: 1px solid var(--line); padding-left: var(--s3); color: var(--ink); }
.nav-contact span { margin-left: var(--s2); font-size: 18px; }
.icon-button { width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; align-items: center; justify-content: center; flex-shrink: 0; }
.hero { position: relative; isolation: isolate; min-height: 520px; height: min(720px, calc(100svh - 240px)); color: var(--ink); background: var(--tint); display: flex; align-items: center; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
/* Scrim opacity is sized so ink text clears WCAG AA even if the photo behind it were pure black. */
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgb(255 255 255 / 95%) 0%, rgb(255 255 255 / 90%) 40%, rgb(255 255 255 / 62%) 58%, rgb(255 255 255 / 0%) 88%), linear-gradient(0deg, rgb(255 255 255 / 88%) 0%, rgb(255 255 255 / 70%) 12%, rgb(255 255 255 / 0%) 22%); z-index: -1; }
.hero-content { width: 100%; padding-block: var(--s5) var(--s8); padding-inline: var(--pad-x); }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .06em; display: flex; align-items: center; gap: var(--s2); }
.small-rule { width: 28px; height: 1px; background: currentColor; opacity: .6; }
h1 { font: 400 var(--t-3xl)/1.06 var(--display); letter-spacing: -.02em; margin: var(--s4) 0 var(--s2); }
h1 em, h2 em { font-weight: 400; }
.hero-tagline { font: 400 var(--t-xl)/1.3 var(--display); letter-spacing: -.01em; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: var(--s5); padding: 15px 22px; min-height: 52px; font-size: var(--t-sm); font-weight: 700; border: 1px solid transparent; transition: background var(--speed), color var(--speed); }
.button span { font-size: 20px; line-height: 1; }
.hero-content .button { margin-top: var(--s5); }
.hero-foot { position: absolute; bottom: var(--s3); left: 0; right: 0; margin-inline: var(--pad-x); display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgb(23 25 26 / 22%); padding-top: var(--s2); font-size: var(--t-xs); }
.hero-foot a { display: flex; gap: var(--s3); align-items: center; }
.section-label { grid-column: 1 / -1; margin-bottom: var(--s5); color: var(--muted); }
h2 { font: 400 var(--t-2xl)/1.16 var(--display); letter-spacing: -.015em; }
.section-heading h2 { grid-column: 1 / 8; }
.section-intro { grid-column: 9 / -1; align-self: end; color: var(--muted); font-size: var(--t-base); padding-bottom: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.project-filters { display: flex; flex-wrap: wrap; gap: 0 var(--s5); border-bottom: 1px solid var(--line); margin-top: var(--s6); }
.project-filters button { color: var(--muted); padding: 17px 0; background: none; border: 0; border-bottom: 1px solid transparent; font-size: var(--t-base); min-height: 56px; transition: color var(--speed); }
.project-filters button[aria-pressed='true'] { color: var(--ink); border-bottom-color: var(--ink); }
.project-filters button:hover { color: var(--ink); }
.project-group { row-gap: var(--s6); margin-top: var(--s6); }
.project { grid-column: span 4; min-width: 0; }
.project > img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.project figcaption { padding-top: var(--s2); }
.project h3 { font-size: 17px; font-weight: 600; line-height: 1.45; }
.project figcaption p { font-size: var(--t-xs); color: var(--muted); margin-top: 4px; }
.project-end { border-top: 1px solid var(--line); margin-top: var(--s6); padding-top: var(--s4); display: flex; justify-content: space-between; gap: var(--s3); font-size: var(--t-sm); color: var(--muted); }
.text-link { display: inline-flex; align-items: center; justify-content: space-between; gap: var(--s3); font-size: var(--t-sm); font-weight: 600; color: var(--ink); border-bottom: 1px solid currentColor; padding-bottom: 5px; transition: opacity var(--speed); }
.text-link:hover { opacity: .6; }
.text-link > span { font-size: 18px; }
.reference-heading { row-gap: var(--s3); align-items: baseline; }
.reference-heading .section-label { grid-column: 1 / 4; margin-bottom: 0; }
.reference-heading h2 { grid-column: 5 / -1; font-size: var(--t-xl); }
.wordmarks { list-style: none; padding: 0; margin: var(--s6) 0 0; row-gap: var(--s4); }
.wordmarks li { grid-column: span 2; font-size: 19px; font-weight: 600; letter-spacing: -.01em; text-align: center; line-height: 1.2; }
.wordmarks li > span { font: 500 10px/1.5 var(--body); letter-spacing: .06em; display: block; margin-top: var(--s1); color: var(--muted); }
.about-layout { row-gap: var(--s5); align-items: start; }
.about-image { grid-column: 1 / 6; }
.about-image img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; object-position: 40% center; }
.about-image figcaption { font: italic var(--t-lg)/1.4 var(--display); letter-spacing: -.012em; padding-top: var(--s3); }
.about-copy { grid-column: 7 / -1; }
.about-copy > p { color: var(--muted); margin-top: var(--s3); font-size: var(--t-base); }
.about-copy > .large-copy { color: var(--ink); font-size: var(--t-md); line-height: 1.65; margin-top: var(--s4); }
.about-copy .text-link { margin-top: var(--s5); }
.process { padding: 0; margin: var(--s7) 0 0; list-style: none; row-gap: var(--s4); }
.process li { grid-column: span 4; padding-top: var(--s3); border-top: 1px solid var(--line); }
.process li > span { font-size: 11px; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.process h3 { font: 400 var(--t-lg)/1.35 var(--display); letter-spacing: -.01em; margin: var(--s2) 0 12px; }
.process p { font-size: var(--t-base); color: var(--muted); }
.production-heading { row-gap: var(--s4); align-items: end; }
.production-heading h2 { grid-column: 1 / 8; }
.facility-metric { grid-column: 9 / -1; text-align: right; }
.facility-metric strong { font: 400 var(--t-3xl)/1 var(--display); letter-spacing: -.02em; }
.facility-metric strong > span { font-size: var(--t-xl); }
.facility-metric p { font-size: 11px; letter-spacing: .06em; color: var(--muted); margin-top: var(--s2); }
.production-images { margin-top: var(--s6); row-gap: var(--s4); }
.production-images figure { grid-column: span 6; }
.production-images img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.production-images figcaption { color: var(--muted); font-size: var(--t-xs); padding-top: var(--s2); }
.production-bottom { margin-top: var(--s6); border-top: 1px solid var(--line); padding-top: var(--s4); row-gap: var(--s3); }
.production-bottom > p { grid-column: 1 / 6; font: 400 var(--t-lg)/1.35 var(--display); letter-spacing: -.01em; }
.production-bottom > div { grid-column: 7 / -1; color: var(--muted); font-size: var(--t-base); }
.contact-layout { row-gap: var(--s6); }
.contact-copy { grid-column: 1 / 6; }
#contact-form { grid-column: 7 / -1; }
.contact-intro { color: var(--muted); font-size: var(--t-base); margin-top: var(--s3); }
.contact-phone { display: block; font-size: var(--t-lg); margin-top: var(--s5); }
.contact-phone:hover { text-decoration: underline; text-underline-offset: 6px; }
.contact-email { margin-top: var(--s2); }
address { font-style: normal; font-size: var(--t-base); color: var(--muted); max-width: 290px; margin-top: var(--s5); }
address > span { display: block; font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--muted); margin-bottom: var(--s1); }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5) var(--gutter); }
.field { min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; font-size: var(--t-sm); font-weight: 600; }
.field label > span { color: var(--muted); }
.field input, .field select, .field textarea { display: block; background: transparent; color: var(--ink); border: 0; border-bottom: 1px solid var(--field-line); padding: 10px 0; width: 100%; border-radius: 0; font-size: 16px; min-height: 46px; transition: border-color var(--speed); }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline-offset: 4px; border-bottom-color: var(--ink); }
.field select option { background: var(--paper); }
.form-bottom { display: flex; justify-content: space-between; gap: var(--s3); align-items: center; margin-top: var(--s5); }
.form-bottom > span { font-size: var(--t-xs); color: var(--muted); }
.button-dark { background: var(--ink); color: var(--paper); min-width: 170px; }
.button-dark:hover { background: var(--muted); }
#form-feedback { min-height: 52px; margin-top: var(--s3); font-size: var(--t-sm); color: var(--ink); }
.site-footer { background: var(--ink); color: var(--paper); padding: var(--s6) var(--pad-x) var(--s4); display: flex; align-items: center; flex-wrap: wrap; gap: var(--s4); }
.site-footer .brand-mark > span { color: var(--footer-muted); }
.site-footer > p { font-size: var(--t-xs); color: var(--footer-muted); }
.back-top { margin-left: auto; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--footer-line); font-size: 22px; transition: background var(--speed); }
.back-top:hover { background: #2a2d2e; }
.footer-bottom { display: flex; justify-content: space-between; gap: var(--s3); width: 100%; border-top: 1px solid var(--footer-line); padding-top: var(--s3); color: var(--footer-muted); font-size: 11px; }
@media (max-width: 1050px) {
  :root { --gutter: 20px; --t-3xl: 68px; --t-2xl: 40px; --t-xl: 28px; --t-lg: 23px; }
  .site-header { min-height: 80px; flex-wrap: wrap; gap: 12px; }
  .site-header:not(.menu-ready) { position: relative; }
  .menu-ready #nav-toggle { display: inline-flex; }
  .menu-ready #site-nav { position: absolute; top: 100%; left: 0; padding: 20px var(--pad-x) 28px; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; max-height: calc(100svh - 80px); overflow-y: auto; }
  #site-nav { width: 100%; flex-wrap: wrap; gap: 10px 24px; }
  #site-nav .nav-contact { border: 0; padding-left: 0; }
  .section-wrap { padding-block: var(--s6); }
  .section-heading, .reference-heading, .project-group, .wordmarks, .about-layout, .process, .production-heading, .production-images, .production-bottom, .contact-layout { grid-template-columns: repeat(6, 1fr); }
  .section-heading h2, .section-intro, .reference-heading .section-label, .reference-heading h2, .about-image, .about-copy, .production-heading h2, .facility-metric, .production-bottom > p, .production-bottom > div, .contact-copy, #contact-form { grid-column: 1 / -1; }
  .section-intro { max-width: 540px; padding-bottom: 0; }
  .project { grid-column: span 3; }
  .process li { grid-column: span 2; }
  .production-images figure { grid-column: span 3; }
  .facility-metric { text-align: left; }
}
@media (max-width: 600px) {
  :root { --t-3xl: 52px; --t-2xl: 34px; --t-xl: 25px; --t-lg: 22px; }
  .site-header { min-height: 76px; padding-block: 14px; }
  .brand-mark { font-size: 34px; }
  .brand-name { font-size: 10px; }
  .hero { height: calc(100svh - 190px); min-height: 480px; max-height: 700px; }
  .hero-content { padding-block: var(--s4) var(--s7); }
  .hero-image { object-position: 60% center; }
  .hero::before { background: linear-gradient(0deg, rgb(255 255 255 / 92%) 0%, rgb(255 255 255 / 72%) 60%, rgb(255 255 255 / 58%) 100%); }
  h1 { max-width: 330px; }
  h1 em { display: block; }
  .eyebrow { font-size: 10px; gap: 10px; }
  .small-rule { width: 20px; }
  .hero-foot { font-size: 11px; gap: 15px; }
  .hero-foot a { gap: 8px; }
  .section-wrap { padding-block: var(--s5); }
  .section-heading, .reference-heading, .project-group, .wordmarks, .about-layout, .process, .production-heading, .production-images, .production-bottom, .contact-layout { grid-template-columns: repeat(4, 1fr); }
  .project, .process li, .production-images figure { grid-column: 1 / -1; }
  .wordmarks li { grid-column: span 2; }
  .section-label { margin-bottom: var(--s4); }
  .section-intro { margin-top: var(--s3); }
  .project-filters { gap: 0 var(--s4); margin-top: var(--s5); }
  .project-filters button { font-size: var(--t-sm); min-height: 52px; padding: 14px 0; }
  .project-group { margin-top: var(--s5); row-gap: var(--s5); }
  .project-end { display: block; margin-top: var(--s5); }
  .project-end .text-link { margin-top: var(--s2); }
  .process { margin-top: var(--s6); }
  .production-images, .production-bottom { margin-top: var(--s5); }
  .form-grid { grid-template-columns: 1fr; gap: var(--s4); }
  .site-footer { gap: var(--s3); }
  .site-footer > p { max-width: 160px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}