:root {
  --abyss: #0a1822;
  --ink: #132731;
  --structure: #23485d;
  --steel: #52778c;
  --mineral: #899ba6;
  --mist: #ccd5da;
  --workshop: #f4f3ef;
  --white: #fff;
  --line: rgba(10, 24, 34, 0.14);
  --shadow: 0 24px 70px rgba(10, 24, 34, 0.14);
  --sans: "Manrope", system-ui, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --radius: 3px;
  --type-label: clamp(.68rem, .65rem + .12vw, .75rem);
  --type-small: clamp(.8rem, .77rem + .14vw, .88rem);
  --type-body: clamp(.94rem, .9rem + .18vw, 1.04rem);
  --type-lead: clamp(1.02rem, .96rem + .3vw, 1.18rem);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--workshop); color: var(--abyss); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.no-scroll { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { color: inherit; }
.button:focus-visible, .text-link:focus-visible, button:focus-visible, a:focus-visible { outline: 2px solid var(--steel); outline-offset: 4px; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.wide-container { width: min(1420px, calc(100% - 56px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; transform: translateY(-150%); background: white; padding: 10px 14px; }
.skip-link:focus { transform: none; }

.site-header { position: sticky; top: 0; z-index: 30; background: rgba(244, 243, 239, 0.9); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: border-color .25s; }
.site-header.is-scrolled { border-bottom-color: var(--line); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { position: relative; width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; overflow: visible; }
.brand-mark img { width: 62px; max-width: none; }
.brand-lockup { display: grid; gap: 3px; line-height: 1; }
.brand-lockup strong { font-size: 1rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.brand-lockup small { color: var(--steel); font-size: .49rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.desktop-nav a { position: relative; color: #344b58; font-size: .82rem; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--steel); transition: right .25s; }
.desktop-nav a:hover::after { right: 0; }
.cart-trigger { display: flex; align-items: center; gap: 8px; border: 0; background: var(--abyss); color: white; min-height: 42px; padding: 0 14px; cursor: pointer; border-radius: var(--radius); }
.cart-trigger svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.cart-trigger > span:not(.cart-count) { font-size: .78rem; font-weight: 600; }
.cart-count { min-width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--steel); font-size: .68rem; font-weight: 700; }

.hero { position: relative; min-height: clamp(680px, calc(100svh - 76px), 820px); display: grid; align-items: center; padding: 58px 0 70px; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: 5%; right: -12%; width: 56%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(82,119,140,.12), transparent 68%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(410px, .82fr) minmax(620px, 1.18fr); align-items: center; gap: clamp(52px, 6vw, 92px); }
.hero-shell { width: min(1420px, calc(100% - 56px)); }
.eyebrow, .section-index { text-transform: uppercase; letter-spacing: .16em; font-size: var(--type-label); font-weight: 700; }
.eyebrow { color: var(--steel); }
h1, h2 { margin: 0; font-weight: 500; letter-spacing: -.055em; line-height: 1; text-wrap: balance; }
h1 { max-width: 650px; margin-top: 22px; font-size: clamp(3.25rem, 5.2vw, 5.25rem); }
h1 em, h2 em { color: var(--steel); font-family: var(--serif); font-weight: 400; }
.hero-lead { max-width: 560px; margin: 28px 0 0; color: #52646e; font-size: var(--type-lead); line-height: 1.7; text-wrap: pretty; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 34px; }
.button { min-height: 52px; display: inline-flex; justify-content: center; align-items: center; gap: 24px; padding: 0 22px; border: 1px solid transparent; border-radius: var(--radius); cursor: pointer; font-size: var(--type-small); font-weight: 700; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--abyss); color: white; }
.button-primary:hover { background: var(--structure); }
.button-whatsapp { margin-top: 9px; border-color: #25d366; background: #25d366; color: #052e1a; }
.button-whatsapp:hover { background: #20bd5a; }
.button-full { width: 100%; }
.text-link { border-bottom: 1px solid var(--mineral); padding: 8px 0; font-size: var(--type-small); font-weight: 700; }
.hero-response-note { margin: 15px 0 0; color: #6b7c84; font-size: .72rem; line-height: 1.5; }
.trust-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 54px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.trust-list li { color: #52646e; font-size: var(--type-small); line-height: 1.45; }
.trust-list span { display: block; color: var(--steel); margin-bottom: 8px; font-weight: 700; }
.hero-visual { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 190px; gap: 14px; align-items: stretch; }
.hero-frame { position: relative; min-height: clamp(500px, 56vh, 590px); overflow: hidden; background: var(--abyss); box-shadow: var(--shadow); }
.hero-frame::before { content: ""; position: absolute; z-index: 2; inset: 18px; border: 1px solid rgba(255,255,255,.34); pointer-events: none; }
.hero-frame::after { content: "Proyecto realizado"; position: absolute; z-index: 2; top: 34px; left: 36px; padding: 7px 10px; background: rgba(10,24,34,.76); color: white; font-size: .54rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero-frame-backdrop { position: absolute; z-index: 0; inset: -7%; background-position: center; background-size: cover; opacity: 0; transform: scale(1.08); filter: blur(22px) saturate(.72) brightness(.54); transition: opacity .7s var(--ease-out); }
.hero-frame-backdrop.is-active { opacity: 1; }
.hero-frame-image { --hero-start-scale: 1.045; position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 48% center; opacity: 0; transform: scale(1); filter: saturate(.82) contrast(1.03); transition: opacity .7s var(--ease-out); }
.hero-frame-image.is-smart-fit { --hero-start-scale: 1.025; object-fit: contain; }
.hero-frame-image.is-active { opacity: 1; animation: hero-context-reveal 6.5s var(--ease-in-out) both; animation-play-state: paused; }
.hero-frame.is-rotating .hero-frame-image.is-active { animation-play-state: running; }
.hero-frame-meta { position: absolute; z-index: 3; right: 30px; bottom: 31px; left: 34px; display: flex; align-items: end; justify-content: space-between; gap: 24px; color: white; }
.hero-frame-meta > span { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-frame-meta a { display: inline-flex; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.58); font-size: .68rem; font-weight: 700; }
.hero-frame-meta b { font-weight: 500; transition: transform .2s ease; }
.hero-rotation-toggle { position: absolute; z-index: 4; top: 30px; right: 31px; min-height: 34px; display: inline-flex; align-items: center; gap: 8px; padding: 0 10px; border: 1px solid rgba(255,255,255,.36); background: rgba(7,17,25,.68); color: white; cursor: pointer; font-size: .56rem; font-weight: 700; backdrop-filter: blur(10px); }
.hero-toggle-icon { width: 9px; height: 11px; border-right: 2px solid currentColor; border-left: 2px solid currentColor; }
.hero-rotation-toggle[aria-pressed="true"] .hero-toggle-icon { width: 0; height: 0; margin-left: 1px; border: 5px solid transparent; border-right: 0; border-left: 8px solid currentColor; }
.hero-progress { position: absolute; z-index: 4; right: 18px; bottom: 0; left: 18px; height: 2px; overflow: hidden; background: rgba(255,255,255,.2); }
.hero-progress i { display: block; width: 100%; height: 100%; background: white; transform: scaleX(0); transform-origin: left; }
.hero-frame.is-rotating .hero-progress i { animation: hero-image-progress 6.5s linear forwards; }
@keyframes hero-image-progress { to { transform: scaleX(1); } }
@keyframes hero-context-reveal {
  from { transform: scale(var(--hero-start-scale)); }
  to { transform: scale(1); }
}
@keyframes mobile-hero-reveal {
  from { opacity: .35; clip-path: inset(0 0 100% 0); }
  to { opacity: 1; clip-path: inset(0); }
}
@keyframes mobile-hero-copy-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes mobile-hero-fade {
  from { opacity: .55; }
  to { opacity: 1; }
}
.hero-glimpses { min-width: 0; display: grid; grid-template-rows: repeat(2, 1fr); gap: 12px; }
.hero-glimpses button { position: relative; min-width: 0; min-height: 0; display: grid; grid-template-rows: minmax(0, 1fr) auto; overflow: hidden; padding: 0; border: 1px solid rgba(10,24,34,.14); background: #fff; color: var(--abyss); cursor: pointer; text-align: left; }
.hero-glimpses img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) brightness(.72); transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .35s; }
.hero-glimpses span { display: grid; grid-template-columns: 1fr auto; gap: 3px 8px; padding: 12px; font-size: .68rem; font-weight: 700; }
.hero-glimpses small { grid-column: 1 / -1; color: var(--steel); font-size: .5rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-glimpses b { font-weight: 500; transition: transform .25s; }
@media (hover: hover) and (pointer: fine) {
  .hero-frame-meta a:hover b { transform: translate(3px, -3px); }
  .hero-glimpses button:hover img { transform: scale(1.035); filter: saturate(.9) brightness(.86); }
  .hero-glimpses button:hover b { transform: translateX(4px); }
  .hero-rotation-toggle:hover { background: rgba(7,17,25,.9); }
}
.hero-glimpses button:active, .hero-rotation-toggle:active { transform: translateY(1px); }

.home-paths { padding: 96px 0 118px; border-top: 1px solid var(--line); background: #fff; }
.home-paths-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .55fr); gap: clamp(50px, 8vw, 120px); align-items: end; margin-bottom: 46px; }
.home-paths-heading h2 { max-width: 890px; margin-top: 16px; font-size: clamp(2.9rem, 4.4vw, 5rem); }
.home-paths-heading > p { max-width: 520px; margin: 0; color: #60717a; font-size: var(--type-body); line-height: 1.7; }
.home-paths-grid { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(360px, .72fr); gap: 14px; }
.home-path-card { position: relative; min-height: 510px; display: flex; align-items: flex-end; overflow: hidden; background: var(--abyss); color: white; }
.home-path-card-custom { min-height: 440px; margin-top: 70px; }
.home-path-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,17,25,.94), rgba(5,17,25,.04) 72%); }
.home-path-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.76); transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .45s; }
.home-path-card:hover img { transform: scale(1.035); filter: saturate(.95); }
.home-path-number { position: absolute; z-index: 2; top: 22px; left: 24px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.35); font-size: .58rem; font-variant-numeric: tabular-nums; }
.home-path-card > div { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 14px 30px; padding: clamp(28px, 4vw, 48px); }
.home-path-card small { grid-column: 1 / -1; color: #aac0cb; font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.home-path-card h3 { max-width: 650px; margin: 0; font-size: clamp(2rem, 3.3vw, 3.8rem); font-weight: 500; line-height: 1; letter-spacing: -.055em; text-wrap: balance; }
.home-path-card strong { padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.55); font-size: .72rem; white-space: nowrap; }
.home-path-card i { display: inline-block; margin-left: 14px; font-style: normal; transition: transform .25s; }
.home-path-card:hover i { transform: translateX(4px); }

.home-proof { padding: 22px 0 118px; background: var(--workshop); }
.home-proof-grid { display: grid; grid-template-columns: .42fr 1.08fr .78fr; align-items: stretch; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.home-proof-number { display: flex; flex-direction: column; justify-content: space-between; padding: 42px 32px 38px 0; }
.home-proof-number strong { font-size: clamp(4.5rem, 8vw, 8.5rem); font-weight: 500; line-height: .8; letter-spacing: -.08em; }
.home-proof-number span { color: var(--steel); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.home-proof-copy { padding: 42px clamp(38px, 5vw, 74px) 46px; border-left: 1px solid var(--line); }
.home-proof-copy h2 { max-width: 760px; margin-top: 18px; font-size: clamp(2.45rem, 3.8vw, 4.4rem); }
.home-proof-copy > p:not(.section-index) { max-width: 660px; margin: 26px 0; color: #60717a; line-height: 1.75; }
.home-proof-media { position: relative; min-height: 400px; margin: 0; overflow: hidden; background: var(--abyss); }
.home-proof-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,25,.72), transparent 55%); }
.home-proof-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78); transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.home-proof-media:hover img { transform: scale(1.03); }
.home-proof-media figcaption { position: absolute; z-index: 2; right: 20px; bottom: 18px; left: 20px; color: white; font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

[data-reveal] { opacity: 1; transform: none; }
.motion-ready [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.motion-ready [data-reveal].is-revealed { opacity: 1; transform: none; }

.section-index { margin: 6px 0 0; color: var(--steel); }
h2 { font-size: clamp(2.5rem, 4.4vw, 4.6rem); }
.about-section { padding: 128px 0; border-top: 1px solid var(--line); background: linear-gradient(180deg, var(--workshop), #eeefed); }
.about-heading { display: grid; grid-template-columns: .48fr 1.62fr .38fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.about-overline { margin: 0 0 20px; color: var(--structure); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.about-years { padding-top: 15px; border-top: 1px solid var(--abyss); }
.about-years strong { display: block; font-size: clamp(2.8rem, 5vw, 4.8rem); font-weight: 500; line-height: .9; letter-spacing: -.07em; }
.about-years span { display: block; margin-top: 14px; color: #647680; font-size: .68rem; line-height: 1.55; }
.about-story { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(40px, 8vw, 110px); margin-top: 74px; padding-top: 34px; border-top: 1px solid var(--line); }
.about-story p { margin: 0; color: #586a73; font-size: var(--type-body); line-height: 1.75; text-wrap: pretty; }
.about-story .about-lead { color: var(--ink); font-size: clamp(1.15rem, 2vw, 1.48rem); line-height: 1.65; letter-spacing: -.025em; }
.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 78px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-pillars article { min-height: 330px; padding: 32px clamp(22px, 3vw, 42px) 38px; }
.about-pillars article + article { border-left: 1px solid var(--line); }
.about-pillars article > span { color: var(--steel); font-size: .62rem; font-weight: 700; letter-spacing: .14em; }
.about-pillars h3 { margin: 58px 0 18px; font-family: var(--sans); font-size: clamp(1.5rem, 2vw, 2rem); font-weight: 550; letter-spacing: -.04em; }
.about-pillars p { margin: 0; color: #5b6d76; font-size: var(--type-small); line-height: 1.75; text-wrap: pretty; }
.about-clients { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(45px, 8vw, 110px); margin-top: 78px; padding: clamp(36px, 5vw, 64px); background: var(--abyss); color: white; box-shadow: var(--shadow); }
.about-clients .section-index { color: #8da8b7; }
.about-clients h3 { max-width: 480px; margin: 20px 0 0; font-family: var(--sans); font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 500; line-height: 1.06; letter-spacing: -.045em; text-wrap: balance; }
.about-clients ul { display: grid; grid-template-columns: repeat(2, 1fr); align-content: center; gap: 0 28px; margin: 0; padding: 0; list-style: none; }
.about-clients li { position: relative; padding: 15px 0 15px 20px; border-bottom: 1px solid rgba(255,255,255,.13); color: #c4d0d6; font-size: var(--type-small); }
.about-clients li::before { content: ""; position: absolute; top: 50%; left: 0; width: 6px; height: 6px; border: 1px solid #7897a8; transform: translateY(-50%) rotate(45deg); }

.catalog-section { padding: 120px 0; background: #fff; }
.section-heading { display: grid; grid-template-columns: 1.7fr .7fr; gap: 48px; align-items: end; }
.section-heading h2 { margin-top: 18px; }
.section-heading > p { margin: 0 0 5px; color: #60717a; line-height: 1.7; font-size: var(--type-body); text-wrap: pretty; }
.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 58px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.filter-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-pill { border: 1px solid var(--line); background: transparent; padding: 9px 14px; cursor: pointer; border-radius: 999px; color: #5c6d76; font-size: .72rem; }
.filter-pill.is-active { background: var(--abyss); border-color: var(--abyss); color: white; }
.search-field { display: flex; align-items: center; gap: 8px; min-width: 210px; border-bottom: 1px solid var(--mineral); padding: 8px 0; }
.search-field svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.search-field input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--abyss); font-size: .75rem; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 22px; max-width: 900px; margin-top: 36px; }
.product-card { position: relative; min-width: 0; }
.product-visual { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: #e9eceb; }
.product-slides { position: absolute; inset: 0; }
.product-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: translateX(4%) scale(1.02); transition: opacity .45s ease, transform .65s cubic-bezier(.2,.8,.2,1), filter .6s; }
.product-photo.is-active { z-index: 1; opacity: 1; transform: none; }
.product-card:hover .product-photo.is-active { transform: scale(1.035); filter: saturate(.9); }
.product-gallery-controls { position: absolute; z-index: 3; left: 14px; bottom: 14px; display: flex; align-items: center; gap: 8px; padding: 5px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(10,24,34,.78); backdrop-filter: blur(8px); }
.product-gallery-controls button { width: 27px; height: 27px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: transparent; color: white; cursor: pointer; transition: background .2s; }
.product-gallery-controls button:hover { background: rgba(255,255,255,.16); }
.product-gallery-dots { display: flex; gap: 4px; }
.product-gallery-dots span { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.35); transition: width .25s, background .25s; }
.product-gallery-dots span.is-active { width: 14px; border-radius: 4px; background: white; }
.product-badge { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 6px 8px; background: rgba(255,255,255,.9); color: var(--structure); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-view-label { position: absolute; z-index: 2; top: 14px; right: 14px; max-width: 48%; padding: 6px 8px; background: rgba(10,24,34,.74); color: white; text-align: right; font-size: .54rem; line-height: 1.35; backdrop-filter: blur(8px); }
.add-product { position: absolute; right: 14px; bottom: 14px; z-index: 3; min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 12px; border: 0; border-radius: 999px; background: var(--abyss); color: white; cursor: pointer; font-size: 1.2rem; transition: transform .2s, background .2s; }
.add-product:hover { transform: scale(1.08); background: var(--steel); }
.add-product-label { display: none; font-size: .72rem; font-weight: 700; }
.product-art { position: absolute; inset: 0; transform: scale(1); transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-art { transform: scale(1.04); }
.product-art::before, .product-art::after { content: ""; position: absolute; }
.art-table { background: linear-gradient(145deg, #dce2e2, #f6f6f3); }
.art-table::before { width: 66%; height: 19%; left: 17%; top: 39%; background: linear-gradient(105deg, #9b6a42, #d2aa80); box-shadow: inset 0 -10px 0 rgba(73,49,30,.14); transform: skewY(-4deg); }
.art-table::after { width: 49%; height: 29%; left: 26%; top: 54%; border-left: 8px solid #183344; border-right: 8px solid #183344; transform: perspective(200px) rotateX(-8deg); }
.art-console { background: linear-gradient(145deg, #e7e5df, #cdd7d9); }
.art-console::before { width: 65%; height: 30%; left: 17%; top: 35%; background: #30576a; box-shadow: inset 0 6px rgba(255,255,255,.18), 0 18px 30px rgba(10,24,34,.15); }
.art-console::after { width: 55%; height: 26%; left: 22%; top: 61%; border-left: 7px solid #0a1822; border-right: 7px solid #0a1822; }
.art-bed { background: linear-gradient(150deg, #d8dfe1, #f3f1ec); }
.art-bed::before { width: 73%; height: 36%; left: 13%; top: 39%; border-radius: 40px 6px 6px 6px; background: linear-gradient(#f8f6f0 0 34%, #718b98 35% 100%); box-shadow: 0 18px 30px rgba(10,24,34,.12); }
.art-bed::after { width: 67%; height: 28%; left: 16%; top: 29%; border-radius: 10px 10px 0 0; background: #a97d58; z-index: -0; }
.art-desk { background: linear-gradient(145deg, #d9e0e1, #f4f3ef); }
.art-desk::before { width: 70%; height: 18%; left: 15%; top: 39%; background: linear-gradient(100deg, #c08d60, #e0ba91); box-shadow: inset 0 -8px rgba(89,59,35,.12); transform: skewY(3deg); }
.art-desk::after { width: 60%; height: 34%; left: 20%; top: 51%; border-left: 7px solid #244b5f; border-right: 7px solid #244b5f; }
.art-armchair { background: linear-gradient(145deg, #e9e7e0, #d4dde0); }
.art-armchair::before { width: 58%; height: 49%; left: 21%; top: 29%; border-radius: 30% 30% 14% 14%; background: linear-gradient(120deg, #23485d, #587d8e); box-shadow: inset 0 -18px rgba(10,24,34,.12), 0 15px 25px rgba(10,24,34,.13); }
.art-armchair::after { width: 43%; height: 14%; left: 28%; top: 73%; border-left: 6px solid #0a1822; border-right: 6px solid #0a1822; }
.art-shelf { background: linear-gradient(145deg, #e0e4e2, #f6f3ec); }
.art-shelf::before { width: 60%; height: 64%; left: 20%; top: 18%; border: 12px solid #795334; background: repeating-linear-gradient(to bottom, transparent 0 25%, #9d714d 26% 29%); box-shadow: 0 18px 30px rgba(10,24,34,.11); }
.art-shelf::after { width: 44%; height: 7%; left: 28%; top: 42%; background: linear-gradient(90deg, #244b5f 0 18%, transparent 19% 24%, #899ba6 25% 42%, transparent 43% 50%, #0a1822 51% 70%, transparent 71%); }
.product-meta { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 16px; }
.product-category { grid-column: 1 / -1; color: var(--steel); margin: 0; font-size: .62rem; text-transform: uppercase; letter-spacing: .14em; }
.product-meta h3 { margin: 0; font-size: .94rem; font-weight: 600; }
.product-price { margin: 0; font-size: .86rem; font-weight: 600; }
.product-price-pending { color: var(--steel); font-size: .72rem; }
.product-detail { grid-column: 1 / -1; margin: 0; color: #6a7a82; font-size: var(--type-small); line-height: 1.55; }
.empty-state { margin: 60px 0 0; text-align: center; color: var(--steel); }
.catalog-note { max-width: 900px; display: flex; gap: 18px; margin: 42px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); color: #6a7a82; font-size: var(--type-small); line-height: 1.6; }
.catalog-note span { flex: 0 0 auto; color: var(--structure); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.projects-section { padding: clamp(72px, 9vh, 112px) 0 clamp(82px, 10vh, 128px); background: var(--workshop); }
.projects-heading { margin-bottom: clamp(30px, 4.5vh, 52px); }
.projects-heading > div { min-width: 0; }
.projects-heading h2 { max-width: 12em; }
.projects-heading > p { max-width: 37rem; }
.project-carousel { position: relative; outline: none; }
.project-carousel:focus-visible { outline: 2px solid var(--steel); outline-offset: 8px; }
.project-carousel-stage { position: relative; height: clamp(390px, 52vh, 560px); overflow: hidden; perspective: 1500px; perspective-origin: center 42%; touch-action: pan-y; user-select: none; }
.project-card { position: absolute; top: 0; left: 50%; width: min(68%, 760px); height: calc(100% - 40px); min-height: 350px; overflow: hidden; border: 1px solid rgba(10,24,34,.18); background: var(--abyss); box-shadow: 0 34px 70px rgba(10,24,34,.18); transform-style: preserve-3d; pointer-events: none; transition: transform .75s cubic-bezier(.18,.85,.22,1), opacity .55s ease, filter .55s; will-change: transform, opacity; }
.project-card.is-active { pointer-events: auto; }
.project-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.03); transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .5s; }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,17,25,.92), rgba(5,17,25,.06) 66%); }
.project-card.is-active:hover img { transform: scale(1.035); filter: saturate(.95) contrast(1.02); }
.project-like { position: absolute; z-index: 3; top: 18px; right: 18px; min-width: 72px; min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 14px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(7,17,25,.68); color: white; cursor: pointer; backdrop-filter: blur(12px); transition: transform .2s, background .2s, border-color .2s, color .2s; }
.project-like:hover { transform: translateY(-2px); background: rgba(7,17,25,.88); border-color: rgba(255,255,255,.55); }
.project-like svg { width: 18px; height: 18px; fill: transparent; stroke: currentColor; stroke-width: 1.8; transition: fill .2s, transform .2s; }
.project-like span { min-width: 1.2em; font-size: .68rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.project-like.is-liked { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.94); color: #9a3541; }
.project-like.is-liked svg { fill: currentColor; transform: scale(1.08); }
.project-like:focus-visible { outline: 2px solid white; outline-offset: 3px; }
.project-zoom { position: absolute; z-index: 4; top: 18px; left: 18px; min-height: 42px; display: inline-flex; align-items: center; gap: 9px; padding: 0 14px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; background: rgba(7,17,25,.68); color: white; cursor: pointer; font-size: .7rem; font-weight: 650; backdrop-filter: blur(12px); transition: transform .2s, background .2s; }
.project-zoom:hover { transform: translateY(-2px); background: rgba(7,17,25,.9); }
.project-card-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 7px 20px; padding: 26px; color: white; }
.project-card-content p { grid-column: 1 / -1; margin: 0; color: #9db4c0; font-size: .56rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.project-card-content h3 { margin: 0; font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 500; letter-spacing: -.045em; }
.project-card-content button { border: 0; border-bottom: 1px solid rgba(255,255,255,.45); background: transparent; min-height: 42px; padding: 8px 0; color: white; cursor: pointer; font-size: .72rem; font-weight: 650; }
.project-card-content button span { margin-left: 8px; }
.project-carousel-controls { min-height: 58px; display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: 14px; max-width: 760px; margin: 18px auto 0; padding: 8px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.carousel-arrow { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--abyss); cursor: pointer; transition: background .2s, color .2s, transform .2s; }
.carousel-arrow:hover { transform: translateY(-2px); background: var(--abyss); color: white; }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dots button { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 6px; background: var(--mist); cursor: pointer; transition: width .3s, background .3s; }
.carousel-dots button.is-active { width: 24px; background: var(--structure); }
.carousel-status { display: flex; align-items: center; justify-content: flex-end; gap: 8px; margin: 0; color: var(--mineral); font-family: var(--serif); font-size: .8rem; }
.carousel-status i { opacity: .5; font-style: normal; }
.carousel-status strong { margin-left: 12px; color: var(--abyss); font-family: var(--sans); font-size: .66rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.projects-note { display: flex; justify-content: space-between; gap: 30px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.projects-note span { color: var(--structure); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.projects-note p { max-width: 560px; margin: 0; color: #6a7a82; text-align: right; font-size: var(--type-small); line-height: 1.6; }
.projects-hub-cta { display: grid; grid-template-columns: 1.1fr 1fr auto; gap: clamp(28px, 5vw, 70px); align-items: center; margin-top: 74px; padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.projects-hub-cta h3 { max-width: 470px; margin: 12px 0 0; font-size: clamp(1.7rem, 2.7vw, 2.6rem); font-weight: 500; line-height: 1.08; letter-spacing: -.045em; text-wrap: balance; }

@media (min-width: 901px) and (max-height: 850px) {
  .projects-section { padding-top: 58px; }
  .projects-heading { grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr); margin-bottom: 24px; }
  .projects-heading h2 { margin-top: 12px; font-size: clamp(2.65rem, 7vh, 3.65rem); }
  .projects-heading > p { line-height: 1.55; }
  .project-carousel-stage { height: clamp(350px, 49vh, 410px); }
  .project-card { min-height: 310px; }
  .project-carousel-controls { margin-top: 10px; }
}
.projects-hub-cta > p { margin: 0; color: #60717a; font-size: var(--type-small); line-height: 1.7; text-wrap: pretty; }

.media-lightbox { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(3,11,17,.94); color: white; }
.media-lightbox::backdrop { background: rgba(3,11,17,.94); }
.media-lightbox-shell { position: relative; width: 100%; height: 100%; display: grid; grid-template-columns: 72px minmax(0, 1fr) 72px; align-items: center; gap: 20px; padding: 28px; }
.media-lightbox figure { min-width: 0; max-width: min(1320px, 100%); max-height: 100%; display: grid; justify-items: center; gap: 14px; margin: 0 auto; }
.media-lightbox img { max-width: 100%; max-height: calc(100dvh - 100px); object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,.35); }
.media-lightbox figcaption { width: 100%; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 18px; color: #c2d0d6; font-size: .82rem; text-align: left; }
.media-lightbox figcaption [data-lightbox-count] { font-variant-numeric: tabular-nums; white-space: nowrap; }
.media-lightbox figcaption a { min-height: 42px; display: inline-flex; align-items: center; padding: 0 14px; border: 1px solid rgba(255,255,255,.28); color: white; font-size: .72rem; font-weight: 700; white-space: nowrap; }
.media-lightbox-close, .media-lightbox-arrow { display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(255,255,255,.07); color: white; cursor: pointer; transition: background .2s, transform .2s; }
.media-lightbox-close:hover, .media-lightbox-arrow:hover { background: rgba(255,255,255,.16); transform: scale(1.04); }
.media-lightbox-close { position: absolute; z-index: 2; top: 22px; right: 22px; width: 48px; height: 48px; font-size: 1.65rem; }
.media-lightbox-arrow { width: 52px; height: 52px; font-size: 1.2rem; }

.portfolio-explorer { margin-top: 112px; padding-top: 52px; border-top: 1px solid var(--line); }
.portfolio-explorer-heading { display: grid; grid-template-columns: 1fr minmax(260px, .55fr); gap: 48px; align-items: end; }
.portfolio-explorer-heading h3 { margin: 14px 0 0; font-family: var(--sans); font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 500; letter-spacing: -.045em; text-wrap: balance; }
.portfolio-explorer-heading > p { margin: 0; color: #60717a; font-size: var(--type-body); line-height: 1.7; text-wrap: pretty; }
.portfolio-tabs { display: flex; gap: 8px; overflow-x: auto; margin: 42px 0 28px; padding: 0 0 12px; scrollbar-width: thin; }
.portfolio-tabs button { flex: 0 0 auto; min-height: 42px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: #536771; cursor: pointer; font-size: .68rem; font-weight: 650; transition: background .2s, color .2s, border-color .2s; }
.portfolio-tabs button[aria-selected="true"] { border-color: var(--abyss); background: var(--abyss); color: white; }
.portfolio-tabs button:focus-visible { outline: 2px solid var(--steel); outline-offset: 3px; }
.portfolio-panel[hidden], .social-tool-section[hidden] { display: none; }
.portfolio-cover { position: relative; min-height: 320px; overflow: hidden; background: var(--abyss); color: white; }
.portfolio-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,17,25,.88), rgba(5,17,25,.12) 74%); }
.portfolio-cover > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.04); }
.portfolio-cover > div { position: relative; z-index: 1; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; max-width: 650px; padding: clamp(28px, 5vw, 58px); }
.portfolio-cover span { color: #a8bdc8; font-family: var(--serif); font-size: .9rem; }
.portfolio-cover h3 { margin: 12px 0 8px; font-family: var(--sans); font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 500; line-height: 1; letter-spacing: -.05em; text-wrap: balance; }
.portfolio-cover p { margin: 0; color: #b6c6cd; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 18px; margin-top: 20px; }
.portfolio-card { position: relative; min-width: 0; overflow: hidden; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.45); }
.portfolio-card:first-child { grid-column: span 2; }
.portfolio-card-image { aspect-ratio: 4 / 3; overflow: hidden; background: #dfe4e4; }
.portfolio-card:first-child .portfolio-card-image { aspect-ratio: 16 / 9; }
.portfolio-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .4s; }
.portfolio-card:hover .portfolio-card-image img { transform: scale(1.035); filter: saturate(.9); }
.portfolio-card-copy { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 18px; min-height: 92px; padding: 16px 2px 18px; }
.portfolio-card-copy h3 { margin: 0; font-size: var(--type-small); font-weight: 650; line-height: 1.45; }
.portfolio-card-copy button { border: 0; border-bottom: 1px solid var(--mineral); background: none; min-height: 40px; padding: 5px 0; color: var(--structure); cursor: pointer; font-size: .7rem; font-weight: 650; white-space: nowrap; }
.portfolio-card .project-like { top: 12px; right: 12px; }
.gallery-error { margin: 32px 0 0; padding: 18px; border: 1px solid var(--line); color: #6a7a82; font-size: .72rem; }

.social-tool-section { padding: 120px 0; background: #e7ebeb; }
.social-assets-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; margin-top: 58px; }
.social-asset-card { overflow: hidden; background: white; box-shadow: 0 14px 38px rgba(10,24,34,.08); }
.social-asset-card > img { width: 100%; aspect-ratio: 1200 / 630; object-fit: cover; }
.social-asset-card > div { padding: 20px; }
.social-asset-card p { min-height: 3.4em; margin: 0; color: #405660; font-size: .76rem; line-height: 1.7; }
.social-asset-actions { display: flex; justify-content: space-between; gap: 20px; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.social-asset-actions button, .social-asset-actions a { border: 0; background: none; padding: 5px 0; color: var(--structure); cursor: pointer; font-size: .64rem; font-weight: 700; }

.catalog-download-section { padding: 128px 0; background: #eef0ef; }
.catalog-download-grid { display: grid; grid-template-columns: minmax(280px, .72fr) 1.28fr; gap: clamp(54px, 9vw, 130px); align-items: center; }
.catalog-cover { position: relative; width: min(100%, 440px); justify-self: center; overflow: hidden; background: var(--abyss); box-shadow: 0 34px 76px rgba(10,24,34,.2); }
.catalog-cover::before { content: ""; position: absolute; z-index: 2; inset: 0; border: 1px solid rgba(255,255,255,.2); pointer-events: none; }
.catalog-cover img { display: block; width: 100%; height: auto; transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .4s; }
.catalog-cover > span { position: absolute; z-index: 3; right: 18px; bottom: 18px; padding: 11px 15px; border: 1px solid rgba(255,255,255,.42); background: rgba(7,17,25,.72); color: white; font-size: .62rem; font-weight: 700; letter-spacing: .06em; backdrop-filter: blur(10px); }
.catalog-cover:hover img { transform: scale(1.025); filter: brightness(1.06); }
.catalog-download-copy { max-width: 650px; }
.catalog-download-copy h2 { margin-top: 22px; }
.catalog-download-copy > p:not(.section-index) { max-width: 590px; margin: 30px 0 0; color: #596b74; font-size: var(--type-body); line-height: 1.75; text-wrap: pretty; }
.catalog-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin: 42px 0 0; padding-top: 20px; border-top: 1px solid var(--line); }
.catalog-meta div { min-width: 0; }
.catalog-meta dt { color: var(--steel); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.catalog-meta dd { margin: 8px 0 0; font-size: .72rem; }
.catalog-download-actions { display: flex; align-items: center; gap: 28px; margin-top: 42px; }

.process-section { position: relative; isolation: isolate; overflow: hidden; padding: 132px 0 116px; background: #071721; color: white; }
.process-section::before { content: ""; position: absolute; z-index: -2; inset: 0; background: radial-gradient(circle at 86% 12%, rgba(82,119,140,.2), transparent 28%), radial-gradient(circle at 12% 82%, rgba(35,72,93,.18), transparent 32%); }
.process-blueprint { position: absolute; z-index: -1; inset: 0; opacity: .08; background-image: linear-gradient(rgba(204,213,218,.38) 1px, transparent 1px), linear-gradient(90deg, rgba(204,213,218,.38) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent); }
.process-blueprint::after { content: "CM"; position: absolute; right: -4vw; top: -7vw; color: transparent; -webkit-text-stroke: 1px rgba(204,213,218,.45); font-size: clamp(18rem, 38vw, 42rem); font-weight: 700; letter-spacing: -.16em; line-height: 1; }
.process-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(50px, 9vw, 130px); align-items: end; }
.process-heading .section-index { color: #79a2b8; }
.process-heading h2 { max-width: 830px; margin-top: 20px; font-size: clamp(3rem, 5vw, 5.2rem); }
.process-heading h2 em { color: var(--mist); }
.process-manifesto { display: grid; grid-template-columns: 92px 1fr; gap: 22px; align-items: center; padding-bottom: 10px; }
.process-manifesto p { margin: 0; color: #9aadb7; font-size: var(--type-body); line-height: 1.7; text-wrap: pretty; }
.process-seal { width: 92px; height: 92px; display: grid; grid-template-rows: 1fr auto; align-items: center; padding: 14px; border: 1px solid rgba(204,213,218,.25); border-radius: 50%; background: rgba(10,24,34,.48); text-align: center; }
.process-seal > span { align-self: end; color: var(--mist); font-family: var(--serif); font-size: 1.65rem; line-height: .9; }
.process-seal small { align-self: start; margin-top: 6px; color: #7595a6; font-size: .48rem; font-weight: 700; letter-spacing: .11em; line-height: 1.3; text-transform: uppercase; }
.process-map { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 86px; padding-top: 64px; }
.process-map::before { content: ""; position: absolute; top: 29px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, transparent, #52778c 8%, #8fb0c1 50%, #52778c 92%, transparent); }
.process-step { position: relative; min-width: 0; }
.process-node { position: absolute; top: -64px; left: 50%; z-index: 2; width: 58px; height: 58px; display: grid; place-items: center; transform: translateX(-50%); border: 1px solid rgba(143,176,193,.55); border-radius: 50%; background: #071721; box-shadow: 0 0 0 8px #071721, 0 0 28px rgba(82,119,140,.25); color: #a9c0cb; font-family: var(--serif); font-size: 1rem; }
.process-node::after { content: ""; position: absolute; right: 5px; bottom: 5px; width: 4px; height: 4px; border-radius: 50%; background: #dce7eb; box-shadow: 0 0 12px #9bb7c5; }
.process-card { position: relative; min-height: 364px; display: flex; flex-direction: column; overflow: hidden; padding: 26px; border: 1px solid rgba(204,213,218,.16); background: linear-gradient(145deg, rgba(23,48,62,.82), rgba(8,27,38,.9)); backdrop-filter: blur(8px); transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, background .35s; }
.process-step:nth-child(even) .process-card { margin-top: 34px; }
.process-card::before { content: ""; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: linear-gradient(var(--mist), var(--steel)); transition: height .4s ease; }
.process-card::after { content: counter(process-card); position: absolute; right: -5px; bottom: -42px; color: rgba(204,213,218,.035); font-family: var(--serif); font-size: 10rem; line-height: 1; }
.process-map { counter-reset: process-card; }
.process-step { counter-increment: process-card; }
.process-card:hover { transform: translateY(-8px); border-color: rgba(143,176,193,.46); background: linear-gradient(145deg, rgba(30,62,79,.92), rgba(8,27,38,.96)); }
.process-card:hover::before { height: 100%; }
.process-card-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.process-phase { color: #84a8ba; font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.process-card-top svg { width: 39px; height: 39px; fill: none; stroke: #89a8b7; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.process-card h3 { margin: 42px 0 16px; font-size: clamp(1.25rem, 1.8vw, 1.65rem); font-weight: 500; letter-spacing: -.045em; line-height: 1.12; }
.process-card > p { margin: 0; color: #91a6b1; font-size: var(--type-small); line-height: 1.7; text-wrap: pretty; }
.process-output { display: flex; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(204,213,218,.13); }
.process-output span { color: #6e8997; font-size: .52rem; letter-spacing: .12em; text-transform: uppercase; }
.process-output strong { color: #c8d7de; text-align: right; font-size: .62rem; font-weight: 600; }
.process-footnote { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 15px; max-width: 620px; margin: 92px auto 0; color: #6f8b99; }
.process-footnote span { font-family: var(--serif); font-size: .78rem; }
.process-footnote i { height: 1px; background: linear-gradient(90deg, transparent, rgba(143,176,193,.5), transparent); }
.process-footnote p { margin: 0; color: #9bb0ba; text-align: center; font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }

.custom-section { padding: 120px 0; }
.custom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; }
.custom-image { position: relative; min-height: 610px; display: grid; align-content: center; justify-items: center; overflow: hidden; padding: clamp(34px, 6vw, 72px); background: radial-gradient(circle at 50% 32%, #fff 0, #f8f8f5 44%, #eef0ef 100%); box-shadow: var(--shadow); }
.custom-brand-card::before { content: "CM / 06"; position: absolute; top: 24px; left: 26px; color: var(--steel); font-size: .52rem; font-weight: 700; letter-spacing: .18em; }
.custom-brand-card::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(35,72,93,.12); pointer-events: none; }
.custom-brand-symbol { width: min(122%, 620px); max-width: none; margin: -10% 0 -7%; filter: drop-shadow(0 20px 22px rgba(10,24,34,.14)); }
.custom-brand-type { position: relative; z-index: 1; width: min(100%, 500px); display: grid; justify-items: center; gap: 10px; padding-top: 28px; border-top: 1px solid rgba(35,72,93,.22); text-align: center; text-transform: uppercase; }
.custom-brand-type strong { color: var(--abyss); font-size: clamp(1.7rem, 3.3vw, 2.65rem); font-weight: 600; line-height: 1; letter-spacing: .2em; }
.custom-brand-type span { color: var(--steel); font-size: clamp(.64rem, 1.1vw, .82rem); font-weight: 650; letter-spacing: .2em; }
.custom-brand-type small { color: #536c79; font-size: .52rem; font-weight: 700; letter-spacing: .24em; }
.custom-copy h2 { margin-top: 22px; }
.custom-copy > p:not(.section-index) { max-width: 540px; margin: 28px 0; color: #596b74; font-size: var(--type-body); line-height: 1.75; text-wrap: pretty; }
.contact-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 42px 0 0; padding-top: 20px; border-top: 1px solid var(--line); }
.contact-details div { min-width: 0; }
.contact-details dt { color: var(--steel); font-size: .58rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-details dd { margin: 8px 0 0; font-size: var(--type-small); line-height: 1.5; }

.site-footer { padding: 72px 0 32px; background: #071119; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .6fr .7fr; gap: 60px; }
.brand-light .brand-mark { border: 0; background: transparent; }
.brand-light .brand-lockup small { color: #8299a6; }
.footer-grid > div:first-child p { color: #82949e; margin: 22px 0 0; font-size: .75rem; line-height: 1.7; }
.footer-social-gallery { max-width: 430px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-top: 24px; }
.footer-social-card { min-width: 0; min-height: 72px; display: grid; grid-template-columns: 72px minmax(0, 1fr); align-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); transition: transform .2s, border-color .2s, background .2s; }
a.footer-social-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.08); }
.footer-social-card img { width: 72px; height: 72px; object-fit: cover; }
.footer-social-card span { min-width: 0; display: grid; gap: 4px; padding: 10px; }
.footer-social-card small { color: #8fa6b1; font-size: .51rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-social-card strong { overflow: hidden; color: white; font-size: .68rem; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.footer-social-card.is-coming-soon { opacity: .58; }
.footer-grid h3 { margin: 0 0 18px; color: #899ba6; font-size: .62rem; text-transform: uppercase; letter-spacing: .13em; }
.footer-grid > div:not(:first-child) a, .footer-grid > div:not(:first-child) button { display: block; border: 0; background: none; padding: 5px 0; color: #dce3e6; cursor: pointer; font-size: .75rem; }
.footer-contact-person { display: grid; gap: 3px; margin: 0 0 8px; color: #dce3e6; font-size: .72rem; font-weight: 600; }
.footer-contact-person small { color: #8299a6; font-size: .52rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-catalog-cta { grid-column: 1 / -1; min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 6px; padding: 18px 22px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.045); transition: border-color .2s, background .2s, transform .2s; }
.footer-catalog-cta:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.08); }
.footer-catalog-cta > span { color: #8fa6b1; font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-catalog-cta strong { color: white; font-size: .76rem; font-weight: 650; }
.footer-note { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 24px; margin: 48px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #60747f; font-size: .64rem; }
.developer-credit { margin-right: clamp(240px, 22vw, 290px); }
.footer-note a { color: #a9bbc4; transition: color .2s; }
.footer-note a:hover { color: white; }

.whatsapp-float { position: fixed; z-index: 45; right: max(22px, env(safe-area-inset-right)); bottom: max(22px, env(safe-area-inset-bottom)); min-height: 54px; display: inline-flex; align-items: center; gap: 10px; padding: 0 18px; border: 1px solid rgba(255,255,255,.72); border-radius: 999px; background: #25d366; color: #052e1a; box-shadow: 0 18px 40px rgba(7,23,33,.25), 0 0 0 7px rgba(37,211,102,.13); font-size: .74rem; font-weight: 750; transition: transform .2s, background .2s, box-shadow .2s; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.02); background: #20bd5a; box-shadow: 0 22px 46px rgba(7,23,33,.32), 0 0 0 9px rgba(37,211,102,.18); }
.whatsapp-float svg { width: 22px; height: 22px; fill: white; filter: drop-shadow(0 1px 1px rgba(0,0,0,.12)); }
.whatsapp-float strong { min-width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: white; color: #137c3f; font-size: .62rem; }
.whatsapp-float:focus-visible { outline: 3px solid white; outline-offset: 3px; }

.mobile-product-shelf, .mobile-quick-nav { display: none; }
.mobile-about-details { display: none; }

.scrim { position: fixed; inset: 0; z-index: 50; background: rgba(3,11,17,.58); backdrop-filter: blur(4px); }
.cart-drawer { position: fixed; top: 0; right: 0; z-index: 60; width: min(450px, 100%); height: 100dvh; display: flex; flex-direction: column; padding: 28px; background: var(--workshop); box-shadow: -20px 0 50px rgba(0,0,0,.2); transform: translateX(105%); visibility: hidden; transition: transform .35s cubic-bezier(.2,.8,.2,1), visibility .35s; }
.cart-drawer.is-open { transform: none; visibility: visible; }
.drawer-header { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.drawer-header .eyebrow { margin: 0 0 8px; }
.drawer-header h2 { font-size: 2.4rem; }
.icon-button { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.5rem; line-height: 1; }
.cart-content { flex: 1; overflow: auto; padding: 8px 0; }
.cart-empty { display: grid; place-items: center; min-height: 60%; text-align: center; color: #6c7c84; }
.cart-empty strong { display: block; margin-bottom: 8px; color: var(--abyss); }
.cart-line { display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-thumb { height: 76px; background: #dde3e3; overflow: hidden; }
.cart-thumb .product-art { position: relative; display: block; width: 100%; height: 100%; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line h3 { margin: 0 0 5px; font-size: .78rem; }
.cart-line p { margin: 0; color: #687a83; font-size: .68rem; }
.quantity { display: flex; align-items: center; gap: 8px; margin-top: 9px; }
.quantity button { width: 24px; height: 24px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.quantity span { min-width: 16px; text-align: center; font-size: .68rem; }
.remove-item { border: 0; background: none; color: #75858d; cursor: pointer; font-size: 1rem; }
.cart-footer { padding-top: 20px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; align-items: center; }
.cart-total span { font-size: .76rem; }
.cart-total strong { font-size: 1.25rem; }
.cart-footer > p { color: #6f7f87; font-size: .62rem; line-height: 1.5; }

.project-dialog { width: min(640px, calc(100% - 30px)); max-height: calc(100dvh - 30px); padding: 0; border: 0; background: var(--workshop); color: var(--abyss); box-shadow: var(--shadow); }
.project-dialog::backdrop { background: rgba(3,11,17,.7); backdrop-filter: blur(5px); }
.quote-sheet { position: fixed; inset: auto 10px 10px; width: min(calc(100% - 20px), 540px); max-width: none; max-height: calc(100dvh - 20px); margin: 0 auto; padding: 0; overflow: hidden; border: 0; border-radius: 18px 18px 10px 10px; background: var(--workshop); color: var(--abyss); box-shadow: 0 28px 80px rgba(3,11,17,.34); }
.quote-sheet[open] { animation: quote-sheet-in .28s cubic-bezier(.2,.8,.2,1); }
.quote-sheet::backdrop { background: rgba(3,11,17,.68); backdrop-filter: blur(5px); }
.quote-sheet-content { position: relative; padding: 24px 22px 20px; }
.quote-sheet-handle { width: 38px; height: 4px; margin: -9px auto 20px; border-radius: 4px; background: var(--mist); }
.quote-sheet-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.25rem; }
.quote-sheet h2 { max-width: 8em; margin-top: 12px; font-size: clamp(2.1rem, 8vw, 3.1rem); }
.quote-sheet-copy { max-width: 460px; margin: 17px 0 0; color: #60717a; font-size: .86rem; line-height: 1.65; }
.quote-sheet-actions { display: grid; gap: 9px; margin-top: 22px; }
.quote-channel { width: 100%; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 7px; background: white; color: var(--abyss); text-align: left; cursor: pointer; transition: transform .2s, border-color .2s, background .2s; }
.quote-channel:hover { transform: translateY(-2px); border-color: var(--steel); }
.quote-channel span { display: grid; gap: 4px; }
.quote-channel strong { font-size: .82rem; font-weight: 700; }
.quote-channel small { color: #6c7d85; font-size: .68rem; line-height: 1.4; }
.quote-channel b { font-size: 1rem; font-weight: 500; }
.quote-channel-whatsapp { border-color: #25d366; background: #25d366; color: #052e1a; }
.quote-channel-whatsapp small { color: #0a5c2f; }
.quote-sheet-note { margin: 16px 0 0; color: #7a898f; font-size: .62rem; line-height: 1.55; }
@keyframes quote-sheet-in { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }
.project-form { position: relative; padding: clamp(28px, 6vw, 56px); }
.dialog-close { position: absolute; top: 20px; right: 20px; }
.project-form h2 { max-width: 480px; margin: 16px 0; font-size: clamp(2.4rem, 6vw, 4rem); }
.project-form > p:not(.eyebrow):not(.form-note) { color: #63747d; line-height: 1.7; font-size: .82rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 20px; }
.form-grid label { color: var(--structure); font-size: .65rem; font-weight: 700; }
.form-wide { grid-column: 1 / -1; }
.form-grid input, .form-grid textarea { width: 100%; margin-top: 7px; padding: 12px 0; border: 0; border-bottom: 1px solid var(--mineral); outline: 0; resize: vertical; background: transparent; color: var(--abyss); font-size: .78rem; }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--structure); }
.form-note { margin: 12px 0 0; color: #7a898f; text-align: center; font-size: .58rem; }
.toast { position: fixed; z-index: 100; left: 50%; bottom: 24px; max-width: min(420px, calc(100% - 30px)); padding: 12px 18px; background: var(--abyss); color: white; box-shadow: var(--shadow); transform: translate(-50%, 160%); opacity: 0; transition: .3s; font-size: .72rem; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hero { min-height: auto; padding-top: 40px; }
  .hero-grid, .custom-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 30px; }
  .hero-visual { width: min(650px, 100%); }
  .home-paths-heading, .home-proof-grid { grid-template-columns: 1fr; }
  .home-paths-grid { grid-template-columns: 1fr 1fr; }
  .home-path-card, .home-path-card-custom { min-height: 420px; margin-top: 0; }
  .home-path-card > div { grid-template-columns: 1fr; }
  .home-path-card strong { justify-self: start; }
  .home-proof-number { min-height: 190px; padding-right: 0; }
  .home-proof-copy { border-top: 1px solid var(--line); border-left: 0; }
  .home-proof-media { min-height: 360px; }
  .about-heading, .about-story, .about-clients { grid-template-columns: 1fr; }
  .about-years { max-width: 190px; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-pillars article { min-height: 0; }
  .about-pillars article + article { border-top: 1px solid var(--line); border-left: 0; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p { max-width: 560px; }
  .portfolio-explorer-heading { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-download-grid { grid-template-columns: minmax(250px, .75fr) 1.25fr; gap: 54px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .project-carousel-stage { height: clamp(420px, 60vw, 520px); }
  .project-card { width: min(76%, 680px); height: calc(100% - 40px); min-height: 380px; }
  .process-heading { grid-template-columns: 1fr; }
  .process-manifesto { max-width: 480px; }
  .process-map { grid-template-columns: repeat(2, 1fr); row-gap: 84px; }
  .process-map::before { display: none; }
  .process-step:nth-child(even) .process-card { margin-top: 0; }
  .process-step::before { content: ""; position: absolute; top: -36px; left: 50%; height: 36px; border-left: 1px solid rgba(143,176,193,.45); }
  .footer-grid { grid-template-columns: 1.4fr .6fr .7fr; }
}

@media (max-width: 600px) {
  .container, .wide-container, .hero-shell { width: min(100% - 30px, 1180px); }
  .nav-wrap { min-height: 66px; }
  .brand-mark { width: 40px; height: 40px; flex-basis: 40px; }
  .brand-mark img { width: 54px; }
  .brand-lockup strong { font-size: .82rem; letter-spacing: .09em; }
  .brand-lockup small { display: none; }
  .cart-trigger { min-height: 40px; padding: 0 12px; }
  .cart-trigger > span:not(.cart-count) { display: none; }
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  .hero { min-height: calc(100svh - 66px); align-items: end; isolation: isolate; padding: clamp(220px, 34svh, 290px) 0 36px; background: var(--abyss); color: white; }
  .hero::before { z-index: 1; inset: 0; width: auto; aspect-ratio: auto; border-radius: 0; background: linear-gradient(180deg, rgba(5,14,21,.06) 0%, rgba(5,14,21,.35) 34%, rgba(5,14,21,.88) 66%, rgba(5,14,21,.98) 100%); }
  .hero-grid { position: static; z-index: 3; }
  .hero-copy { position: relative; z-index: 3; padding-top: 0; }
  .hero-copy > * { animation: mobile-hero-copy-in .55s var(--ease-out) both; }
  .hero-copy > .eyebrow { animation-delay: .18s; color: #c6d6de; }
  .hero-copy > h1 { animation-delay: .24s; }
  .hero-copy > .hero-lead { animation-delay: .31s; }
  .hero-copy > .hero-actions { animation-delay: .38s; }
  .hero-copy > .hero-response-note { animation-delay: .45s; }
  h1 { max-width: 9.6em; margin-top: 14px; font-size: clamp(2.25rem, 9.8vw, 2.85rem); line-height: .98; letter-spacing: -.052em; }
  h1 em { color: #a8c0cc; }
  h2 { max-width: 11.5em; font-size: clamp(2.1rem, 9.2vw, 2.75rem); line-height: 1.02; letter-spacing: -.05em; }
  .hero-lead { margin-top: 18px; color: #d7e1e6; font-size: .94rem; line-height: 1.56; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 8px; margin-top: 22px; }
  .hero-actions .button { width: 100%; justify-content: space-between; }
  .hero-actions .button-primary { background: white; color: var(--abyss); }
  .hero-actions .text-link { align-self: flex-start; min-height: 44px; display: inline-flex; align-items: center; border-bottom-color: rgba(255,255,255,.58); color: white; }
  .hero-response-note { margin-top: 10px; color: #b7c6cd; font-size: .7rem; }
  .trust-list { display: none; }
  .hero-visual { position: absolute; z-index: 0; inset: 0; width: 100%; display: block; animation: mobile-hero-reveal .85s var(--ease-out) both; }
  .hero-frame { min-height: 100%; height: 100%; box-shadow: none; }
  .hero-frame::before { inset: 14px; border-color: rgba(255,255,255,.24); }
  .hero-frame::after { top: 22px; left: 24px; background: rgba(5,14,21,.68); }
  .hero-frame-backdrop { inset: -9%; filter: blur(24px) saturate(.68) brightness(.5); }
  .hero-frame-image { object-fit: contain; object-position: center 14%; filter: saturate(.88) contrast(1.03) brightness(.96); }
  .hero-frame-meta, .hero-glimpses { display: none; }
  .hero-rotation-toggle { top: 20px; right: 22px; width: 38px; min-height: 38px; justify-content: center; padding: 0; border-radius: 50%; }
  .hero-rotation-toggle [data-hero-toggle-label] { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
  .hero-progress { right: 0; left: 0; }
  .home-paths { display: none; }
  .home-proof { padding: 54px 0 68px; }
  .home-proof-grid { border-bottom: 0; }
  .home-proof-number { min-height: 0; display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 18px; padding: 26px 0; }
  .home-proof-number strong { font-size: 4.8rem; }
  .home-proof-number span { padding-bottom: 5px; }
  .home-proof-copy { padding: 30px 0 0; }
  .home-proof-copy h2 { font-size: clamp(2.2rem, 9.4vw, 2.8rem); }
  .home-proof-media { display: none; }
  .hero-frame img { aspect-ratio: 4 / 3; }
  .mobile-product-shelf { display: block; padding: 32px 0 38px; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
  .mobile-shelf-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 18px; }
  .mobile-shelf-heading h2 { max-width: none; margin-top: 8px; font-size: 2rem; }
  .mobile-shelf-heading > a { min-height: 44px; display: inline-flex; align-items: center; border-bottom: 1px solid var(--mineral); font-size: .74rem; font-weight: 700; }
  .mobile-product-rail { display: grid; grid-auto-flow: column; grid-auto-columns: 76%; gap: 12px; margin: 24px -15px 0 0; padding-right: 15px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; }
  .mobile-product-rail::-webkit-scrollbar { display: none; }
  .mobile-product-card { min-width: 0; padding-bottom: 15px; border-bottom: 1px solid var(--line); scroll-snap-align: start; }
  .mobile-product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #e7eae9; }
  .mobile-product-card span { display: block; margin-top: 12px; color: var(--steel); font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
  .mobile-product-card strong { display: block; margin-top: 5px; font-size: .96rem; font-weight: 650; letter-spacing: -.025em; }
  .mobile-swipe-note { margin: 14px 0 0; color: #718088; font-size: .68rem; }
  .mobile-swipe-note span { margin-right: 7px; color: var(--structure); }
  .about-section, .projects-section, .process-section { padding: 74px 0; }
  body:not(.inner-page) .catalog-section { display: none; }
  .catalog-section, .social-tool-section, .catalog-download-section, .custom-section { padding: 68px 0; }
  .about-heading { gap: 24px; }
  .about-overline { margin-bottom: 15px; }
  .about-years { max-width: 150px; padding-top: 12px; }
  .about-years strong { font-size: 3rem; }
  .about-story { gap: 22px; margin-top: 40px; padding-top: 26px; }
  .about-story .about-lead { font-size: 1.08rem; line-height: 1.58; }
  .about-story > p:not(.about-lead), .about-pillars, .about-clients { display: none; }
  .mobile-about-details { display: block; margin-top: 26px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .mobile-about-details summary { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--abyss); cursor: pointer; font-size: .78rem; font-weight: 700; list-style: none; }
  .mobile-about-details summary::-webkit-details-marker { display: none; }
  .mobile-about-details summary span { color: var(--structure); font-size: 1.2rem; font-weight: 400; transition: transform .2s; }
  .mobile-about-details[open] summary span { transform: rotate(45deg); }
  .mobile-about-details > div { padding: 0 0 22px; color: #596b74; font-size: .84rem; line-height: 1.65; }
  .mobile-about-details > div p + p { margin-top: 12px; }
  .mobile-about-details strong { color: var(--abyss); }
  .about-pillars { margin-top: 42px; }
  .about-pillars article { padding: 24px 18px 28px; }
  .about-pillars h3 { margin: 22px 0 12px; font-size: 1.45rem; }
  .about-clients { gap: 30px; margin-top: 46px; padding: 30px 22px; }
  .about-clients h3 { font-size: clamp(1.8rem, 8vw, 2.35rem); }
  .about-clients ul { grid-template-columns: 1fr; }
  .custom-copy { order: -1; }
  .custom-image { min-height: 390px; padding: 36px 25px; }
  .custom-brand-symbol { width: min(138%, 500px); margin-block: -12% -8%; }
  .custom-brand-type { gap: 8px; padding-top: 22px; }
  .custom-brand-type strong { font-size: clamp(1.38rem, 7.5vw, 1.9rem); letter-spacing: .14em; }
  .custom-brand-type span { font-size: .58rem; letter-spacing: .15em; }
  .custom-brand-type small { max-width: 250px; line-height: 1.5; }
  .section-heading { gap: 22px; }
  .section-heading > p { font-size: .94rem; line-height: 1.62; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; gap: 18px; margin-top: 34px; }
  .filter-pill { min-height: 42px; padding-inline: 16px; font-size: .78rem; }
  .search-field { width: 100%; }
  .search-field input { min-height: 42px; font-size: .88rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-visual { aspect-ratio: 4 / 3; }
  .add-product { min-width: 102px; height: 44px; }
  .add-product-label { display: inline; }
  .product-meta { margin-top: 14px; }
  .product-meta h3 { font-size: 1.05rem; }
  .product-price-pending { font-size: .82rem; }
  .product-detail { font-size: .84rem; }
  .catalog-note, .projects-note { align-items: flex-start; flex-direction: column; }
  .projects-note p { text-align: left; }
  .catalog-download-grid { grid-template-columns: 1fr; gap: 48px; }
  .catalog-download-copy { order: -1; }
  .catalog-cover { width: min(84%, 390px); }
  .catalog-download-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .catalog-meta { grid-template-columns: 1fr; }
  .project-carousel-stage { height: clamp(360px, 46dvh, 390px); margin-inline: -15px; }
  .project-card { width: calc(100% - 38px); height: calc(100% - 32px); min-height: 0; }
  .project-like { top: 13px; right: 13px; min-width: 66px; min-height: 40px; padding-inline: 12px; }
  .project-zoom { top: 13px; left: 13px; min-height: 40px; }
  .project-card-content { grid-template-columns: 1fr; padding: 22px; }
  .project-card-content h3 { font-size: 1.35rem; }
  .project-card-content button { justify-self: start; }
  .portfolio-explorer { margin-top: 62px; padding-top: 36px; }
  .portfolio-explorer-heading { gap: 20px; }
  .portfolio-explorer-heading h3 { font-size: clamp(2rem, 9vw, 2.65rem); }
  .portfolio-tabs { margin-top: 30px; }
  .portfolio-cover, .portfolio-cover > div { min-height: 280px; }
  .portfolio-cover::after { background: linear-gradient(to top, rgba(5,17,25,.9), rgba(5,17,25,.08) 78%); }
  .portfolio-grid, .social-assets-grid { grid-template-columns: 1fr; }
  .portfolio-card:first-child { grid-column: auto; }
  .portfolio-card:first-child .portfolio-card-image { aspect-ratio: 4 / 3; }
  .portfolio-card-copy { grid-template-columns: 1fr; gap: 8px; }
  .portfolio-card-copy button { justify-self: start; font-size: .74rem; }
  .projects-hub-cta { grid-template-columns: 1fr; gap: 20px; margin-top: 52px; padding: 28px 0; }
  .projects-hub-cta .button { width: 100%; justify-content: space-between; }
  .media-lightbox-shell { grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 8px; padding: 16px 8px; }
  .media-lightbox img { max-height: calc(100dvh - 150px); }
  .media-lightbox figcaption { grid-template-columns: 1fr auto; gap: 10px; font-size: .74rem; }
  .media-lightbox figcaption a { grid-column: 1 / -1; justify-content: center; }
  .media-lightbox-close { top: 12px; right: 12px; width: 44px; height: 44px; background: rgba(7,17,25,.76); }
  .media-lightbox-arrow { width: 42px; height: 42px; }
  .project-carousel-controls { grid-template-columns: auto 1fr auto; gap: 10px; }
  .carousel-dots { justify-content: center; }
  .carousel-status { grid-column: 1 / -1; grid-row: 2; justify-content: center; }
  .process-section { padding-block: 76px; }
  .process-heading { gap: 30px; }
  .process-heading h2 { font-size: clamp(2.25rem, 9.6vw, 2.8rem); }
  .process-manifesto { grid-template-columns: 72px 1fr; gap: 16px; }
  .process-seal { width: 72px; height: 72px; padding: 10px; }
  .process-seal > span { font-size: 1.3rem; }
  .process-map { grid-template-columns: 1fr; gap: 64px; margin-top: 70px; padding-left: 28px; }
  .process-map::after { content: ""; position: absolute; top: -25px; bottom: 25px; left: 0; border-left: 1px solid rgba(143,176,193,.35); }
  .process-step::before { top: -42px; left: -30px; width: 30px; height: 76px; border-top: 1px solid rgba(143,176,193,.35); border-left: 0; }
  .process-node { top: -56px; left: -30px; width: 46px; height: 46px; box-shadow: 0 0 0 6px #071721; }
  .process-card { min-height: 270px; padding: 22px; }
  .process-card h3 { margin: 28px 0 13px; font-size: 1.4rem; }
  .process-card > p { font-size: .84rem; }
  .process-output span { font-size: .62rem; }
  .process-output strong { font-size: .72rem; }
  .process-footnote { grid-template-columns: auto 1fr auto; margin-top: 68px; }
  .process-footnote p { font-size: .64rem; line-height: 1.5; }
  .process-footnote i:nth-of-type(2), .process-footnote span:last-child { display: none; }
  .custom-grid { gap: 50px; }
  .custom-copy > p:not(.section-index) { margin: 22px 0; font-size: .94rem; line-height: 1.65; }
  .custom-copy .button { width: 100%; justify-content: space-between; }
  .contact-details { grid-template-columns: 1fr; gap: 15px; margin-top: 32px; }
  .contact-details dd { font-size: .84rem; }
  .catalog-meta dt { font-size: .64rem; }
  .catalog-meta dd { font-size: .84rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-social-gallery { max-width: none; }
  .footer-social-card { grid-template-columns: 62px minmax(0, 1fr); min-height: 62px; }
  .footer-social-card img { width: 62px; height: 62px; }
  .footer-column { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
  .footer-contact { padding-bottom: 4px; }
  .footer-catalog-cta { min-height: 0; align-items: flex-start; flex-direction: column; gap: 10px; margin-top: 0; padding: 20px; }
  .footer-grid > div:not(:first-child) a, .footer-grid > div:not(:first-child) button { min-height: 42px; display: flex; align-items: center; font-size: .82rem; }
  .site-footer { padding-bottom: 42px; }
  .footer-note { align-items: flex-start; flex-direction: column; }
  .developer-credit { margin-right: 0; }
  .project-carousel-controls { padding-right: 64px; }
  .whatsapp-float { display: none; }
  .mobile-quick-nav { position: fixed; z-index: 45; right: 8px; bottom: max(8px, env(safe-area-inset-bottom)); left: 8px; min-height: 58px; display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: rgba(7,17,25,.96); color: white; box-shadow: 0 18px 44px rgba(7,17,25,.3); backdrop-filter: blur(18px); }
  .mobile-quick-nav a, .mobile-quick-nav button { position: relative; min-width: 0; min-height: 58px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 6px 3px; border: 0; background: transparent; color: #c4d0d6; font-size: .58rem; font-weight: 650; cursor: pointer; }
  .mobile-quick-nav > * + * { border-left: 1px solid rgba(255,255,255,.09); }
  .mobile-quick-nav span { color: #8fb2c4; font-size: 1.04rem; line-height: 1; }
  .mobile-quick-nav a[aria-current="page"] { background: rgba(255,255,255,.09); color: white; }
  .mobile-quick-nav a[aria-current="page"] span { color: white; }
  .cart-drawer { padding: 22px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .form-grid label { font-size: .75rem; }
  .form-grid input, .form-grid textarea { font-size: .9rem; }
  .quote-sheet { bottom: max(8px, env(safe-area-inset-bottom)); }
  .quote-sheet-content { padding-bottom: calc(20px + env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-frame-image { transform: none; transition: opacity .2s ease-out; }
  .hero-frame-image.is-active { animation: none !important; }
  .hero-progress { display: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .hero-visual, .hero-copy > * { clip-path: none; transform: none; animation: mobile-hero-fade .2s ease-out both !important; }
}

.consent-banner[hidden], .consent-settings[hidden] { display: none !important; }
.consent-banner { position: fixed; z-index: 140; right: 0; bottom: 0; left: 0; padding: 18px max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left)); background: rgba(4, 14, 21, .96); color: white; box-shadow: 0 -18px 60px rgba(4, 14, 21, .28); backdrop-filter: blur(18px); }
.consent-banner-panel { width: min(1180px, 100%); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 28px 64px; }
.consent-copy { max-width: 760px; }
.consent-kicker { margin: 0 0 7px; color: #9eb9c7; font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.consent-copy h2 { max-width: none; color: white; font-size: clamp(1.45rem, 2.2vw, 2.1rem); letter-spacing: -.035em; }
.consent-copy p:last-child { margin: 11px 0 0; color: #c4d0d6; font-size: .78rem; line-height: 1.62; }
.consent-actions { display: flex; align-items: center; gap: 10px; }
.consent-button { min-height: 46px; padding: 0 17px; border: 1px solid rgba(255,255,255,.3); border-radius: 3px; cursor: pointer; font-size: .72rem; font-weight: 700; transition: background .2s, border-color .2s, color .2s, transform .2s; }
.consent-button-primary { border-color: white; background: white; color: var(--abyss); }
.consent-button-secondary { background: transparent; color: white; }
.consent-settings { position: fixed; z-index: 52; bottom: 14px; left: 14px; min-height: 38px; display: inline-flex; align-items: center; gap: 7px; padding: 0 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(7,17,25,.94); color: white; box-shadow: 0 8px 28px rgba(7,17,25,.22); cursor: pointer; font-size: .65rem; font-weight: 700; backdrop-filter: blur(12px); }
@media (hover: hover) and (pointer: fine) {
  .consent-button:hover, .consent-settings:hover { transform: translateY(-2px); }
  .consent-button-secondary:hover { border-color: white; background: rgba(255,255,255,.08); }
}
@media (max-width: 600px) {
  .consent-banner { max-height: min(78svh, 620px); overflow-y: auto; padding-top: 22px; }
  .consent-banner-panel { grid-template-columns: 1fr; gap: 20px; }
  .consent-copy h2 { font-size: 1.65rem; }
  .consent-copy p:last-child { font-size: .76rem; }
  .consent-actions { flex-direction: column-reverse; align-items: stretch; }
  .consent-button { width: 100%; min-height: 48px; }
  .consent-settings { bottom: calc(76px + env(safe-area-inset-bottom)); }
}
