:root {
  --paper: #f4f0e7;
  --paper-2: #eae3d6;
  --ink: #18151c;
  --ink-2: #312c36;
  --white: #fffdf8;
  --blue: #315bff;
  --blue-dark: #1c3cc7;
  --magenta: #f72585;
  --cyan: #42e8e0;
  --yellow: #dfff38;
  --green: #25d366;
  --line: rgba(24, 21, 28, .15);
  --muted: #6e6873;
  --radius: 22px;
  --max: 1440px;
  --display: "Space Grotesk", system-ui, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--body); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { background: var(--yellow); color: var(--ink); }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--ink); color: #fff; padding: 12px 18px; }
.skip-link:focus { top: 16px; }
.ink-noise { position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .035; 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='.8'/%3E%3C/svg%3E"); }

.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; width: min(calc(100% - 32px), var(--max)); min-height: 76px; margin: 14px auto 0; border: 1px solid transparent; border-radius: 18px; padding: 10px 12px 10px 18px; transition: background .3s, border-color .3s, box-shadow .3s, transform .3s; }
.topbar.is-scrolled { border-color: rgba(24,21,28,.12); background: rgba(255,253,248,.88); box-shadow: 0 14px 44px rgba(24,21,28,.11); backdrop-filter: blur(18px); }
.logo { display: inline-flex; align-items: center; }
.logo img { width: 142px; height: auto; display: block; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(18px,3vw,42px); font-size: .92rem; font-weight: 600; }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; background: var(--blue); transition: right .25s; }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { font-size: .86rem; font-weight: 700; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 52px; border: 0; border-radius: 12px; padding: 0 22px; cursor: pointer; font-family: var(--display); font-weight: 700; transition: transform .2s, background .2s, color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 1.1em; transition: transform .2s; }
.button:hover span { transform: translate(2px,-2px); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: var(--blue); box-shadow: 0 12px 30px rgba(49,91,255,.25); }
.button-blue { background: var(--blue); color: #fff; }
.button-blue:hover { background: var(--blue-dark); box-shadow: 0 12px 30px rgba(49,91,255,.28); }
.button-acid { background: var(--yellow); color: var(--ink); }
.button-acid:hover { background: #efff88; box-shadow: 0 12px 30px rgba(223,255,56,.2); }
.button-large { min-height: 64px; padding-inline: 30px; font-size: 1.03rem; }
.button-full { width: 100%; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); padding: 12px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 4px 0; background: var(--ink); transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 45; display: grid; align-content: center; background: var(--ink); color: #fff; padding: 110px 24px 32px; }
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; width: min(100%,600px); margin-inline: auto; }
.mobile-menu nav a { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid rgba(255,255,255,.17); padding: 16px 0; font-family: var(--display); font-size: clamp(1.8rem,8vw,3.2rem); font-weight: 600; }
.mobile-menu nav span { color: var(--cyan); font-family: var(--body); font-size: .75rem; }
.menu-whatsapp { justify-self: center; margin-top: 34px; border-bottom: 1px solid var(--green); color: var(--green); font-weight: 700; }
.menu-open .topbar { border-color: transparent; background: transparent; box-shadow: none; }
.menu-open .logo { border-radius: 10px; background: var(--white); padding: 5px 8px; }

.section { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; padding-block: clamp(80px,10vw,150px); scroll-margin-top: 100px; }
.eyebrow { margin: 0 0 12px; color: var(--blue); font-size: .77rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow.light { color: var(--cyan); }
.section-number { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 24px; border: 1px solid var(--line); border-radius: 50%; font-family: var(--display); font-size: .75rem; }
.section-intro { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.48fr); gap: 60px; align-items: end; margin-bottom: 52px; }
.section h2 { margin: 0; font-family: var(--display); font-size: clamp(2.8rem,5.4vw,5.7rem); line-height: .94; letter-spacing: -.065em; }
.section-lead { max-width: 510px; margin: 0; color: var(--muted); font-size: clamp(1rem,1.5vw,1.2rem); line-height: 1.65; }

.hero { display: grid; grid-template-columns: minmax(0,.82fr) minmax(480px,1fr); gap: clamp(34px,6vw,100px); align-items: center; min-height: 850px; width: min(calc(100% - 40px), var(--max)); margin-inline: auto; padding: 130px 20px 70px; }
.hero-copy { position: relative; z-index: 2; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,253,248,.5); padding: 8px 13px; font-size: .78rem; font-weight: 600; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 0 5px rgba(247,37,133,.12); animation: pulse 2s infinite; }
.hero h1 { margin: 0; font-family: var(--display); font-size: clamp(4.2rem,7vw,7.8rem); line-height: .84; letter-spacing: -.075em; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-copy > p { max-width: 590px; margin: 30px 0 0; color: var(--muted); font-size: clamp(1.05rem,1.4vw,1.25rem); line-height: 1.62; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.inline-link { display: inline-flex; gap: 12px; align-items: center; border-bottom: 1px solid var(--ink); padding: 8px 0; font-weight: 700; }
.inline-link span { color: var(--blue); }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 42px; }
.mini-stack { display: flex; padding-left: 9px; }
.mini-stack img { width: 38px; height: 38px; margin-left: -9px; border: 3px solid var(--paper); border-radius: 50%; object-fit: cover; }
.hero-proof p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.35; }
.hero-proof strong { color: var(--ink); }

