:root {
  --ink: #111212;
  --paper: #f4f2ed;
  --paper-2: #ebe8e1;
  --graphite: #343638;
  --aluminum: #a6aaad;
  --line: rgba(17, 18, 18, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --accent: #3157f6;
  --white: #ffffff;
  --max: 1280px;
  --pad: clamp(20px, 4vw, 64px);
  --radius: 6px;
  --shadow: 0 24px 70px rgba(17, 18, 18, 0.10);
  --ease: cubic-bezier(.2,.7,.2,1);
  --font-sans: "Instrument Sans", Arial, Helvetica, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-sans); font-size: 16px; line-height: 1.6; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: var(--white); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 9999; padding: 10px 14px; background: var(--white); color: var(--ink); transform: translateY(-160%); border-radius: 4px; }
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - (var(--pad) * 2)), var(--max)); margin-inline: auto; }
.narrow { max-width: 760px; }
.narrow-wide { max-width: 980px; }
.section { position: relative; padding: clamp(84px, 11vw, 160px) 0; }
.section--tight { padding: clamp(54px, 7vw, 96px) 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--soft { background: var(--paper-2); }
.section--grid::before { content:""; position:absolute; inset:0; pointer-events:none; opacity:.55; background-image: linear-gradient(to right, rgba(17,18,18,.055) 1px, transparent 1px), linear-gradient(to bottom, rgba(17,18,18,.055) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent); }
.section--dark.section--grid::before { background-image: linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px); }

.kicker, .eyebrow-row, .meta-label { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; font-size: 11px; line-height: 1.4; }
.kicker { display: block; margin: 0 0 18px; color: var(--graphite); }
.section--dark .kicker { color: rgba(244,242,237,.65); }

h1,h2,h3,h4,p { margin-top: 0; }
h1,h2,h3,h4 { letter-spacing: -.045em; line-height: .98; font-weight: 520; }
h1 { font-size: clamp(46px, 7.2vw, 104px); margin-bottom: 28px; }
h2 { font-size: clamp(36px, 5.4vw, 72px); margin-bottom: 28px; }
h3 { font-size: clamp(28px, 3.3vw, 46px); margin-bottom: 16px; }
h4 { font-size: 22px; margin-bottom: 10px; }
p { color: var(--graphite); }
.section--dark p { color: rgba(244,242,237,.72); }
.lede { font-size: clamp(20px, 2.2vw, 31px); line-height: 1.35; letter-spacing: -.02em; max-width: 820px; }
.display-small { font-size: clamp(36px, 5.2vw, 68px); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 52px; padding: 13px 20px; border: 1px solid transparent; border-radius: var(--radius); transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease); cursor: pointer; font-weight: 600; }
.button span { transition: transform .3s var(--ease); }
.button:hover span { transform: translateX(4px); }
.button:hover { transform: translateY(-1px); }
.button--dark { background: var(--ink); color: var(--white); }
.button--dark:hover { background: var(--accent); }
.button--light { background: var(--paper); color: var(--ink); }
.button--light:hover { background: var(--white); }
.button--outline { border-color: currentColor; }
.button--outline:hover { background: rgba(255,255,255,.08); }
.button:disabled { opacity: .6; cursor: wait; transform: none; }
.text-link { display: inline-flex; gap: 12px; align-items: center; font-weight: 650; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translateX(4px); }

