@charset "UTF-8";

:root {
  --ink: #1d1d1f;
  --ink-soft: #6e6e73;
  --paper: #fff;
  --paper-bright: #fff;
  --line: rgba(29, 29, 31, 0.14);
  --orange: #c75b28;
  --white: #fff;
  --shell: min(92vw, 1440px);
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.page-noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
.section-shell { width: var(--shell); margin-inline: auto; }
.section-kicker, .eyebrow {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 92px;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  transition: color .3s, background .3s, height .3s;
}
.site-header.is-scrolled {
  position: fixed;
  height: 72px;
  color: var(--ink);
  background: rgba(244, 242, 237, .94);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.dark-header { color: var(--ink); border-color: var(--line); background: rgba(244, 242, 237, .9); }
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark { position: relative; display: grid; width: 34px; height: 34px; grid-template-columns: repeat(2, 1fr); gap: 3px; transform: rotate(45deg); }
.brand-mark i { display: block; background: currentColor; }
.brand-mark i:nth-child(1) { grid-row: 1 / 3; }
.brand-mark i:nth-child(2) { opacity: .5; }
.brand-mark i:nth-child(3) { background: var(--orange); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: var(--font-display); font-size: 20px; font-weight: 650; letter-spacing: .12em; }
.brand-copy small { margin-top: 6px; font-size: 7px; letter-spacing: .26em; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 42px); }
.main-nav > a { position: relative; font-size: 12px; letter-spacing: .05em; }
.main-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; content: ""; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s ease; }
.main-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; min-width: 150px; height: 42px; align-items: center; justify-content: space-between; padding: 0 16px; color: var(--ink); background: var(--white); }
.is-scrolled .nav-cta, .dark-header .nav-cta { color: var(--white); background: var(--ink); }
.nav-cta span { color: var(--orange); font-size: 17px; }
.menu-button { display: none; border: 0; background: none; }

