/* JB 3D Printing — industrial editorial system */
:root {
  --ink: #0b0e10;
  --ink-2: #151a1d;
  --paper: #f3f1ea;
  --white: #fff;
  --muted: #697277;
  --line: #cfd2ce;
  --cyan: #13d6cc;
  --cyan-dark: #087f7a;
  --orange: #ff6a3d;
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Aptos", "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 999; padding: 10px 14px; background: var(--white); color: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; height: 76px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.14); transition: background .25s ease, height .25s ease; }
.site-header.scrolled { height: 66px; background: rgba(11,14,16,.94); backdrop-filter: blur(14px); }
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: "Arial Narrow", "Roboto Condensed", sans-serif; font-weight: 800; letter-spacing: .08em; line-height: 1; }
.brand b { color: var(--cyan); }
.brand-mark { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 2; }
.primary-nav { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 700; }
.primary-nav > a:not(.nav-cta) { position: relative; }
.primary-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--cyan); transition: right .2s ease; }
.primary-nav > a:hover::after, .primary-nav > a:focus-visible::after { right: 0; }
.nav-cta { padding: 10px 16px; color: var(--ink); background: var(--cyan); border: 1px solid var(--cyan); }
.nav-cta:hover { background: var(--white); border-color: var(--white); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: inherit; }
.nav-toggle span { display: block; width: 23px; height: 2px; margin: 6px auto; background: currentColor; transition: transform .2s ease; }