.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; height: 78px; display: flex; align-items: center; transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease); border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: rgba(244,242,237,.9); border-color: var(--line); backdrop-filter: blur(16px); }
.site-header.is-hidden { transform: translateY(-100%); }
.header-on-dark .site-header:not(.is-scrolled) { color: var(--paper); }
.site-header__inner { display:flex; align-items:center; justify-content:space-between; gap:32px; }
.logo { display:inline-flex; align-items:center; gap:0; font-size:22px; font-weight:700; letter-spacing:-.05em; }
.logo span { display:none; }
.logo-brandmark { width:clamp(172px, 17vw, 250px); height:auto; display:block; flex:0 0 auto; object-fit:contain; }
.logo-full { width:clamp(172px, 17vw, 250px); height:auto; display:block; }
.desktop-nav { display:flex; align-items:center; gap:28px; }
.desktop-nav a:not(.button) { font-size:14px; position:relative; }
.desktop-nav a:not(.button)::after { content:""; position:absolute; left:0; bottom:-7px; width:100%; height:1px; background:currentColor; transform:scaleX(0); transform-origin:right; transition:transform .25s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform:scaleX(1); transform-origin:left; }
.nav-toggle { display:none; width:44px; height:44px; border:0; background:transparent; padding:0; }
.nav-toggle span { display:block; width:24px; height:1px; margin:6px auto; background:currentColor; transition:transform .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { position:fixed; inset:78px 0 0; background:var(--paper); z-index:999; padding:48px var(--pad); overflow:auto; }
.mobile-nav__links { display:grid; gap:8px; }
.mobile-nav__links a { font-size:clamp(38px,10vw,70px); line-height:1.1; letter-spacing:-.05em; }
.mobile-nav .button { margin-top:40px; width:100%; }
.nav-open { overflow:hidden; }

main { overflow:hidden; }
.hero { min-height:auto; display:flex; align-items:center; padding:clamp(132px, 14vw, 190px) 0 clamp(64px, 8vw, 96px); position:relative; background:var(--paper); }
.hero::before { content:""; position:absolute; inset:0; background-image: linear-gradient(to right, rgba(17,18,18,.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(17,18,18,.05) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, black, transparent 72%); }
.hero__inner { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(340px,.85fr); align-items:center; gap:clamp(40px,7vw,100px); position:relative; }
.hero h1 { max-width: 900px; margin-bottom: 32px; }
.hero__copy { max-width:650px; }
.hero__actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:36px; }
.hero__visual { min-height:520px; position:relative; display:flex; align-items:flex-end; }
.fabrication-object { width:100%; aspect-ratio: 4 / 5; background:var(--ink); border-radius:10px; overflow:hidden; position:relative; box-shadow:var(--shadow); }
.fabrication-object::before, .fabrication-object::after { content:""; position:absolute; }
.fabrication-object::before { width:74%; aspect-ratio:1; right:-8%; top:12%; border-radius:50%; border:1px solid rgba(255,255,255,.3); box-shadow: inset 0 0 0 54px rgba(255,255,255,.03), inset 0 0 0 108px rgba(255,255,255,.02); }
.fabrication-object::after { width:50%; height:32%; left:11%; bottom:11%; background:var(--accent); clip-path:polygon(0 0,100% 20%,78% 100%,8% 82%); }
.fabrication-object__label { position:absolute; left:24px; top:24px; color:var(--paper); font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.08em; }
.fabrication-object__axis { position:absolute; inset:auto 26px 26px auto; color:rgba(255,255,255,.5); font-family:var(--font-mono); font-size:10px; writing-mode:vertical-rl; }

.capability-strip { border-block:1px solid var(--line); }
.capability-strip__inner { display:flex; align-items:center; justify-content:space-between; gap:20px; min-height:86px; font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.08em; font-size:11px; overflow:auto; scrollbar-width:none; }
.capability-strip__inner::-webkit-scrollbar { display:none; }
.capability-strip__inner span { white-space:nowrap; }
.capability-strip__inner i { width:4px; height:4px; background:var(--accent); border-radius:50%; flex:0 0 auto; }

.section-heading { display:grid; grid-template-columns: .8fr 1.2fr; gap:clamp(30px,8vw,120px); align-items:start; margin-bottom:clamp(52px,7vw,100px); }
.section-heading h2 { margin:0; max-width:900px; }
.section-heading p { max-width:560px; font-size:18px; margin-top:8px; }

.service-grid { display:grid; grid-template-columns: repeat(12,1fr); gap:12px; }
.service-card { min-height:380px; border:1px solid var(--line); background:rgba(255,255,255,.18); padding:28px; display:flex; flex-direction:column; justify-content:space-between; position:relative; overflow:hidden; transition:transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease); }
.service-card:nth-child(1), .service-card:nth-child(4) { grid-column:span 7; }
.service-card:nth-child(2), .service-card:nth-child(3) { grid-column:span 5; }
.service-card:nth-child(5), .service-card:nth-child(6) { grid-column:span 6; min-height:300px; }
.service-card:hover { transform:translateY(-4px); background:var(--ink); color:var(--paper); }
.service-card:hover p, .service-card:hover .kicker { color:rgba(244,242,237,.7); }
.service-card__index { font-family:var(--font-mono); font-size:10px; }
.service-card__arrow { position:absolute; top:24px; right:24px; font-size:26px; transition:transform .3s var(--ease); }
.service-card:hover .service-card__arrow { transform:translate(4px,-4px); }
.service-card p { max-width:500px; }