.hero-studio { position: relative; min-height: 650px; isolation: isolate; }
.hero-studio::before { content: ""; position: absolute; inset: 6% 0 0 4%; z-index: -2; border-radius: 50% 44% 56% 42%; background: var(--blue); transform: rotate(-5deg); }
.hero-studio::after { content: ""; position: absolute; inset: 11% 5% 7% 0; z-index: -1; border: 1px solid rgba(24,21,28,.16); border-radius: 42% 58% 45% 55%; transform: rotate(7deg); }
.registration-marks { position: absolute; inset: 9% 2% 5%; display: flex; flex-wrap: wrap; align-content: space-between; justify-content: space-between; color: #fff; font-size: 1.8rem; font-weight: 300; pointer-events: none; }
.registration-marks span { width: 50%; }
.registration-marks span:nth-child(even) { text-align: right; }
.hero-product-card { position: absolute; left: 11%; top: 9%; width: 72%; height: 76%; overflow: hidden; border: 12px solid var(--white); border-radius: 28px; background: var(--white); box-shadow: 0 30px 80px rgba(24,21,28,.25); transform: rotate(3deg); transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.hero-product-card.is-changing { transform: rotate(-2deg) scale(.96); }
.hero-product-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .22s, transform .45s; }
.hero-product-card.is-changing img { opacity: .25; transform: scale(1.08); }
.stage-label { position: absolute; left: 14px; top: 14px; z-index: 2; border-radius: 999px; background: var(--ink); color: #fff; padding: 8px 12px; font-size: .75rem; font-weight: 700; }
.stage-price { position: absolute; right: 14px; bottom: 14px; z-index: 2; display: grid; border-radius: 12px; background: var(--yellow); padding: 11px 14px; transform: rotate(-3deg); }
.stage-price small { font-size: .68rem; }
.stage-price strong { font-family: var(--display); font-size: 1.25rem; }
.floating-swatch { position: absolute; z-index: 3; display: grid; place-items: center; width: 54px; height: 54px; border: 5px solid var(--white); border-radius: 50%; font-family: var(--display); font-weight: 700; box-shadow: 0 10px 24px rgba(24,21,28,.18); animation: float 5s ease-in-out infinite; }
.swatch-magenta { right: 1%; top: 18%; background: var(--magenta); color: #fff; }
.swatch-cyan { left: 1%; bottom: 20%; background: var(--cyan); animation-delay: -1.6s; }
.swatch-yellow { right: 4%; bottom: 16%; background: var(--yellow); animation-delay: -3s; }
.hero-switcher { position: absolute; left: 5%; right: 1%; bottom: -7px; z-index: 5; display: grid; grid-template-columns: repeat(5,1fr); gap: 4px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,253,248,.92); padding: 5px; box-shadow: 0 18px 50px rgba(24,21,28,.14); backdrop-filter: blur(14px); }
.hero-switcher button { min-height: 44px; border: 0; border-radius: 10px; background: transparent; cursor: pointer; font-size: .78rem; font-weight: 700; }
.hero-switcher button[aria-selected="true"] { background: var(--ink); color: #fff; }
.hero-orbit { position: absolute; z-index: -3; border: 1px dashed rgba(24,21,28,.25); border-radius: 50%; animation: spin 20s linear infinite; }
.orbit-one { inset: 2% -3% 3% 3%; }
.orbit-two { inset: 16% 9% 10% -8%; animation-direction: reverse; animation-duration: 28s; }

.trust-rail { overflow: hidden; border-block: 1px solid var(--line); background: var(--ink); color: #fff; transform: rotate(-1deg) scale(1.02); }
.rail-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.rail-track span { display: inline-flex; align-items: center; min-height: 58px; padding: 0 28px; font-family: var(--display); font-size: .92rem; white-space: nowrap; }
.rail-track span::first-letter { color: var(--yellow); }

.catalog-toolbar { display: grid; grid-template-columns: minmax(320px,.65fr) 1fr; gap: 20px; align-items: center; margin-bottom: 28px; }
.catalog-search { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); padding: 0 16px; }
.catalog-search svg { width: 21px; fill: none; stroke: var(--ink); stroke-width: 1.7; }
.catalog-search input { width: 100%; min-height: 56px; border: 0; outline: 0; background: transparent; }
.filter-list { display: flex; justify-content: flex-end; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.filter-list::-webkit-scrollbar { display: none; }
.filter-list button { flex: 0 0 auto; min-height: 44px; border: 1px solid var(--line); border-radius: 999px; background: transparent; padding: 0 16px; cursor: pointer; font-size: .82rem; font-weight: 700; transition: .2s; }
.filter-list button:hover, .filter-list button.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.product-card { position: relative; grid-column: span 4; min-height: 500px; overflow: hidden; border: 0; border-radius: var(--radius); background: var(--white); padding: 0; cursor: pointer; text-align: left; box-shadow: 0 1px 0 var(--line); animation: cardIn .35s both; }
.product-card.is-wide { grid-column: span 8; }
.product-card.is-small { grid-column: span 3; min-height: 430px; }
.product-card-media { position: relative; height: 72%; overflow: hidden; background: #e8e4dc; }
.product-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.product-card:hover img { transform: scale(1.055); }
.product-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 60%,rgba(24,21,28,.15)); }
.product-badge { position: absolute; left: 14px; top: 14px; z-index: 2; border-radius: 999px; background: var(--yellow); padding: 7px 10px; font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.product-arrow { position: absolute; right: 14px; top: 14px; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,253,248,.9); font-size: 1.15rem; transition: transform .25s, background .25s; }
.product-card:hover .product-arrow { background: var(--blue); color: #fff; transform: rotate(45deg); }
.product-info { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; padding: 18px; }
.product-info small { display: block; margin-bottom: 4px; color: var(--muted); font-size: .72rem; text-transform: uppercase; }
.product-info strong { display: block; font-family: var(--display); font-size: clamp(1.1rem,1.5vw,1.45rem); letter-spacing: -.03em; }
.product-price { color: var(--blue); font-weight: 700; text-align: right; }
.empty-state { display: grid; justify-items: center; border: 1px dashed var(--line); border-radius: var(--radius); padding: 70px 20px; text-align: center; }
.empty-state span { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--yellow); font-family: var(--display); font-size: 1.7rem; }
.empty-state h3 { margin: 16px 0 6px; font-family: var(--display); font-size: 1.8rem; }
.empty-state p { margin: 0 0 20px; color: var(--muted); }
.noscript-message { border: 1px solid var(--line); padding: 20px; }

.quote-lab { width: 100%; max-width: none; background: var(--ink); padding-inline: max(20px,calc((100vw - var(--max))/2)); color: #fff; }
.lab-shell { display: grid; grid-template-columns: minmax(0,1fr) minmax(440px,.82fr); gap: clamp(30px,5vw,80px); align-items: stretch; }
.lab-visual { align-self: center; border: 1px solid rgba(255,255,255,.13); border-radius: 26px; background: #242029; padding: 16px; box-shadow: 0 34px 90px rgba(0,0,0,.3); }
.lab-header { display: flex; justify-content: space-between; padding: 5px 6px 16px; color: rgba(255,255,255,.58); font-size: .72rem; text-transform: uppercase; }
.lab-canvas { position: relative; min-height: 500px; overflow: hidden; border-radius: 18px; background: var(--blue); }
.canvas-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.13) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.13) 1px,transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(to bottom,rgba(0,0,0,.8),transparent); }
.lab-canvas img { position: absolute; inset: 10% 9% 12%; width: 82%; height: 78%; object-fit: cover; border: 10px solid var(--white); border-radius: 12px; box-shadow: 0 24px 50px rgba(0,0,0,.26); transform: rotate(-4deg); transition: opacity .2s, transform .5s; }
.lab-canvas.is-changing img { opacity: .25; transform: rotate(2deg) scale(.96); }
.canvas-sticker { position: absolute; right: 5%; top: 8%; z-index: 2; display: grid; place-items: center; width: 118px; height: 118px; border-radius: 50%; background: var(--yellow); color: var(--ink); font-family: var(--display); font-size: 1.25rem; font-weight: 700; line-height: .9; text-align: center; transform: rotate(9deg); }
.canvas-code { position: absolute; left: 18px; bottom: 14px; color: #fff; font-size: .66rem; letter-spacing: .14em; }
.lab-summary { display: grid; grid-template-columns: 1fr auto; gap: 6px 18px; padding: 18px 6px 4px; }
.lab-summary span { color: var(--cyan); font-size: .72rem; text-transform: uppercase; }
.lab-summary strong { grid-column: 1; font-family: var(--display); font-size: 1.4rem; }
.lab-summary small { grid-column: 2; grid-row: 1 / 3; align-self: center; color: rgba(255,255,255,.6); }
.quote-wizard { display: flex; flex-direction: column; min-height: 0; }
.wizard-top { display: flex; justify-content: space-between; gap: 30px; align-items: end; }
.wizard-top h2 { font-size: clamp(2.5rem,4.5vw,5rem); }
.wizard-intro { max-width: 560px; margin: 12px 0 28px; color: rgba(255,255,255,.6); line-height: 1.6; }
.wizard-counter { display: inline-flex; align-items: baseline; color: rgba(255,255,255,.44); font-family: var(--display); font-size: 1.2rem; }
.wizard-counter b { color: var(--yellow); font-size: 2.2rem; }
.progress-track { height: 2px; margin: 30px 0 38px; background: rgba(255,255,255,.14); }
.progress-track span { display: block; width: 33.333%; height: 100%; background: var(--yellow); transition: width .35s; }
.wizard-step { flex: 1; }
.wizard-step[hidden] { display: none; }
.wizard-step fieldset { display: grid; gap: 18px; min-width: 0; margin: 0; border: 0; padding: 0; }
.wizard-step legend { margin-bottom: 20px; font-family: var(--display); font-size: 1.25rem; font-weight: 600; }
.optional-label { color: rgba(255,255,255,.42); font-weight: 400; }
.choice-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.choice-card { position: relative; display: flex; gap: 12px; align-items: center; min-height: 78px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; background: rgba(255,255,255,.04); padding: 10px; cursor: pointer; transition: .2s; }
.choice-card:hover, .choice-card.is-selected { border-color: var(--yellow); background: rgba(223,255,56,.08); }
.choice-card img { width: 58px; height: 58px; border-radius: 9px; object-fit: cover; }
.choice-card strong, .choice-card small { display: block; }
.choice-card strong { font-family: var(--display); font-size: .9rem; }
.choice-card small { margin-top: 3px; color: rgba(255,255,255,.54); font-size: .72rem; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.quote-wizard label { display: grid; gap: 8px; color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 600; }
.quote-wizard input:not([type="checkbox"]), .quote-wizard select, .quote-wizard textarea { width: 100%; min-height: 54px; border: 1px solid rgba(255,255,255,.17); border-radius: 11px; background: rgba(255,255,255,.06); color: #fff; padding: 13px 14px; outline: 0; }
.quote-wizard select { color-scheme: dark; }
.quote-wizard textarea { resize: vertical; }
.quote-wizard input:focus, .quote-wizard select:focus, .quote-wizard textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(66,232,224,.12); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.toggle-line { display: flex !important; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; padding: 13px; cursor: pointer; }
.toggle-line input { position: absolute; opacity: 0; }
.toggle-ui { position: relative; flex: 0 0 auto; width: 44px; height: 24px; border-radius: 999px; background: rgba(255,255,255,.18); transition: background .2s; }
.toggle-ui::after { content: ""; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform .2s; }
.toggle-line input:checked + .toggle-ui { background: var(--yellow); }
.toggle-line input:checked + .toggle-ui::after { transform: translateX(20px); background: var(--ink); }
.toggle-line strong, .toggle-line small { display: block; }
.toggle-line small { margin-top: 2px; color: rgba(255,255,255,.5); font-weight: 400; }
.consent { display: flex !important; align-items: flex-start; gap: 10px; }
.consent input { width: 18px; height: 18px; accent-color: var(--yellow); }
.wizard-actions { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-top: 28px; }
.wizard-actions.single-action small { max-width: 290px; color: rgba(255,255,255,.45); line-height: 1.45; }
.back-link { border: 0; background: transparent; color: rgba(255,255,255,.62); cursor: pointer; padding: 12px 0; }
.quote-reference { display: grid; border: 1px solid rgba(223,255,56,.25); border-radius: 14px; background: rgba(223,255,56,.07); margin-top: 20px; padding: 15px; }
.quote-reference span { color: rgba(255,255,255,.58); font-size: .7rem; text-transform: uppercase; }
.quote-reference strong { margin: 3px 0; color: var(--yellow); font-family: var(--display); font-size: 1.35rem; }
.quote-reference small { color: rgba(255,255,255,.5); }
.whatsapp-direct { display: block; margin-top: 16px; color: var(--green); font-weight: 700; text-align: right; }
.form-status { min-height: 24px; margin: 12px 0 0; color: rgba(255,255,255,.7); text-align: right; }
.form-status.success { color: var(--cyan); }
.form-status.error { color: #ff91b8; }

.portfolio { overflow: hidden; width: 100%; max-width: none; padding-inline: max(20px,calc((100vw - var(--max))/2)); }
.portfolio .section-intro { align-items: end; }
.portfolio-controls { display: flex; justify-content: flex-end; gap: 8px; }
.portfolio-controls button { width: 54px; height: 54px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.3rem; transition: .2s; }
.portfolio-controls button:hover { background: var(--ink); color: #fff; }
.work-track { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 14px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.work-track::-webkit-scrollbar { display: none; }
.work-card { position: relative; flex: 0 0 clamp(280px,31vw,470px); height: 480px; overflow: hidden; border: 0; border-radius: var(--radius); background: var(--ink); padding: 0; cursor: zoom-in; scroll-snap-align: start; text-align: left; }
.work-card.work-tall { height: 560px; }
.work-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s; }
.work-card:hover img { transform: scale(1.045); }
.work-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 42%,rgba(24,21,28,.86)); }
.work-card span { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 5px; color: #fff; }
.work-card small { grid-column: 1 / -1; color: var(--cyan); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.work-card strong { font-family: var(--display); font-size: 1.45rem; }
.work-card b { align-self: end; font-size: .75rem; }

.process { display: grid; grid-template-columns: minmax(320px,.7fr) minmax(0,1fr); gap: clamp(50px,8vw,130px); align-items: start; }
.process-sticky { position: sticky; top: 130px; }
.process-sticky > p:not(.eyebrow) { max-width: 420px; color: var(--muted); line-height: 1.65; }
.process-sticky .button { margin-top: 20px; }
.process-list { display: grid; }
.process-list article { display: grid; grid-template-columns: 48px 1fr auto; gap: 24px; align-items: start; border-top: 1px solid var(--line); padding: 36px 0 48px; }
.process-list article:last-child { border-bottom: 1px solid var(--line); }
.process-list article > span { color: var(--blue); font-family: var(--display); font-size: .75rem; }
.process-list h3 { margin: 0 0 10px; font-family: var(--display); font-size: clamp(1.65rem,2.7vw,2.7rem); letter-spacing: -.045em; }
.process-list p { max-width: 570px; margin: 0; color: var(--muted); line-height: 1.6; }
.process-list b { color: var(--magenta); font-size: 1.5rem; }

.faq { display: grid; grid-template-columns: minmax(300px,.6fr) 1fr; gap: clamp(50px,8vw,130px); border-top: 1px solid var(--line); }
.faq-title { position: sticky; top: 130px; align-self: start; }
.faq-title a { display: inline-block; margin-top: 28px; border-bottom: 1px solid var(--ink); font-weight: 700; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 26px 0; cursor: pointer; list-style: none; font-family: var(--display); font-size: clamp(1.05rem,1.8vw,1.4rem); font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; transition: transform .25s,background .25s; }
.faq-list details[open] summary span { background: var(--yellow); transform: rotate(45deg); }
.faq-list details p { max-width: 650px; margin: -6px 50px 26px 0; color: var(--muted); line-height: 1.65; }

.closing-cta { position: relative; display: grid; justify-items: center; overflow: hidden; width: min(calc(100% - 40px),var(--max)); min-height: 620px; align-content: center; border-radius: 32px; background: var(--blue); color: #fff; text-align: center; }
.closing-cta::before, .closing-cta::after { content: ""; position: absolute; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
.closing-cta::before { left: -90px; top: -110px; }
.closing-cta::after { right: -80px; bottom: -130px; }
.closing-cta p { margin: 0 0 18px; color: var(--cyan); font-weight: 700; }
.closing-cta h2 { position: relative; z-index: 2; margin-bottom: 34px; font-size: clamp(4rem,9vw,9rem); }
.closing-cta h2 em { color: var(--yellow); font-style: normal; }
.closing-marks { position: absolute; inset: 22px; display: flex; justify-content: space-between; align-items: flex-start; color: rgba(255,255,255,.55); font-family: var(--display); }
.closing-marks span:nth-child(2) { color: #ff86bd; }
.closing-marks span:nth-child(3) { color: var(--yellow); }

footer { width: min(calc(100% - 40px),var(--max)); margin: 100px auto 0; padding-bottom: 30px; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start; border-top: 1px solid var(--line); padding: 50px 0; }
.footer-logo img { width: 160px; }
.footer-main > p { margin: 0; color: var(--muted); line-height: 1.55; }
.footer-contact { display: grid; justify-items: end; gap: 8px; font-weight: 600; }
.footer-contact span { color: var(--muted); font-weight: 400; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); padding-top: 22px; color: var(--muted); font-size: .78rem; }

.product-dialog { width: min(920px,calc(100% - 28px)); max-height: min(760px,calc(100vh - 28px)); border: 0; border-radius: 24px; background: var(--white); padding: 0; color: var(--ink); box-shadow: 0 30px 90px rgba(24,21,28,.32); }
.product-dialog[open] { display: grid; grid-template-columns: 1fr .86fr; animation: dialogIn .25s both; }
.product-dialog::backdrop, .lightbox::backdrop { background: rgba(24,21,28,.72); backdrop-filter: blur(8px); }
.dialog-close { position: absolute; right: 14px; top: 14px; z-index: 3; display: grid; place-items: center; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--white); cursor: pointer; font-size: 1.5rem; }
.dialog-media { position: relative; min-height: 590px; background: var(--paper-2); }
.dialog-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dialog-media span { position: absolute; left: 16px; top: 16px; border-radius: 999px; background: var(--yellow); padding: 7px 10px; font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.dialog-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px,4vw,54px); }
.dialog-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(2.2rem,4vw,4rem); line-height: .94; letter-spacing: -.06em; }
.dialog-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.55; }
.dialog-price { display: grid; margin: 15px 0; border-block: 1px solid var(--line); padding: 15px 0; }
.dialog-price span { color: var(--muted); font-size: .72rem; text-transform: uppercase; }
.dialog-price strong { color: var(--blue); font-family: var(--display); font-size: 1.5rem; }
.dialog-copy label:not(.toggle-line) { display: grid; gap: 7px; font-size: .82rem; font-weight: 700; }
.dialog-copy input[type="number"] { width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 10px; padding: 10px 13px; }
.dialog-copy .toggle-line { margin: 12px 0; border-color: var(--line); color: var(--ink); }
.dialog-copy .toggle-ui { background: rgba(24,21,28,.14); }
.dialog-copy > small { margin-top: 10px; color: var(--muted); text-align: center; }
.lightbox { width: min(1060px,calc(100% - 28px)); max-height: calc(100vh - 28px); border: 0; border-radius: 20px; background: var(--ink); padding: 12px; color: #fff; }
.lightbox[open] { animation: dialogIn .25s both; }
.lightbox button { position: absolute; right: 22px; top: 22px; z-index: 2; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--white); cursor: pointer; font-size: 1.5rem; }
.lightbox figure { display: grid; margin: 0; }
.lightbox img { width: 100%; max-height: calc(100vh - 110px); border-radius: 12px; object-fit: contain; }
.lightbox figcaption { padding: 12px 5px 2px; font-family: var(--display); font-size: 1.1rem; }
.mobile-dock { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s,transform .65s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(247,37,133,.14); } 50% { box-shadow: 0 0 0 9px rgba(247,37,133,0); } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-14px) rotate(5deg); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes cardIn { from { opacity: 0; transform: translateY(14px); } }
@keyframes dialogIn { from { opacity: 0; transform: translateY(18px) scale(.98); } }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .topbar { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .header-phone { display: none; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(3.8rem,7vw,6rem); }
  .product-card { grid-column: span 6; }
  .product-card.is-wide { grid-column: span 6; }
  .product-card.is-small { grid-column: span 6; }
  .lab-shell { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .section { width: min(calc(100% - 28px),var(--max)); padding-block: 80px; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 34px; }
  .hero { grid-template-columns: 1fr; width: min(calc(100% - 28px),var(--max)); padding-top: 130px; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-studio { min-height: 590px; }
  .catalog-toolbar { grid-template-columns: 1fr; }
  .filter-list { justify-content: flex-start; }
  .lab-shell { grid-template-columns: 1fr; }
  .lab-visual { max-width: 650px; }
  .quote-wizard { min-height: 0; }
  .process, .faq { grid-template-columns: 1fr; gap: 50px; }
  .process-sticky, .faq-title { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 2; grid-row: 1 / 3; }
}

@media (max-width: 620px) {
  body { padding-bottom: 76px; }
  .topbar { width: calc(100% - 20px); min-height: 66px; margin-top: 10px; padding: 8px 8px 8px 13px; }
  .topbar .button { display: none; }
  .logo img { width: 128px; }
  .hero { display: block; min-height: 0; padding: 112px 0 55px; }
  .hero-copy { text-align: left; }
  .hero-kicker { margin-bottom: 20px; }
  .hero h1 { font-size: clamp(3.6rem,17vw,5.1rem); }
  .hero-copy > p { margin-top: 22px; font-size: 1rem; }
  .hero-actions { display: grid; justify-content: stretch; gap: 10px; }
  .hero-actions .button { width: 100%; }
  .inline-link { justify-self: start; }
  .hero-proof { justify-content: flex-start; margin-top: 26px; }
  .hero-studio { min-height: 455px; margin-top: 38px; }
  .hero-product-card { left: 8%; width: 78%; border-width: 8px; }
  .floating-swatch { width: 44px; height: 44px; border-width: 4px; }
  .hero-switcher { left: 0; right: 0; overflow-x: auto; grid-template-columns: repeat(5,minmax(92px,1fr)); }
  .trust-rail { transform: rotate(-1deg) scale(1.04); }
  .section h2 { font-size: clamp(2.8rem,13vw,4.4rem); }
  .catalog-search input { min-width: 0; font-size: .88rem; }
  .product-grid { display: flex; gap: 12px; margin-inline: -14px; padding-inline: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .product-grid::-webkit-scrollbar { display: none; }
  .product-card, .product-card.is-wide, .product-card.is-small { flex: 0 0 82vw; min-height: 450px; scroll-snap-align: center; }
  .quote-lab { padding-inline: 14px; }
  .lab-canvas { min-height: 360px; }
  .canvas-sticker { width: 86px; height: 86px; font-size: .95rem; }
  .lab-summary { grid-template-columns: 1fr; }
  .lab-summary small { grid-column: 1; grid-row: auto; }
  .wizard-top h2 { font-size: 2.65rem; }
  .choice-grid, .field-grid { grid-template-columns: 1fr; }
  .wizard-actions.single-action { align-items: stretch; flex-direction: column; }
  .wizard-actions.single-action small { max-width: none; }
  .wizard-actions .button { min-width: 145px; padding-inline: 16px; }
  .work-card, .work-card.work-tall { flex-basis: 82vw; height: 460px; }
  .portfolio-controls { justify-content: flex-start; }
  .process-list article { grid-template-columns: 34px 1fr; gap: 14px; }
  .process-list article b { display: none; }
  .faq-list summary { font-size: 1.05rem; }
  .closing-cta { width: calc(100% - 20px); min-height: 520px; border-radius: 24px; }
  .closing-cta h2 { font-size: clamp(4rem,18vw,6rem); }
  footer { width: calc(100% - 28px); margin-top: 70px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-contact { grid-column: 1; grid-row: auto; justify-items: start; }
  .footer-bottom { display: grid; }
  .product-dialog[open] { display: block; overflow-y: auto; }
  .dialog-media { min-height: 300px; height: 40vh; }
  .dialog-copy { padding: 26px 20px; }
  .mobile-dock { position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 40; display: grid; grid-template-columns: .7fr 1fr; gap: 8px; border: 1px solid rgba(255,255,255,.65); border-radius: 16px; background: rgba(255,253,248,.9); padding: 7px; box-shadow: 0 18px 45px rgba(24,21,28,.2); backdrop-filter: blur(16px); }
  .mobile-dock a, .mobile-dock button { display: grid; place-items: center; min-height: 48px; border: 0; border-radius: 11px; font-weight: 700; }
  .mobile-dock a { background: var(--paper-2); }
  .mobile-dock button { background: var(--blue); color: #fff; }
}

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