.hero { position: relative; min-height: 780px; color: var(--white); background: var(--ink); overflow: hidden; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { left: 35%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .82; }
.hero-shade { background: linear-gradient(90deg, rgba(8,10,12,.98) 0%, rgba(8,10,12,.92) 36%, rgba(8,10,12,.38) 66%, rgba(8,10,12,.28) 100%), linear-gradient(0deg, rgba(8,10,12,.48), transparent 50%); }
.hero-grid { position: relative; min-height: 780px; padding-top: 148px; padding-bottom: 76px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .52fr); align-items: end; gap: 9vw; }
.hero-copy { align-self: center; max-width: 750px; }
.eyebrow { margin: 0 0 24px; display: flex; align-items: center; gap: 11px; color: var(--cyan); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.eyebrow.dark { color: var(--cyan-dark); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif; font-weight: 800; letter-spacing: -.055em; line-height: .94; }
h1 { margin-bottom: 30px; font-size: clamp(64px, 7.25vw, 106px); }
h1 em, h2 em { color: var(--cyan); font-style: normal; }
.hero-lede { max-width: 650px; margin-bottom: 16px; color: #d8dddf; font-size: clamp(17px, 1.45vw, 21px); line-height: 1.55; }
.hero-promise { max-width: 610px; margin-bottom: 34px; padding-left: 14px; border-left: 3px solid var(--cyan); color: #f3fbfb; font-weight: 800; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.button { min-height: 52px; padding: 13px 22px; display: inline-flex; justify-content: center; align-items: center; gap: 15px; border: 1px solid transparent; border-radius: var(--radius); font-weight: 800; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--cyan); border-color: var(--cyan); }
.button-primary:hover { background: #62eee7; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.38); background: rgba(11,14,16,.28); }
.button-ghost:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-shop { min-height: 46px; color: #d7dee0; border-color: rgba(255,255,255,.22); background: rgba(11,14,16,.18); font-size: 14px; }
.button-shop:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.button-light { color: var(--ink); background: var(--paper); }
.file-types { margin-top: 34px; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.file-types span { padding: 5px 8px; border: 1px solid rgba(255,255,255,.28); color: #d9e1e2; font-family: ui-monospace, monospace; font-size: 11px; font-weight: 800; }
.file-types small { margin-left: 5px; color: #aeb6b9; }
.job-card { padding: 24px; align-self: end; background: rgba(11,14,16,.82); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(14px); }
.job-card-head { padding-bottom: 16px; display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px solid rgba(255,255,255,.18); font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: .12em; }
.live-dot { color: var(--cyan); }
.live-dot::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.job-card ol { padding: 0; margin: 4px 0 16px; list-style: none; }
.job-card li { padding: 15px 0; display: grid; grid-template-columns: 34px 1fr; border-bottom: 1px solid rgba(255,255,255,.13); }
.job-card li > b { color: var(--cyan); font-family: ui-monospace, monospace; font-size: 12px; }
.job-card strong, .job-card small { display: block; }
.job-card strong { font-size: 14px; }
.job-card small { margin-top: 2px; color: #9ca6aa; line-height: 1.4; }
.job-card > p { margin: 0; color: #9ca6aa; font-size: 11px; }

.trust-line { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { min-height: 110px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-grid p { margin: 0; padding: 10px 32px; border-right: 1px solid var(--line); }
.trust-grid p:first-child { padding-left: 0; }
.trust-grid p:last-child { border: 0; }
.trust-grid b, .trust-grid span { display: block; }
.trust-grid b { font-size: 14px; }
.trust-grid span { color: var(--muted); font-size: 12px; }

.section { padding: 120px 0; }
.section-intro { max-width: 780px; margin-bottom: 64px; }
.section-intro h2, .process-heading h2, .work-heading h2, .quote-copy h2 { margin-bottom: 24px; font-size: clamp(48px, 5.4vw, 78px); }
.section-intro > p:last-child, .section-intro.horizontal > p, .work-heading > p { color: var(--muted); font-size: 18px; }
.section-intro.horizontal { max-width: none; display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 70px; }
.section-intro.horizontal h2 { margin-bottom: 0; }
.service-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: stretch; }
.service-feature { position: relative; min-height: 520px; padding: 42px; color: var(--white); background: var(--ink); overflow: hidden; }
.service-feature::after { content: ""; position: absolute; z-index: 0; width: 290px; height: 290px; right: -80px; bottom: -95px; border: 32px solid var(--cyan); border-radius: 50%; opacity: .8; }
.service-feature > * { position: relative; z-index: 1; }
.service-number { color: var(--cyan); font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: .12em; }
.service-feature h3 { max-width: 570px; margin: 100px 0 22px; font-size: clamp(36px, 4vw, 57px); line-height: 1.02; letter-spacing: -.045em; }
.service-feature > p:not(.service-number) { max-width: 520px; color: #b8c0c2; }
.service-feature > a { position: relative; z-index: 1; margin-top: 18px; display: inline-flex; gap: 30px; align-items: center; color: var(--cyan); font-weight: 800; border-bottom: 1px solid currentColor; }
.layer-sample { position: absolute; top: 34px; right: 38px; width: 82px; transform: skewY(-17deg); }
.layer-sample i { display: block; height: 6px; margin: 5px 0; background: var(--cyan); opacity: calc(1 - var(--i, .1)); }
.layer-sample i:nth-child(2) { width: 91%; }.layer-sample i:nth-child(3) { width: 82%; }.layer-sample i:nth-child(4) { width: 73%; }.layer-sample i:nth-child(5) { width: 64%; }.layer-sample i:nth-child(6) { width: 55%; }
.service-list { border-top: 1px solid #aeb4b1; }
.service-list article { padding: 34px 0; display: grid; grid-template-columns: 60px 1fr; border-bottom: 1px solid #aeb4b1; }
.service-list article > span { color: var(--cyan-dark); font-family: ui-monospace, monospace; font-size: 12px; }
.service-list h3 { margin: 0 0 10px; font-size: 25px; }
.service-list p { margin: 0; color: var(--muted); }

.process-section { color: var(--white); background: var(--ink); }
.process-heading { max-width: 900px; }
.process-track { position: relative; margin-top: 70px; display: grid; grid-template-columns: repeat(4, 1fr); }
.process-track::before { content: ""; position: absolute; top: 22px; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.22); }
.process-track article { position: relative; padding: 60px 28px 0 0; }
.process-track article::before { content: ""; position: absolute; top: 17px; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px var(--ink); }
.process-track b { color: var(--cyan); font-family: ui-monospace, monospace; font-size: 11px; }
.process-track h3 { margin: 16px 0 10px; font-size: 24px; }
.process-track p { color: #aeb7ba; }

.proof-section { background: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: var(--line); gap: 1px; }
.proof-grid article { min-height: 230px; padding: 30px; background: var(--white); }
.proof-grid span { color: var(--cyan-dark); font-family: ui-monospace, monospace; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.proof-grid h3 { margin: 32px 0 12px; font-size: 28px; line-height: 1.1; }
.proof-grid p { margin: 0; color: var(--muted); }

.materials-section { background: var(--white); }
.materials-table { border-top: 2px solid var(--ink); }
.material-row { min-height: 80px; display: grid; grid-template-columns: .7fr 1.25fr 1fr 1.4fr; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); }
.material-row strong { font-family: "Arial Narrow", sans-serif; font-size: 26px; letter-spacing: -.03em; }
.material-row span { color: #4c5559; }
.material-head { min-height: 54px; font-family: ui-monospace, monospace; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.work-section { color: var(--white); background: #111719; overflow: hidden; }
.work-heading { display: grid; grid-template-columns: 1.2fr .65fr; gap: 90px; align-items: end; }
.work-heading > p { color: #aeb7ba; }
.work-grid { margin-top: 62px; display: grid; grid-template-columns: 1.35fr .65fr; align-items: stretch; }
.work-photo { margin: 0; position: relative; min-height: 620px; background: #050606; }
.work-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.work-photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 28px; display: flex; justify-content: space-between; background: linear-gradient(transparent, rgba(0,0,0,.86)); font-size: 14px; }
.work-spec { padding: 48px; display: flex; flex-direction: column; justify-content: center; background: var(--cyan); color: var(--ink); }
.work-spec div { padding: 22px 0; border-bottom: 1px solid rgba(11,14,16,.3); }
.work-spec small { font-family: ui-monospace, monospace; font-weight: 800; letter-spacing: .1em; }
.work-spec p { margin: 8px 0 0; font-weight: 700; }
.work-spec .button { margin-top: 36px; align-self: flex-start; }

.shop-preview { background: var(--paper); }
.product-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: var(--line); gap: 1px; }
.product-strip > a { padding: 18px; background: var(--paper); transition: background .2s ease; }
.product-strip > a:hover { background: var(--white); }
.product-visual { position: relative; height: 250px; margin-bottom: 20px; display: block; overflow: hidden; background-color: #d9ddd8; }
.product-visual::before, .product-visual::after { content: ""; position: absolute; }
.product-gears { background: repeating-radial-gradient(circle at 48% 48%, var(--ink) 0 9px, transparent 10px 22px), var(--cyan); }
.product-gears::before { width: 130px; height: 130px; left: 50%; top: 50%; border: 18px dashed var(--ink); border-radius: 50%; transform: translate(-50%,-50%) rotate(13deg); }
.product-desk { background: linear-gradient(135deg, #dad4c9 50%, #beb7aa 50%); }
.product-desk::before { width: 130px; height: 150px; left: 50%; bottom: 0; background: var(--ink); border-radius: 8px 8px 0 0; transform: translateX(-50%) skewY(-4deg); box-shadow: 44px -18px 0 -27px var(--cyan); }
.product-case { background: #c8d1d0; }
.product-case::before { inset: 52px 34px; border: 14px solid var(--ink); border-radius: 12px; box-shadow: inset 0 0 0 5px var(--cyan); }
.product-case::after { width: 9px; height: 9px; left: 64px; top: 76px; border-radius: 50%; background: var(--cyan); box-shadow: 82px 0 var(--cyan), 0 82px var(--cyan), 82px 82px var(--cyan); }
.product-light { background: linear-gradient(145deg, #20282a, #090b0c); }
.product-light::before { inset: 28px 42px 35px; border: 13px solid #101315; background: radial-gradient(circle at 58% 35%, #fff 0 5%, transparent 6%), linear-gradient(110deg, #fff9d8, #d8c792); box-shadow: 0 0 45px rgba(255,245,187,.45); }
.product-strip small { color: var(--cyan-dark); font-family: ui-monospace, monospace; font-weight: 800; letter-spacing: .1em; }
.product-strip h3 { min-height: 54px; margin: 8px 0; font-size: 20px; line-height: 1.3; }
.product-strip b { font-size: 18px; }
.text-link { margin-top: 28px; display: inline-flex; gap: 18px; color: var(--cyan-dark); font-weight: 800; border-bottom: 1px solid; }


.guide-links { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.guide-links a { padding: 12px 14px; border: 1px solid var(--line); background: var(--white); color: var(--cyan-dark); font-weight: 800; }
.service-list a { border-bottom: 1px solid currentColor; }
.service-page { background: var(--paper); }
.service-page .site-header { background: rgba(11,14,16,.96); }
.service-hero { padding: 152px 0 88px; color: var(--white); background: radial-gradient(circle at 78% 15%, rgba(19,214,204,.26), transparent 30%), var(--ink); }
.service-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 70px; align-items: end; }
.service-hero h1 { max-width: 820px; margin-bottom: 24px; font-size: clamp(54px, 6.5vw, 92px); }
.service-lede { max-width: 760px; color: #d8dddf; font-size: clamp(17px, 1.4vw, 21px); }
.service-note { padding: 26px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.06); }
.service-note b { color: var(--cyan); }
.service-note p { margin: 10px 0 0; color: #bac3c5; }
.service-detail { background: var(--white); }
.service-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: var(--line); gap: 1px; }
.service-card-grid article { min-height: 260px; padding: 30px; background: var(--white); }
.service-card-grid span { color: var(--cyan-dark); font-family: ui-monospace, monospace; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.service-card-grid h2 { margin: 38px 0 12px; font-size: 32px; letter-spacing: -.035em; line-height: 1.05; }
.service-card-grid p { color: var(--muted); }
.service-steps { background: var(--paper); }
.service-steps-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.service-steps-grid h2, .service-cta h2 { font-size: clamp(42px, 5vw, 70px); }
.service-steps-grid > div > p:last-child { color: var(--muted); }
.service-steps ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid #aeb4b1; }
.service-steps li { padding: 26px 0; display: grid; grid-template-columns: 58px 1fr; border-bottom: 1px solid #aeb4b1; }
.service-steps li b { color: var(--cyan-dark); font-family: ui-monospace, monospace; font-size: 12px; }
.service-cta { padding: 86px 0; color: var(--white); background: var(--ink-2); }
.service-cta p { max-width: 640px; color: #b9c1c4; }

.quote-section { color: var(--white); background: var(--ink); }
.quote-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.quote-copy > p:not(.eyebrow) { max-width: 520px; color: #aeb7ba; font-size: 18px; }
.quote-expectations { max-width: 540px; margin-top: 30px; padding: 22px; border: 1px solid rgba(255,255,255,.17); background: rgba(255,255,255,.05); }
.quote-expectations h3 { margin-bottom: 14px; color: var(--white); font-size: 22px; }
.quote-expectations ul { margin: 0 0 18px; padding-left: 20px; color: #dbe0e1; }
.quote-expectations li { margin: 8px 0; }
.quote-expectations p { margin-bottom: 12px; color: #aeb7ba; font-size: 13px; }
.quote-expectations p:last-child { margin-bottom: 0; }
.quote-copy dl { margin-top: 55px; }
.quote-copy dl div { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.17); }
.quote-copy dt { color: #7f8a8d; font-family: ui-monospace, monospace; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.quote-copy dd { margin: 4px 0 0; }
.quote-copy dd a { border-bottom: 1px solid rgba(255,255,255,.35); }
.quote-form { padding: 42px; color: var(--ink); background: var(--paper); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.quote-form label { margin-bottom: 22px; display: block; }
.compact-fields label { margin-bottom: 18px; }
.quote-form label > span:first-child { margin-bottom: 7px; display: block; font-size: 13px; font-weight: 800; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid #9da4a1; border-radius: 0; outline: 0; background: transparent; color: var(--ink); }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-bottom: 2px solid var(--cyan-dark); }
.quote-form textarea { resize: vertical; }
.honeypot { position: absolute !important; left: -9999px !important; }
.file-field input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.file-drop { min-height: 98px; margin-top: 9px !important; padding: 22px; display: flex !important; flex-direction: column; justify-content: center; border: 1px dashed #8e9794; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.file-drop:hover { border-color: var(--cyan-dark); background: rgba(19,214,204,.06); }
.file-drop b { color: var(--cyan-dark); }
.file-drop small { color: var(--muted); }
.form-footer { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.form-footer p { max-width: 320px; margin: 0; color: var(--muted); font-size: 12px; }
.form-footer .button { border: 0; }

.site-footer { padding: 72px 0 24px; color: #dbe0e1; background: #07090a; }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, .65fr); gap: 50px; }
.footer-brand { margin-bottom: 18px; color: var(--white); }
.footer-grid > div:first-child p { max-width: 300px; color: #7f898c; }
.footer-grid strong, .footer-grid a { display: block; }
.footer-grid strong { margin-bottom: 17px; color: #7f898c; font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a:not(.brand) { margin: 8px 0; font-size: 14px; }
.footer-grid a:hover { color: var(--cyan); }
.footer-bottom { margin-top: 65px; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid #23282a; color: #697174; font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: .08em; }

[data-reveal] { opacity: 1; transform: none; }
[data-reveal].visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 760px); }
  .nav-toggle { display: block; }
  .primary-nav { position: fixed; top: 0; right: 0; width: min(360px, 88vw); height: 100vh; padding: 110px 32px 32px; display: flex; flex-direction: column; align-items: stretch; gap: 0; color: var(--white); background: var(--ink); transform: translateX(105%); transition: transform .25s ease; }
  .primary-nav.open { transform: none; }
  .primary-nav a { padding: 16px 0; border-bottom: 1px solid #2b3134; }
  .primary-nav .nav-cta { margin-top: 18px; padding: 14px 16px; text-align: center; border: 0; }
  .nav-toggle { position: relative; z-index: 2; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero-media { left: 0; opacity: .6; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,10,12,.96), rgba(8,10,12,.55)), linear-gradient(0deg, rgba(8,10,12,.82), transparent 70%); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 130px; }
  .job-card { max-width: 520px; }
  .service-layout, .quote-grid, .service-hero-grid, .service-steps-grid { grid-template-columns: 1fr; }
  .section-intro.horizontal, .work-heading { grid-template-columns: 1fr; gap: 22px; }
  .process-track, .product-strip, .proof-grid, .service-card-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; }
  .work-photo { min-height: 520px; }
  .materials-table { overflow-x: auto; }
  .material-row { min-width: 820px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100vw - 28px); }
  .site-header { height: 66px; }
  .brand { font-size: 14px; }
  .brand-mark { width: 29px; }
  .hero, .hero-grid { min-height: 760px; }
  .hero-grid { padding-top: 110px; padding-bottom: 40px; }
  h1 { font-size: clamp(51px, 15vw, 70px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .file-types small { flex-basis: 100%; margin: 5px 0 0; }
  .job-card { padding: 18px; }
  .trust-grid { padding: 12px 0; grid-template-columns: 1fr; }
  .trust-grid p, .trust-grid p:first-child { padding: 13px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid p:last-child { border-bottom: 0; }
  .section { padding: 78px 0; }
  .section-intro { margin-bottom: 42px; }
  .section-intro h2, .process-heading h2, .work-heading h2, .quote-copy h2 { font-size: 46px; }
  .service-feature { min-height: 490px; padding: 27px; }
  .service-feature::after { right: -125px; bottom: -165px; }
  .service-feature h3 { margin-top: 95px; font-size: 39px; }
  .service-list article { grid-template-columns: 42px 1fr; }
  .process-track { grid-template-columns: 1fr; margin-top: 44px; }
  .process-track::before { top: 0; bottom: 0; left: 5px; width: 1px; height: auto; }
  .process-track article { padding: 5px 0 35px 42px; }
  .process-track article::before { top: 7px; }
  .materials-table { margin-right: 0; padding-right: 0; overflow: visible; }
  .material-head { display: none; }
  .material-row { min-width: 0; padding: 22px 0; grid-template-columns: 1fr; gap: 12px; align-items: start; }
  .material-row strong { font-size: 30px; }
  .material-row span { display: grid; grid-template-columns: 86px 1fr; gap: 10px; }
  .material-row span::before { color: var(--cyan-dark); font-family: ui-monospace, monospace; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .material-row span:nth-child(2)::before { content: "Best for"; }
  .material-row span:nth-child(3)::before { content: "Character"; }
  .material-row span:nth-child(4)::before { content: "Use when"; }
  .work-photo { min-height: 440px; }
  .work-spec { padding: 30px; }
  .work-spec .button { width: 100%; }
  .product-strip, .proof-grid, .service-card-grid { grid-template-columns: 1fr; }
  .product-strip > a { padding: 12px; }
  .product-visual { height: 170px; }
  .product-strip h3 { min-height: 62px; font-size: 17px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .service-hero { padding-top: 118px; }
  .guide-links { flex-direction: column; }
  .quote-form { padding: 24px 20px; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}


/* Real project gallery */
.proof-grid-photo article{overflow:hidden;padding:0;background:#fff;border:1px solid rgba(12,18,22,.08)}
.proof-grid-photo img{width:100%;height:auto;aspect-ratio:4/3;object-fit:cover;object-position:center;display:block;background:#111820}
.proof-grid-photo h3,.proof-grid-photo p{padding:0 1.25rem}.proof-grid-photo h3{margin-top:1.1rem}.proof-grid-photo p{padding-bottom:1.25rem}
.proof-link{margin-top:1.2rem}.proof-link a{font-weight:800;color:var(--ink);text-decoration:none;border-bottom:2px solid var(--cyan-dark)}
.gallery-section{background:#f5f1ea}.gallery-filters{display:flex;flex-wrap:wrap;gap:.7rem;margin-bottom:1.5rem}.gallery-filters span{border:1px solid rgba(12,18,22,.12);border-radius:999px;padding:.55rem .9rem;background:#fff;font-weight:800;color:#26313a}
.real-gallery-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.25rem}.gallery-card{background:#fff;border:1px solid rgba(12,18,22,.08);border-radius:24px;overflow:hidden;box-shadow:0 20px 45px rgba(12,18,22,.08)}.gallery-card img{width:100%;height:auto;aspect-ratio:4/5;object-fit:cover;object-position:center;display:block;background:#111820}.gallery-card-copy{padding:1.25rem}.gallery-tag{font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;font-weight:900;color:var(--cyan-dark);margin:0 0 .5rem}.gallery-card h2{font-size:1.25rem;margin:.2rem 0 .65rem}.gallery-card dl{margin:1rem 0;display:grid;gap:.65rem}.gallery-card dt{font-size:.72rem;text-transform:uppercase;letter-spacing:.1em;font-weight:900;color:#687783}.gallery-card dd{margin:0;color:#27323a}.gallery-card a{font-weight:900;color:var(--ink);text-decoration:none;border-bottom:2px solid var(--cyan-dark)}.gallery-preview-card{background:#fff;border-radius:24px;padding:1rem;box-shadow:0 20px 45px rgba(12,18,22,.08)}.gallery-preview-card img{width:100%;height:auto;aspect-ratio:4/5;object-fit:cover;object-position:center;background:#111820;border-radius:18px;margin-bottom:1rem}
@media (max-width:900px){.real-gallery-grid{grid-template-columns:1fr}.gallery-card img,.gallery-preview-card img{aspect-ratio:4/5}.proof-grid-photo img{aspect-ratio:4/3}}