.hero { position: relative; height: 100svh; min-height: 720px; color: var(--white); background: #171917; overflow: hidden; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; visibility: hidden; transition: opacity .9s ease, visibility .9s; }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide img { height: 100%; object-fit: cover; transform: scale(1.035); transition: transform 6s ease-out; }
.hero-slide.is-active img { transform: scale(1); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 12, 11, .74) 0%, rgba(10, 12, 11, .24) 52%, rgba(10, 12, 11, .03) 78%); }
.shade-right { background: linear-gradient(270deg, rgba(10, 12, 11, .84) 0%, rgba(10, 12, 11, .36) 49%, rgba(10, 12, 11, .02) 75%); }
.shade-light { background: linear-gradient(90deg, rgba(246, 241, 233, .78) 0%, rgba(246, 241, 233, .28) 54%, rgba(246, 241, 233, .02) 76%); }
.shade-light-right { background: linear-gradient(270deg, rgba(246, 241, 233, .84) 0%, rgba(246, 241, 233, .32) 50%, rgba(246, 241, 233, .02) 76%); }
.hero-content { position: absolute; top: 52%; left: 8vw; width: min(620px, 45vw); transform: translateY(-46%); }
.hero-content-right { right: 8vw; left: auto; }
.hero-content h1, .hero-content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(50px, 5.5vw, 92px);
  font-weight: 350;
  letter-spacing: -.045em;
  line-height: 1.08;
}
.hero-description { width: min(480px, 100%); margin: 34px 0 32px; color: rgba(255,255,255,.77); font-size: 15px; letter-spacing: .025em; line-height: 1.9; }
.dark-copy { color: var(--ink); }
.dark-copy .hero-description { color: rgba(23,25,23,.72); }
.text-link { display: inline-flex; align-items: center; gap: 32px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 600; letter-spacing: .08em; }
.text-link span { color: var(--orange); font-size: 17px; transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.text-link.light { color: var(--white); }
.hero-controls { position: absolute; z-index: 3; right: 4vw; bottom: 35px; display: flex; height: 48px; align-items: center; gap: 22px; padding: 0 18px; background: rgba(11, 13, 12, .6); backdrop-filter: blur(12px); }
.hero-arrow { padding: 0; border: 0; color: var(--white); background: none; cursor: pointer; font-size: 18px; }
.hero-dots { display: flex; gap: 8px; }
.hero-dots button { width: 28px; height: 2px; padding: 0; border: 0; background: rgba(255,255,255,.32); cursor: pointer; transition: background .3s, width .3s; }
.hero-dots button.is-active { width: 52px; background: var(--white); }
.hero-index { font-size: 10px; letter-spacing: .12em; }
.hero-index b { font-weight: 500; }
.scroll-cue { position: absolute; bottom: 32px; left: 4vw; display: flex; align-items: center; gap: 14px; font-size: 8px; letter-spacing: .25em; writing-mode: vertical-rl; }
.scroll-cue span { width: 1px; height: 42px; background: rgba(255,255,255,.56); }
.home-catalog .scroll-cue { color: var(--ink); }
.home-catalog .scroll-cue span { background: rgba(23,25,23,.48); }

.intro { display: grid; padding: 144px 0 112px; grid-template-columns: 1.2fr .8fr; gap: 12vw; }
.intro h2, .section-heading h2, .process-title h2, .quality-copy h2, .contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 68px);
  font-weight: 380;
  letter-spacing: -.04em;
  line-height: 1.2;
}
.intro-copy { align-self: end; padding-bottom: 4px; }
.intro-copy > p { margin: 0 0 34px; color: var(--ink-soft); font-size: 15px; line-height: 2; }
.metrics { display: grid; padding: 34px 0 62px; border-top: 1px solid var(--line); grid-template-columns: repeat(5, 1fr); }
.metrics > div { display: grid; padding: 0 28px; border-right: 1px solid var(--line); grid-template-columns: 36px 1fr; }
.metrics > div:first-child { padding-left: 0; }
.metrics > div:last-child { border-right: 0; }
.metrics strong { color: var(--orange); font-size: 11px; font-weight: 600; }
.metrics span { font-size: 15px; font-weight: 600; }
.metrics small { margin-top: 12px; color: #73766f; font-size: 11px; grid-column: 2; }

.capabilities { padding: 90px 0 160px; background: var(--paper-bright); }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 68px; }
.section-heading p:last-child { width: min(380px, 34vw); margin: 0 0 7px; color: var(--ink-soft); font-size: 14px; line-height: 1.8; }
.feature { display: grid; min-height: 720px; grid-template-columns: 63% 37%; background: var(--ink); color: var(--white); overflow: hidden; }
.feature-image { overflow: hidden; }
.feature-image img { height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.feature:hover .feature-image img { transform: scale(1.025); }
.feature-copy { display: flex; padding: clamp(44px, 6vw, 100px); flex-direction: column; justify-content: flex-end; background: radial-gradient(circle at 90% 5%, #343933, var(--ink) 56%); }
.feature-number, .card-index { align-self: flex-start; margin-bottom: auto; color: var(--orange); font-size: 11px; letter-spacing: .12em; }
.feature-copy p, .feature-card p, .product-copy > p:first-child { margin: 0 0 12px; font-size: 10px; letter-spacing: .19em; }
.feature-copy h3 { margin: 0 0 16px; font-family: var(--font-display); font-size: clamp(40px, 4vw, 68px); font-weight: 380; letter-spacing: -.04em; }
.feature-desc { color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.7; }
.feature-copy i { margin-top: 64px; font-size: 11px; font-style: normal; letter-spacing: .12em; }
.feature-grid { display: grid; margin-top: 20px; grid-auto-rows: minmax(510px, 37vw); grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card { position: relative; display: flex; padding: 32px; flex-direction: column; color: var(--white); overflow: hidden; }
.feature-card-wide { grid-column: span 2; }
.feature-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.feature-card:hover img { transform: scale(1.035); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,9,8,.12), rgba(8,9,8,.78)); }
.feature-card > *:not(img, .card-overlay) { position: relative; z-index: 1; }
.feature-card .card-index { margin-bottom: auto; color: var(--white); }
.feature-card h3 { margin: 0 0 9px; font-family: var(--font-display); font-size: clamp(31px, 3vw, 54px); font-weight: 380; letter-spacing: -.035em; }
.feature-card span { color: rgba(255,255,255,.68); font-size: 11px; letter-spacing: .04em; }

.process { padding: 148px 0; background: #dfe0da; }
.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 12vw; }
.process-title { position: sticky; top: 130px; align-self: start; }
.process-title > p:last-child { width: min(420px, 100%); margin: 38px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.9; }
.process-item { border-top: 1px solid rgba(23,25,23,.25); }
.process-item:last-child { border-bottom: 1px solid rgba(23,25,23,.25); }
.process-item button { display: grid; width: 100%; padding: 30px 4px; border: 0; align-items: center; text-align: left; background: transparent; cursor: pointer; grid-template-columns: 56px 1fr 30px; }
.process-item button span { color: var(--orange); font-size: 10px; }
.process-item button b { font-family: var(--font-display); font-size: clamp(22px, 2vw, 31px); font-weight: 420; }
.process-item button i { font-size: 24px; font-style: normal; font-weight: 300; transition: transform .3s; }
.process-item.is-open button i { transform: rotate(45deg); }
.process-detail { display: grid; overflow: hidden; grid-template-rows: 0fr; transition: grid-template-rows .4s ease; }
.process-detail p { min-height: 0; margin: 0; padding: 0 48px 0 60px; color: var(--ink-soft); font-size: 13px; line-height: 1.9; opacity: 0; transition: opacity .35s, padding .35s; }
.process-item.is-open .process-detail { grid-template-rows: 1fr; }
.process-item.is-open .process-detail p { padding-bottom: 34px; opacity: 1; }

.quality { display: grid; padding: 160px 0; align-items: center; grid-template-columns: 1.12fr .88fr; gap: 9vw; }
.quality-visual { position: relative; height: min(730px, 61vw); overflow: hidden; }
.quality-visual img { height: 100%; object-fit: cover; object-position: 62% center; }
.quality-visual span { position: absolute; right: 0; bottom: 0; padding: 12px 18px; color: var(--white); background: var(--orange); font-size: 9px; letter-spacing: .16em; }
.quality-copy > p:nth-of-type(2) { margin: 34px 0 48px; color: var(--ink-soft); font-size: 14px; line-height: 1.95; }
.quality-copy ul { margin: 0; padding: 0; list-style: none; }
.quality-copy li { display: grid; padding: 18px 0; border-top: 1px solid var(--line); align-items: center; font-size: 13px; grid-template-columns: 48px 1fr; }
.quality-copy li:last-child { border-bottom: 1px solid var(--line); }
.quality-copy li span { color: var(--orange); font-size: 9px; }

.contact { position: relative; padding: 150px 0 68px; color: var(--white); background: #131513; overflow: hidden; }
.contact-glow { position: absolute; top: -20%; right: -6%; width: 48vw; height: 48vw; border-radius: 50%; background: radial-gradient(circle, rgba(215,101,42,.24), rgba(215,101,42,0) 68%); }
.contact-inner { position: relative; z-index: 1; }
.contact h2 { max-width: 960px; font-size: clamp(48px, 6.4vw, 104px); }
.contact-button { display: flex; width: 100%; margin-top: 80px; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.28); align-items: center; justify-content: space-between; font-size: 17px; }
.contact-button span { color: var(--orange); font-size: 30px; transition: transform .3s; }
.contact-button:hover span { transform: rotate(45deg); }
.contact-meta { display: grid; margin-top: 70px; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.contact-meta div { display: flex; flex-direction: column; gap: 10px; }
.contact-meta small { color: rgba(255,255,255,.43); font-size: 8px; letter-spacing: .2em; }
.contact-meta span { font-size: 12px; }
.site-footer { color: rgba(255,255,255,.66); background: #131513; }
.footer-inner { display: grid; padding: 38px 0; border-top: 1px solid rgba(255,255,255,.14); align-items: center; grid-template-columns: 1fr 1fr auto; }
.brand-footer { color: var(--white); }
.footer-inner p, .footer-inner > span { font-size: 9px; letter-spacing: .1em; }

.products-page { background: var(--paper-bright); }
.products-hero { position: relative; height: 78vh; min-height: 680px; padding-top: 92px; overflow: hidden; }
.products-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.products-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(244,242,237,.94) 0%, rgba(244,242,237,.58) 43%, rgba(244,242,237,.05) 76%); }
.products-hero-copy { position: relative; display: flex; height: 100%; flex-direction: column; justify-content: center; }
.products-hero-copy h1 { width: min(780px, 63vw); margin: 0; font-family: var(--font-display); font-size: clamp(48px, 5.3vw, 86px); font-weight: 360; letter-spacing: -.045em; line-height: 1.12; }
.products-hero-copy > p:last-child { width: min(480px, 48vw); margin: 36px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.9; }
.products-list { padding: 85px 0 150px; }
.products-nav { position: sticky; z-index: 9; top: 72px; display: flex; margin-bottom: 88px; padding: 20px 0; align-items: center; gap: 28px; background: rgba(251,250,247,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.products-nav span { margin-right: auto; color: #777a73; font-size: 9px; letter-spacing: .18em; }
.products-nav a { font-size: 11px; }
.products-nav a:hover { color: var(--orange); }
.product-row { scroll-margin-top: 150px; display: grid; padding: 54px 0; align-items: center; border-bottom: 1px solid var(--line); grid-template-columns: 1.08fr .92fr; gap: 9vw; }
.product-row-reverse .product-image { order: 2; }
.product-image { position: relative; height: min(640px, 46vw); overflow: hidden; background: #e7e3da; }
.product-image img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.product-row:hover .product-image img { transform: scale(1.025); }
.product-image span { position: absolute; top: 18px; left: 18px; display: grid; width: 42px; height: 42px; color: var(--white); background: rgba(17,19,17,.76); place-items: center; font-size: 10px; }
.product-copy > p:first-child { color: var(--orange); }
.product-copy h2 { margin: 0 0 30px; font-family: var(--font-display); font-size: clamp(40px, 4vw, 67px); font-weight: 380; letter-spacing: -.04em; }
.product-copy > p:nth-child(3) { margin: 0 0 45px; color: var(--ink-soft); font-size: 14px; line-height: 1.95; }
.product-copy dl { margin: 0; }
.product-copy dl div { display: grid; padding: 17px 0; border-top: 1px solid var(--line); grid-template-columns: 104px 1fr; }
.product-copy dl div:last-child { border-bottom: 1px solid var(--line); }
.product-copy dt { color: #787b75; font-size: 10px; }
.product-copy dd { margin: 0; font-size: 12px; line-height: 1.6; }
.products-contact { padding-top: 120px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --shell: 90vw; }
  .site-header { height: 74px; padding: 0 5vw; }
  .menu-button { z-index: 22; display: flex; width: 38px; height: 38px; padding: 8px; flex-direction: column; justify-content: center; gap: 7px; cursor: pointer; }
  .menu-button span:not(.sr-only) { display: block; width: 100%; height: 1px; background: currentColor; transition: transform .3s; }
  .menu-open .menu-button span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-button span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: fixed; z-index: 21; inset: 0; display: flex; padding: 120px 8vw 60px; flex-direction: column; align-items: flex-start; gap: 28px; color: var(--white); background: #171917; opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .3s, visibility .3s, transform .3s; }
  .menu-open .main-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .menu-open .site-header { color: var(--white); }
  .main-nav > a { font-size: 26px; }
  .main-nav .nav-cta { width: 100%; margin-top: auto; color: var(--ink); font-size: 14px; background: var(--white); }
  .hero-content { left: 8vw; width: 76vw; }
  .hero-content-right { right: auto; left: 8vw; }
  .hero-shade, .shade-right { background: linear-gradient(90deg, rgba(10,12,11,.72), rgba(10,12,11,.14)); }
  .intro { grid-template-columns: 1fr; gap: 54px; }
  .metrics { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .metrics > div:nth-child(2),
  .metrics > div:nth-child(4) { border-right: 0; }
  .feature { min-height: 640px; grid-template-columns: 1fr; }
  .feature-image { min-height: 380px; }
  .feature-copy { min-height: 300px; padding: 38px 5vw; }
  .feature-copy .feature-number { margin-bottom: 55px; }
  .feature-copy i { margin-top: 36px; }
  .feature-grid { grid-auto-rows: 58vw; }
  .process-layout { grid-template-columns: 1fr; gap: 65px; }
  .process-title { position: static; }
  .quality { gap: 6vw; }
}

@media (max-width: 680px) {
  .brand-copy strong { font-size: 17px; }
  .hero { min-height: 690px; }
  .hero-slide img { object-position: 58% center; }
  .hero-slide:nth-child(2) img { object-position: 36% center; }
  .hero-slide:nth-child(3) img { object-position: 65% center; }
  .home-catalog .hero-slide img { object-fit: contain; object-position: center 58%; background: #e9e4da; }
  .home-catalog .hero-slide .hero-shade { background: linear-gradient(180deg, rgba(246,241,233,.96) 0%, rgba(246,241,233,.72) 58%, rgba(246,241,233,.34) 100%); }
  .home-catalog .hero-content { top: 43%; }
  .hero-content { top: 48%; left: 7vw; width: 86vw; }
  .hero-content h1, .hero-content h2 { font-size: clamp(43px, 12vw, 60px); }
  .hero-description { font-size: 13px; line-height: 1.8; }
  .hero-controls { right: 5vw; left: 5vw; bottom: 25px; justify-content: space-between; }
  .hero-dots button { width: 18px; }
  .hero-dots button.is-active { width: 34px; }
  .scroll-cue { display: none; }
  .intro { padding: 100px 0 80px; }
  .intro h2, .section-heading h2, .process-title h2, .quality-copy h2 { font-size: 40px; }
  .metrics { padding-bottom: 45px; grid-template-columns: 1fr; row-gap: 0; }
  .metrics > div { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 28px; }
  .section-heading p:last-child { width: 100%; }
  .capabilities { padding: 80px 0 100px; }
  .feature { min-height: auto; }
  .feature-image { min-height: 450px; }
  .feature-copy { min-height: 320px; }
  .feature-grid { width: 100%; margin-top: 12px; grid-auto-rows: 125vw; grid-template-columns: 1fr; gap: 12px; }
  .feature-card, .feature-card-wide { grid-column: span 1; }
  .feature-card { padding: 25px 5vw; }
  .process { padding: 100px 0; }
  .process-item button { grid-template-columns: 42px 1fr 24px; }
  .process-detail p { padding-right: 24px; padding-left: 42px; }
  .quality { padding: 100px 0; grid-template-columns: 1fr; gap: 70px; }
  .quality-visual { height: 112vw; }
  .contact { padding-top: 100px; }
  .contact h2 { font-size: 44px; }
  .contact-button { margin-top: 55px; }
  .contact-meta { grid-template-columns: 1fr; }
  .footer-inner { gap: 30px; grid-template-columns: 1fr; }
  .footer-inner p { margin: 0; }
  .products-hero { height: 78svh; min-height: 650px; padding-top: 74px; }
  .products-hero-shade { background: linear-gradient(90deg, rgba(244,242,237,.92), rgba(244,242,237,.38)); }
  .products-hero-copy h1, .products-hero-copy > p:last-child { width: 100%; }
  .products-nav { top: 71px; margin-right: -5vw; margin-bottom: 50px; padding-right: 5vw; overflow-x: auto; }
  .products-nav span { display: none; }
  .products-nav a { flex: 0 0 auto; }
  .product-row { padding: 35px 0 75px; grid-template-columns: 1fr; gap: 45px; }
  .product-row-reverse .product-image { order: 0; }
  .product-image { height: 105vw; }
}

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

/* Product collection */
.catalog-page { background: #f3f0e9; }
.catalog-hero { min-height: 820px; padding-top: 92px; border-bottom: 1px solid var(--line); }
.catalog-hero-layout { display: grid; min-height: 728px; align-items: center; grid-template-columns: .76fr 1.24fr; gap: clamp(56px, 8vw, 140px); }
.catalog-hero-copy { padding: 72px 0; }
.catalog-hero-copy h1 { max-width: 660px; margin: 0; font-family: var(--font-display); font-size: clamp(56px, 5.5vw, 92px); font-weight: 500; letter-spacing: -.055em; line-height: 1.12; }
.catalog-hero-copy > p:nth-of-type(2) { max-width: 470px; margin: 38px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 2; }
.catalog-hero-metrics { display: grid; max-width: 460px; margin-top: 70px; padding-top: 24px; border-top: 1px solid var(--line); grid-template-columns: repeat(2, 1fr); }
.catalog-hero-metrics div { display: flex; align-items: baseline; gap: 15px; }
.catalog-hero-metrics strong { font-family: var(--font-display); font-size: 40px; font-weight: 500; }
.catalog-hero-metrics span { color: #777970; font-size: 10px; letter-spacing: .12em; }
.catalog-hero-visual { position: relative; margin: 0; padding: 4.5vw; background: #ebe6dc; }
.catalog-hero-visual::before { position: absolute; top: 22px; right: 22px; width: 7px; height: 7px; content: ""; border-radius: 50%; background: var(--orange); }
.catalog-hero-visual img { aspect-ratio: 4 / 3; object-fit: cover; box-shadow: 0 32px 80px rgba(23,25,23,.12); }
.catalog-hero-visual figcaption { display: flex; margin-top: 22px; justify-content: space-between; color: #666961; font-size: 9px; letter-spacing: .16em; }

.catalog-nav-wrap { position: sticky; z-index: 11; top: 72px; background: rgba(243,240,233,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.catalog-nav { display: flex; min-height: 72px; align-items: center; gap: clamp(24px, 4vw, 70px); }
.catalog-nav > span { margin-right: auto; color: #73756e; font-size: 9px; letter-spacing: .18em; }
.catalog-nav a { position: relative; padding: 25px 0 22px; font-size: 12px; }
.catalog-nav a::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; content: ""; background: var(--orange); transform: scaleX(0); transition: transform .3s ease; }
.catalog-nav a:hover::after { transform: scaleX(1); }
.catalog-nav sup { margin-left: 3px; color: var(--orange); font-size: 7px; }

.catalog-section { scroll-margin-top: 144px; padding: 142px 0 36px; }
.catalog-heading { display: grid; margin-bottom: 70px; padding-bottom: 42px; border-bottom: 1px solid var(--line); align-items: end; grid-template-columns: .7fr 1.1fr 1fr; gap: 5vw; }
.catalog-heading div span { color: var(--orange); font-size: 10px; letter-spacing: .16em; }
.catalog-heading div p { margin: 14px 0 0; font-size: 9px; letter-spacing: .2em; }
.catalog-heading h2 { margin: 0; font-family: var(--font-display); font-size: clamp(48px, 5vw, 78px); font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.catalog-heading > p { max-width: 390px; margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.9; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 20px; row-gap: 64px; }
.product-card { min-width: 0; padding: 0; border: 0; text-align: left; background: transparent; cursor: zoom-in; }
.product-card-image { position: relative; display: block; aspect-ratio: 4 / 3; background: #e9e4da; overflow: hidden; }
.product-card-image::after { position: absolute; inset: 0; content: ""; border: 1px solid rgba(23,25,23,.06); pointer-events: none; }
.product-card-image img { height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.025); filter: contrast(1.02); }
.product-card-meta { display: grid; padding: 18px 2px 0; align-items: baseline; grid-template-columns: auto 1fr auto; gap: 17px; }
.product-card-meta b { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -.02em; }
.product-card-meta small { color: #777a72; font-size: 9px; letter-spacing: .06em; }
.product-card-meta i { color: var(--orange); font-size: 16px; font-style: normal; transition: transform .25s ease; }
.product-card:hover .product-card-meta i { transform: rotate(45deg); }

.product-dialog { width: min(92vw, 1320px); max-width: none; padding: 0; border: 0; color: var(--ink); background: transparent; overflow: visible; }
.product-dialog::backdrop { background: rgba(13,15,13,.78); backdrop-filter: blur(12px); }
.product-dialog[open] { animation: catalog-dialog-in .28s ease both; }
.product-dialog-panel { position: relative; display: grid; min-height: min(78vh, 860px); background: var(--paper-bright); grid-template-columns: 1.45fr .55fr; }
.product-dialog-panel figure { display: grid; margin: 0; padding: clamp(30px, 5vw, 74px); background: #ede8de; place-items: center; }
.product-dialog-panel figure img { max-height: 72vh; object-fit: contain; }
.product-dialog-panel > div { display: flex; padding: clamp(38px, 5vw, 74px); flex-direction: column; justify-content: flex-end; }
.product-dialog-panel > div p { margin: 0 0 18px; color: var(--orange); font-size: 9px; letter-spacing: .2em; }
.product-dialog-panel > div h2 { margin: 0 0 26px; font-family: var(--font-display); font-size: clamp(38px, 4vw, 64px); font-weight: 500; letter-spacing: -.04em; }
.product-dialog-panel > div span { max-width: 260px; color: var(--ink-soft); font-size: 12px; line-height: 1.9; }
.product-dialog-close { position: absolute; z-index: 2; top: 20px; right: 20px; height: 38px; padding: 0 16px; border: 1px solid var(--line); background: rgba(251,250,247,.88); cursor: pointer; font-size: 10px; letter-spacing: .12em; }
@keyframes catalog-dialog-in { from { opacity: 0; transform: translateY(18px) scale(.985); } to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .catalog-hero { min-height: 700px; }
  .catalog-hero-layout { min-height: 608px; grid-template-columns: .86fr 1.14fr; gap: 5vw; }
  .catalog-hero-copy h1 { font-size: 56px; }
  .catalog-hero-visual { padding: 4vw; }
  .catalog-heading { grid-template-columns: .6fr 1.1fr; }
  .catalog-heading > p { grid-column: 2; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-dialog-panel { grid-template-columns: 1.2fr .8fr; }
}

@media (max-width: 680px) {
  .catalog-hero { min-height: auto; padding: 112px 0 70px; }
  .catalog-hero-layout { min-height: auto; grid-template-columns: 1fr; gap: 52px; }
  .catalog-hero-copy { padding: 0; }
  .catalog-hero-copy h1 { font-size: 48px; }
  .catalog-hero-copy > p:nth-of-type(2) { margin-top: 28px; }
  .catalog-hero-metrics { margin-top: 45px; }
  .catalog-hero-visual { padding: 7vw; }
  .catalog-nav-wrap { top: 71px; }
  .catalog-nav { width: 100%; min-height: 62px; padding: 0 5vw; gap: 28px; overflow-x: auto; }
  .catalog-nav > span { display: none; }
  .catalog-nav a { flex: 0 0 auto; padding: 21px 0 18px; }
  .catalog-section { scroll-margin-top: 132px; padding-top: 96px; }
  .catalog-heading { margin-bottom: 42px; padding-bottom: 30px; grid-template-columns: 1fr; gap: 24px; }
  .catalog-heading > p { grid-column: 1; }
  .catalog-heading h2 { font-size: 48px; }
  .catalog-grid { grid-template-columns: 1fr; row-gap: 46px; }
  .product-card-meta { padding-top: 15px; }
  .product-dialog { width: 100vw; height: 100svh; margin: 0; }
  .product-dialog-panel { min-height: 100svh; grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .product-dialog-panel figure { min-height: 0; padding: 72px 5vw 20px; }
  .product-dialog-panel figure img { max-height: 60svh; }
  .product-dialog-panel > div { padding: 28px 7vw 42px; }
  .product-dialog-panel > div h2 { margin-bottom: 12px; font-size: 36px; }
}

/* White minimal interface */
.page-noise { display: none; }
body, .products-page, .catalog-page { background: #fff; }
.site-header,
.site-header.is-scrolled,
.dark-header {
  position: fixed;
  height: 80px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border-color: var(--line);
  backdrop-filter: saturate(180%) blur(20px);
}
.brand-copy strong { font-weight: 500; letter-spacing: .08em; }
.main-nav > a { font-weight: 400; }
.nav-cta,
.is-scrolled .nav-cta,
.dark-header .nav-cta { color: #fff; background: var(--ink); }
.section-kicker,
.eyebrow { font-weight: 500; }
.intro h2,
.section-heading h2,
.process-title h2,
.quality-copy h2,
.contact h2,
.feature-copy h3,
.feature-card h3,
.catalog-hero-copy h1,
.catalog-heading h2,
.product-dialog-panel > div h2 { font-weight: 300; letter-spacing: -.045em; }

.home-catalog .hero {
  height: 100svh;
  min-height: 760px;
  color: var(--ink);
  background: #f5f5f7;
}
.home-catalog .hero-split {
  position: relative;
  height: 100%;
}
.home-catalog .hero-content {
  position: absolute;
  z-index: 2;
  top: calc(50% + 40px);
  left: 6vw;
  display: flex;
  width: min(520px, 40vw);
  padding: clamp(36px, 3.4vw, 54px);
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,.14);
  backdrop-filter: saturate(140%) blur(18px);
  transform: translateY(-50%);
}
.home-catalog .hero-slide:nth-child(2) .hero-content { right: 6vw; left: auto; }
.home-catalog .hero-content h1,
.home-catalog .hero-content h2 {
  margin: 0;
  font-size: clamp(44px, 3.6vw, 64px);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: 1.12;
}
.home-catalog .hero-description {
  max-width: 440px;
  margin: 30px 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}
.home-catalog .hero-media {
  position: absolute;
  inset: 80px 0 0;
  background: #f5f5f7;
  overflow: hidden;
}
.home-catalog .hero-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 7s ease-out;
}
.home-catalog .hero-slide.is-active .hero-media img { transform: scale(1); }
.home-catalog .hero-controls {
  right: auto;
  bottom: 28px;
  left: 6vw;
  height: 44px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  backdrop-filter: saturate(140%) blur(16px);
}
.home-catalog .hero-arrow { color: var(--ink); }
.home-catalog .hero-dots button { background: rgba(29,29,31,.22); }
.home-catalog .hero-dots button.is-active { background: var(--ink); }
.home-catalog .scroll-cue { display: none; }

.intro { padding-top: 132px; }
.capabilities { background: #fff; }
.feature {
  min-height: 660px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}
.feature-image { background: #f5f5f7; }
.feature-copy {
  color: var(--ink);
  background: #fff;
  border-left: 1px solid var(--line);
}
.feature-desc { color: var(--ink-soft); }
.feature-grid { grid-auto-rows: auto; gap: 24px; }
.feature-card,
.feature-card-wide {
  display: grid;
  min-height: 0;
  padding: 0;
  color: var(--ink);
  background: #f5f5f7;
  border-radius: 24px;
  grid-template-rows: auto auto auto;
  overflow: hidden;
}
.feature-card > img {
  position: relative;
  inset: auto;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  grid-row: 1;
}
.feature-card-wide > img { aspect-ratio: 2 / 1; }
.feature-card .card-overlay { display: none; }
.feature-card .card-index {
  margin: 0;
  padding: 24px 30px 0;
  color: var(--orange);
  grid-row: 2;
}
.feature-card > div:last-child {
  padding: 14px 30px 34px;
  grid-row: 3;
}
.feature-card h3 { color: var(--ink); }
.feature-card span { color: var(--ink-soft); }
.feature-card:hover img { transform: scale(1.012); }

.process { background: #f5f5f7; }
.process-item button b { font-weight: 300; }
.quality { background: #fff; }
.contact { background: #0b0b0c; }
.contact-glow { display: none; }
.site-footer { background: #0b0b0c; }

.catalog-hero { min-height: 780px; padding-top: 80px; background: #fff; }
.catalog-hero-layout { min-height: 700px; }
.catalog-hero-copy h1 { font-weight: 300; }
.catalog-hero-copy h1 { font-size: clamp(52px, 4.6vw, 72px); }
.catalog-hero-visual {
  align-self: stretch;
  min-height: 0;
  padding: 0;
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
}
.catalog-hero-visual::before,
.catalog-hero-visual figcaption { display: none; }
.catalog-hero-visual img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.catalog-nav-wrap { top: 80px; background: rgba(255,255,255,.92); }
.catalog-heading h2 { font-weight: 300; }
.product-card-image { background: #f5f5f7; border-radius: 18px; }
.product-card-meta b { font-weight: 400; }
.product-dialog-panel { background: #fff; }
.product-dialog-panel figure { background: #f5f5f7; }
.product-dialog-close { background: rgba(255,255,255,.9); }

@media (max-width: 980px) {
  .site-header,
  .site-header.is-scrolled,
  .dark-header { height: 74px; }
  .home-catalog .hero { height: 820px; min-height: 0; }
  .home-catalog .hero-split {
    height: 100%;
  }
  .home-catalog .hero-content {
    top: calc(50% + 37px);
    left: 5vw;
    width: min(450px, 44vw);
    padding: 36px;
  }
  .home-catalog .hero-slide:nth-child(2) .hero-content { right: 5vw; }
  .home-catalog .hero-content h1,
  .home-catalog .hero-content h2 { font-size: clamp(40px, 4.7vw, 48px); }
  .home-catalog .hero-media { inset: 74px 0 0; }
  .feature-copy { border-top: 1px solid var(--line); border-left: 0; }
  .feature-grid { grid-auto-rows: auto; }
  .catalog-nav-wrap { top: 74px; }
}

@media (max-width: 680px) {
  .home-catalog .hero { height: 850px; min-height: 0; }
  .home-catalog .hero-split {
    padding-top: 74px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 420px 1fr;
  }
  .home-catalog .hero-content {
    position: relative;
    z-index: 2;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    padding: 32px 6vw 76px;
    justify-content: flex-start;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    grid-row: 2;
    transform: none;
  }
  .home-catalog .hero-slide:nth-child(2) .hero-content { right: auto; left: auto; }
  .home-catalog .hero-content h1,
  .home-catalog .hero-content h2 { font-size: 38px; }
  .home-catalog .hero-description { margin: 22px 0 20px; font-size: 13px; }
  .home-catalog .hero-media {
    position: relative;
    inset: auto;
    margin: 0;
    border-radius: 0;
    grid-row: 1;
  }
  .home-catalog .hero-media img { object-fit: cover; object-position: center; background: #f5f5f7; }
  .home-catalog .hero-slide:nth-child(1) .hero-media img { object-position: 72% center; }
  .home-catalog .hero-slide:nth-child(2) .hero-media img { object-position: 34% center; }
  .home-catalog .hero-slide:nth-child(3) .hero-media img { object-position: 72% center; }
  .home-catalog .hero-controls { right: 6vw; bottom: 20px; left: 6vw; justify-content: space-between; }
  .feature { border-right: 0; border-left: 0; }
  .feature-grid { width: 90vw; gap: 20px; grid-auto-rows: auto; }
  .feature-card,
  .feature-card-wide { padding: 0; border-radius: 18px; }
  .feature-card-wide > img { aspect-ratio: 4 / 3; }
  .feature-card .card-index { padding: 20px 22px 0; }
  .feature-card > div:last-child { padding: 12px 22px 26px; }
  .catalog-hero { padding-top: 108px; }
  .catalog-hero-copy h1 { font-size: 44px; }
  .catalog-hero-visual {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
    padding: 0;
    border-radius: 18px;
  }
  .catalog-nav-wrap { top: 74px; }
  .product-card-image { border-radius: 14px; }
}