.projects-section { background:var(--ink); color:var(--paper); }
.projects-section .section-heading p { color:rgba(244,242,237,.65); }
.projects-grid { display:grid; gap:60px; }
.project-card { display:grid; grid-template-columns:minmax(0,1.4fr) minmax(300px,.6fr); gap:clamp(28px,5vw,76px); align-items:end; }
.project-card:nth-child(even) { grid-template-columns:minmax(300px,.6fr) minmax(0,1.4fr); }
.project-card:nth-child(even) .project-card__media { order:2; }
.project-card__media { overflow:hidden; aspect-ratio: 16 / 10; background:#202223; border-radius:10px; }
.project-card__media img { width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.project-card:hover .project-card__media img { transform:scale(1.025); }
.project-card__body { padding-bottom:12px; }
.project-card__body p { max-width:480px; }
.projects-section .project-card__body p { color:rgba(244,242,237,.65); }
.eyebrow-row { display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px; margin-bottom:18px; color:var(--graphite); }
.section--dark .eyebrow-row, .projects-section .eyebrow-row { color:rgba(244,242,237,.6); }

.project-placeholder-grid { display:grid; grid-template-columns: 1.25fr .75fr; gap:12px; }
.project-placeholder { min-height:330px; padding:28px; border:1px solid var(--line-dark); display:flex; flex-direction:column; justify-content:flex-end; position:relative; background:linear-gradient(145deg, rgba(255,255,255,.05), transparent); }
.project-placeholder--wide { grid-row:span 2; min-height:672px; }
.project-placeholder span { position:absolute; top:24px; left:24px; font-family:var(--font-mono); font-size:11px; color:rgba(244,242,237,.45); }
.project-placeholder strong { font-size:clamp(34px,5vw,72px); letter-spacing:-.05em; line-height:1; font-weight:520; }
.project-placeholder small { font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.08em; margin-top:14px; color:rgba(244,242,237,.45); }

.process-grid { display:grid; grid-template-columns:repeat(5,1fr); border-top:1px solid var(--line); }
.process-step { min-height:300px; padding:24px 20px 24px 0; border-right:1px solid var(--line); display:flex; flex-direction:column; justify-content:space-between; }
.process-step:not(:first-child) { padding-left:20px; }
.process-step:last-child { border-right:0; }
.process-step__num { font-family:var(--font-mono); font-size:11px; }
.process-step h3 { font-size:clamp(25px,2.8vw,38px); }
.process-step p { font-size:14px; }

.tech-showcase { display:grid; grid-template-columns:minmax(0,.7fr) minmax(0,1.3fr); gap:clamp(50px,9vw,140px); align-items:center; }
.tech-panel { position:relative; aspect-ratio:1.2/1; background:var(--ink); color:var(--paper); overflow:hidden; }
.tech-panel::before { content:""; position:absolute; inset:0; background-image:linear-gradient(to right, rgba(255,255,255,.08) 1px, transparent 1px),linear-gradient(to bottom, rgba(255,255,255,.08) 1px, transparent 1px); background-size:44px 44px; }
.tech-panel__shape { position:absolute; inset:20% 15%; border:1px solid rgba(255,255,255,.4); transform:rotate(-12deg); }
.tech-panel__shape::before { content:""; position:absolute; width:42%; aspect-ratio:1; border-radius:50%; border:1px solid var(--accent); top:22%; left:28%; }
.tech-panel__readout { position:absolute; inset:auto 24px 22px; display:flex; justify-content:space-between; font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.08em; font-size:10px; color:rgba(255,255,255,.55); }
.tech-copy ul { list-style:none; padding:0; margin:36px 0 0; border-top:1px solid var(--line); }
.tech-copy li { display:flex; justify-content:space-between; gap:20px; padding:16px 0; border-bottom:1px solid var(--line); }
.tech-copy li span:first-child { font-weight:650; }
.tech-copy li span:last-child { color:var(--graphite); text-align:right; }

.trust-band { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid var(--line); }
.trust-item { padding:32px; min-height:210px; border-right:1px solid var(--line); }
.trust-item:last-child { border-right:0; }
.trust-item strong { display:block; font-size:clamp(28px,4vw,52px); letter-spacing:-.05em; line-height:1.05; margin-bottom:18px; }

.cta-band { display:flex; align-items:flex-end; justify-content:space-between; gap:40px; }
.cta-band h2 { margin-bottom:0; max-width:820px; }

.page-hero { padding:clamp(132px, 14vw, 180px) 0 clamp(70px, 8vw, 104px); min-height:auto; display:flex; align-items:flex-start; position:relative; }
.page-hero .lede { max-width:760px; }
.page-hero__meta { margin-top:48px; display:flex; flex-wrap:wrap; gap:10px 30px; font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:var(--graphite); }

.editorial-split { display:grid; grid-template-columns:minmax(260px,.65fr) minmax(0,1.35fr); gap:clamp(50px,9vw,150px); }
.editorial-split__sticky { position:sticky; top:120px; align-self:start; }
.editorial-list { border-top:1px solid var(--line); }
.editorial-row { display:grid; grid-template-columns:50px 1fr; gap:20px; padding:28px 0; border-bottom:1px solid var(--line); }
.editorial-row span { font-family:var(--font-mono); font-size:10px; }
.editorial-row h3 { font-size:clamp(28px,4vw,48px); margin-bottom:12px; }

.values-grid { display:grid; grid-template-columns:repeat(2,1fr); border:1px solid var(--line); }
.value-card { min-height:280px; padding:32px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.value-card:nth-child(2n) { border-right:0; }
.value-card:nth-last-child(-n+2) { border-bottom:0; }
.value-card span { font-family:var(--font-mono); font-size:10px; }
.value-card h3 { margin-top:70px; }

.image-stage { aspect-ratio:16/8; background:var(--ink); position:relative; overflow:hidden; border-radius:10px; }
.image-stage::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 30% 45%, rgba(49,87,246,.5), transparent 28%), linear-gradient(120deg, transparent 25%, rgba(255,255,255,.07) 25.3%, transparent 25.6%), linear-gradient(90deg, rgba(255,255,255,.03), transparent); }
.image-stage::after { content:"LM / WORKSHOP"; position:absolute; bottom:24px; left:24px; font-family:var(--font-mono); color:rgba(255,255,255,.55); font-size:10px; letter-spacing:.08em; }

.service-intro { display:grid; grid-template-columns:minmax(0,1fr) minmax(340px,.55fr); gap:clamp(40px,8vw,120px); align-items:end; }
.service-intro h1 { max-width:980px; }
.service-facts { border-top:1px solid var(--line); }
.service-fact { display:flex; justify-content:space-between; gap:20px; border-bottom:1px solid var(--line); padding:14px 0; font-size:14px; }
.service-fact span:last-child { text-align:right; color:var(--graphite); }
.application-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.application-card { min-height:280px; padding:26px; border:1px solid var(--line); display:flex; flex-direction:column; justify-content:space-between; }
.application-card span { font-family:var(--font-mono); font-size:10px; }
.application-card h3 { font-size:34px; }

.faq { border-top:1px solid var(--line); }
details { border-bottom:1px solid var(--line); }
summary { list-style:none; cursor:pointer; padding:24px 0; display:grid; grid-template-columns:1fr auto; gap:24px; font-size:clamp(20px,2.4vw,30px); letter-spacing:-.03em; }
summary::-webkit-details-marker { display:none; }
summary::after { content:"+"; font-family:var(--font-mono); }
details[open] summary::after { content:"−"; }
details p { max-width:780px; padding:0 50px 28px 0; }

.portfolio-grid { display:grid; gap:80px; }
.empty-state { max-width:900px; padding:70px; border:1px solid var(--line); background:rgba(255,255,255,.16); }
.empty-state code { font-family:var(--font-mono); background:rgba(17,18,18,.07); padding:2px 6px; }
.empty-state .button { margin-top:20px; }

.project-hero { padding-top:140px; }
.project-hero__meta { display:flex; justify-content:space-between; gap:30px; font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.08em; font-size:11px; color:rgba(244,242,237,.55); }
.project-hero h1 { margin-top:60px; }
.project-hero__image { margin:70px 0 0; aspect-ratio:16/9; overflow:hidden; border-radius:10px; }
.project-hero__image img { width:100%; height:100%; object-fit:cover; }
.project-story { display:grid; grid-template-columns:.8fr 1.2fr; gap:clamp(40px,8vw,120px); }
.specs-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.specs-grid > div { border-top:1px solid var(--line); padding-top:18px; }
.specs-grid strong { display:block; font-size:20px; }
.specs-grid ul { list-style:none; padding:0; margin:0; }
.gallery-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.gallery-grid figure { margin:0; aspect-ratio:4/3; overflow:hidden; background:var(--paper-2); border-radius:10px; }
.gallery-grid img { width:100%; height:100%; object-fit:cover; }

.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.article-card { border-top:1px solid var(--line); padding-top:14px; }
.article-card__media { display:block; aspect-ratio:1.35/1; overflow:hidden; background:var(--paper-2); margin-bottom:22px; border-radius:10px; }
.article-card__media img { width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.article-card:hover .article-card__media img { transform:scale(1.025); }
.article-card h3 { font-size:clamp(28px,3vw,39px); }
.article-card p { font-size:15px; }
.article-hero { padding-top:140px; }
.article-hero h1 { font-size:clamp(44px,6.5vw,88px); margin-top:50px; }
.article-hero figure { margin:70px 0 0; aspect-ratio:1.8/1; overflow:hidden; background:#202223; border-radius:10px; }
.article-hero img { width:100%; height:100%; object-fit:cover; }
.article-layout { display:grid; grid-template-columns:220px minmax(0,760px); gap:clamp(50px,9vw,130px); justify-content:center; }
.article-layout aside { display:flex; flex-direction:column; align-items:flex-start; gap:4px; font-size:13px; }
.article-layout aside .kicker:not(:first-child) { margin-top:30px; }
.prose { font-size:18px; }
.prose h2 { font-size:clamp(34px,4.5vw,55px); margin-top:2em; margin-bottom:.5em; }
.prose h3 { font-size:30px; margin-top:1.7em; }
.prose p, .prose li { color:var(--graphite); }
.prose a { color:var(--accent); text-decoration:underline; }

.process-page-grid { display:grid; gap:0; border-top:1px solid var(--line); }
.process-page-step { display:grid; grid-template-columns:110px .9fr 1.1fr; gap:30px; padding:50px 0; border-bottom:1px solid var(--line); align-items:start; }
.process-page-step__num { font-family:var(--font-mono); font-size:11px; }
.process-page-step h2 { font-size:clamp(36px,5vw,64px); }
.process-page-step p { max-width:560px; font-size:18px; }

.contact-layout { display:grid; grid-template-columns:minmax(0,.65fr) minmax(0,1.35fr); gap:clamp(50px,9vw,140px); }
.contact-aside { position:sticky; top:120px; align-self:start; }
.contact-list { margin-top:40px; border-top:1px solid var(--line); }
.contact-row { display:flex; flex-direction:column; gap:3px; padding:18px 0; border-bottom:1px solid var(--line); }
.contact-row span:first-child { font-family:var(--font-mono); font-size:10px; text-transform:uppercase; letter-spacing:.08em; color:var(--graphite); }
.contact-form { display:grid; grid-template-columns:repeat(2,1fr); gap:22px 14px; }
.field { display:flex; flex-direction:column; gap:7px; }
.field--full { grid-column:1/-1; }
.field label { font-size:13px; font-weight:650; }
.field input, .field select, .field textarea { width:100%; border:1px solid var(--line); background:rgba(255,255,255,.22); color:var(--ink); border-radius:4px; min-height:52px; padding:12px 14px; transition:border-color .2s, background .2s; }
.field textarea { min-height:180px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color:var(--accent); background:rgba(255,255,255,.5); }
.field [aria-invalid="true"] { border-color:#a72828; }
.field__error { min-height:18px; color:#8a1e1e; font-size:12px; }
.hp-field { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
.form-actions { grid-column:1/-1; display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.form-note { font-size:12px; max-width:440px; margin:0; }
.form-status { grid-column:1/-1; padding:14px 16px; border-radius:4px; font-size:14px; }
.form-status--success { background:#e1eee5; color:#153c24; }
.form-status--error { background:#f3e1df; color:#641e18; }

.legal-page { padding-top:140px; }
.legal-page .prose { max-width:820px; }

.site-footer { background:var(--ink); color:var(--paper); padding:70px 0 28px; }
.footer-top { display:grid; grid-template-columns:1.2fr repeat(3,.6fr); gap:50px; padding-bottom:70px; }
.footer-brand p { color:rgba(244,242,237,.6); max-width:380px; margin-top:26px; }
.footer-col h3 { font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.08em; font-size:10px; margin:0 0 22px; color:rgba(244,242,237,.45); }
.footer-col a { display:block; margin:8px 0; color:rgba(244,242,237,.8); }
.footer-col a:hover { color:var(--white); }
.footer-bottom { border-top:1px solid var(--line-dark); padding-top:22px; display:flex; justify-content:space-between; gap:20px; color:rgba(244,242,237,.45); font-size:12px; }

[data-reveal] { opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity:1; transform:none; }

@media (max-width: 1100px) {
  .hero__inner { grid-template-columns:1fr .7fr; }
  .process-grid { grid-template-columns:repeat(3,1fr); }
  .process-step:nth-child(3) { border-right:0; }
  .process-step:nth-child(n+4) { border-top:1px solid var(--line); }
  .blog-grid { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1.2fr repeat(2,.7fr); }
  .footer-col:last-child { grid-column:2; }
}

@media (max-width: 959px) {
  .desktop-nav { display:none; }
  .nav-toggle { display:block; }
  .hero { min-height:auto; padding-top:122px; padding-bottom:64px; }
  .hero__inner, .section-heading, .editorial-split, .service-intro, .tech-showcase, .contact-layout, .project-story { grid-template-columns:1fr; }
  .page-hero { padding-top:122px; padding-bottom:64px; }
  .project-hero, .article-hero, .legal-page { padding-top:122px; }
  .hero__visual { min-height:0; }
  .fabrication-object { max-width:620px; aspect-ratio:1.4/1; margin-left:auto; }
  .section-heading { gap:24px; }
  .section-heading p { max-width:700px; }
  .editorial-split__sticky, .contact-aside { position:static; }
  .service-card, .service-card:nth-child(n) { grid-column:span 6; }
  .project-card, .project-card:nth-child(even) { grid-template-columns:1fr; }
  .project-card:nth-child(even) .project-card__media { order:0; }
  .project-placeholder-grid { grid-template-columns:1fr 1fr; }
  .project-placeholder--wide { grid-column:1/-1; grid-row:auto; min-height:480px; }
  .trust-band { grid-template-columns:1fr; }
  .trust-item { border-right:0; border-bottom:1px solid var(--line); min-height:auto; }
  .trust-item:last-child { border-bottom:0; }
  .application-grid { grid-template-columns:repeat(2,1fr); }
  .specs-grid { grid-template-columns:repeat(2,1fr); }
  .process-page-step { grid-template-columns:70px 1fr; }
  .process-page-step p { grid-column:2; }
  .article-layout { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:repeat(2,1fr); }
  .footer-brand { grid-column:1/-1; }
  .footer-col:last-child { grid-column:auto; }
}

@media (max-width: 680px) {
  :root { --pad: 20px; }
  .site-header { height:70px; }
  .mobile-nav { top:70px; }
  .logo-brandmark, .logo-full { width:clamp(160px, 42vw, 220px); }
  h1 { font-size:clamp(46px,13vw,68px); }
  h2 { font-size:clamp(34px,10vw,54px); }
  .hero { padding-bottom:34px; }
  .hero__actions { flex-direction:column; align-items:stretch; }
  .hero__actions .button { width:100%; }
  .capability-strip__inner { gap:18px; }
  .fabrication-object { aspect-ratio:1/1.1; }
  .service-grid { grid-template-columns:1fr; }
  .service-card, .service-card:nth-child(n) { grid-column:1; min-height:300px; }
  .project-placeholder-grid { grid-template-columns:1fr; }
  .project-placeholder--wide { grid-column:auto; min-height:360px; }
  .process-grid { grid-template-columns:1fr; border-top:0; }
  .process-step, .process-step:not(:first-child) { border:0; border-top:1px solid var(--line); padding:22px 0; min-height:200px; }
  .process-step:nth-child(n+4) { border-top:1px solid var(--line); }
  .tech-panel { aspect-ratio:1/1; }
  .cta-band { align-items:flex-start; flex-direction:column; }
  .cta-band .button { width:100%; }
  .values-grid, .application-grid, .specs-grid, .gallery-grid, .blog-grid { grid-template-columns:1fr; }
  .value-card { border-right:0; border-bottom:1px solid var(--line) !important; }
  .value-card:last-child { border-bottom:0 !important; }
  .empty-state { padding:36px 24px; }
  .article-card h3 { font-size:32px; }
  .process-page-step { grid-template-columns:44px 1fr; gap:18px; }
  .contact-form { grid-template-columns:1fr; }
  .field--full, .form-actions, .form-status { grid-column:1; }
  .footer-top { grid-template-columns:1fr; gap:32px; }
  .footer-brand, .footer-col:last-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
}

@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; }
}

/* Hero con proyecto real */
.fabrication-object--photo { background:#171919; }
.fabrication-object--photo::before { inset:0; width:auto; aspect-ratio:auto; right:0; top:0; border:0; border-radius:0; box-shadow:none; background:linear-gradient(180deg, rgba(0,0,0,.32), transparent 30%, transparent 68%, rgba(0,0,0,.34)); z-index:1; }
.fabrication-object--photo::after { display:none; }
.fabrication-object--photo img { width:100%; height:100%; display:block; object-fit:cover; object-position:center 48%; transition:transform 1.2s var(--ease); }
.fabrication-object--photo:hover img { transform:scale(1.018); }
.fabrication-object--photo .fabrication-object__label,
.fabrication-object--photo .fabrication-object__axis { z-index:2; text-shadow:0 1px 16px rgba(0,0,0,.35); }
