/*!
 * XKLA — estilos públicos.
 * Designed and developed by Luis Koepke — https://www.luiskoepke.com
 * © 2026 Luis Koepke. Todos los derechos reservados.
 */
/* Studio · front-end. Tokens come from Dashboard → Appearance (see #sa-tokens in <head>):
   --sa-font-family and --sa-display-family are injected there from settings, never hardcoded here. */
:root {
	--sa-font: var(--sa-font-family, -apple-system), BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--sa-display: var(--sa-display-family, var(--sa-font-family, -apple-system)), BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--sa-ease: cubic-bezier(.19, 1, .22, 1);
	--sa-ease-io: cubic-bezier(.65, 0, .35, 1);
	--sa-gutter: clamp(16px, 4vw, 72px);
	--sa-max: 1680px;
	--sa-radius: clamp(10px, 1vw, 18px);
	--sa-gap: clamp(12px, 1.6vw, 28px);
	--sa-section: clamp(64px, 11vw, 200px);
	--sa-logo: currentColor;
}
@media (min-width: 2200px) { :root { --sa-max: 2160px; } }
@media (min-width: 3200px) { :root { --sa-max: 2600px; } }

html.sa-scroll-colored body { background-color: var(--sa-page-bg); color: var(--sa-page-ink); }
body.sa-site { transition: background-color .9s var(--sa-ease-io), color .9s var(--sa-ease-io); }
html:not(.sa-js) [data-sa-bg] { background-color: var(--sa-sec-bg); }

.sa-container { width: min(100% - 2 * var(--sa-gutter), var(--sa-max)); margin-inline: auto; }
.sa-eyebrow { margin: 0 0 1rem; font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; opacity: .6; }
.sa-empty { opacity: .6; }
.sa-prose { font-size: clamp(16px, 1.05vw + 8px, 22px); line-height: 1.55; }
.sa-prose > * { margin: 0 0 1em; }
.sa-prose > :last-child { margin-bottom: 0; }
.sa-prose a { color: inherit; text-underline-offset: .2em; }
.sa-prose h2, .sa-prose h3 { font-weight: 600; letter-spacing: -.02em; line-height: 1.15; }

/* ---------------------------------------------------------------- Motion states */
.sa-js.sa-motion-on [data-sa-anim]:not(.is-in) { opacity: 0; }
.sa-js.sa-motion-on [data-sa-anim="rise"]:not(.is-in) { transform: translate3d(0, 48px, 0); }
.sa-js.sa-motion-on [data-sa-anim="zoom"]:not(.is-in) { transform: scale(1.06); }
.sa-js.sa-motion-on [data-sa-anim="reveal"]:not(.is-in) { clip-path: inset(12% 6% 12% 6% round var(--sa-radius)); opacity: 1; }
[data-sa-anim].is-in { transition: opacity 1s var(--sa-ease), transform 1.3s var(--sa-ease), clip-path 1.4s var(--sa-ease); transition-delay: var(--sa-delay, 0ms); }
.sa-js.sa-motion-on [data-sa-anim="stagger"]:not(.is-in) { opacity: 1; }
.sa-js.sa-motion-on [data-sa-anim="stagger"]:not(.is-in) > * { opacity: 0; transform: translate3d(0, 28px, 0); }
[data-sa-anim="stagger"] > * { transition: opacity .9s var(--sa-ease), transform 1.1s var(--sa-ease); transition-delay: calc(var(--sa-delay, 0ms) + var(--i, 0) * 70ms); }
/* Split text: words/lines/chars are wrapped by studio.js (aria-label keeps the original text). */
.sa-js.sa-motion-on [data-sa-anim].is-split { opacity: 1; }
.sa-split-o { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.sa-split-i { display: inline-block; transform: translate3d(0, 110%, 0); transition: transform 1.1s var(--sa-ease); transition-delay: calc(var(--sa-delay, 0ms) + var(--i, 0) * var(--sa-step, 40ms)); will-change: transform; }
.is-in .sa-split-i { transform: none; }
.sa-split-line { display: block; }
[data-sa-anim="chars"] { --sa-step: 22ms; }
[data-sa-anim="lines"] { --sa-step: 90ms; }
.elementor-editor-active [data-sa-anim], .elementor-editor-active [data-sa-anim] > *, .elementor-editor-active .sa-split-i { opacity: 1 !important; transform: none !important; clip-path: none !important; }
[data-sa-parallax] { will-change: transform; }

/* ---------------------------------------------------------------- Header adaptivity */
.sa-logo-mask { display: inline-block; background-color: var(--sa-logo); -webkit-mask: var(--sa-logo-url) center / contain no-repeat; mask: var(--sa-logo-url) center / contain no-repeat; transition: background-color .6s var(--sa-ease-io); }
.sa-logo-mask img { opacity: 0 !important; display: block; }
html.sa-header-light { --sa-logo: #f4f4f2; }
html.sa-header-dark { --sa-logo: #0a0a0a; }
body.sa-has-accent { --sa-logo: var(--sa-project-logo); }
/* Header contract — these three classes are added by hand in Elementor (Avanzado → CSS classes).
   They replace the per-site element IDs this file used to target, so the header works on any site:
     .sa-logo      the logo widget
     .sa-nav       the menu panel; gets .is-open (or .open) while the mobile menu is out
     .sa-nav-icon  icon buttons in the header (hamburger, close) whose SVG must invert */
html.sa-header-light header.elementor .sa-nav-icon svg { filter: brightness(0) invert(1); }
header.elementor .sa-nav-icon .elementor-button { background-color: transparent !important; }

/* Header: always on screen. Over photographic zones (.sa-header-difference) it blends with difference so the
   logo and menu read on any tone of the photo; elsewhere it stays monochrome, adapting to the surface below.
   Transparent at every scroll position — a solid bar was tried and rejected: it cuts the page in two. */
header.elementor-location-header { position: sticky; top: var(--wp-admin--admin-bar--height, 0px); z-index: 9000; background: transparent; }
html.sa-header-blend header.elementor-location-header:not(:has(.sa-nav.is-open)):not(:has(.sa-nav.open)) { mix-blend-mode: difference; }
html.sa-header-blend header.elementor-location-header:not(:has(.sa-nav.is-open)):not(:has(.sa-nav.open)) .sa-logo-mask { background-color: #fff !important; }
html.sa-header-blend header.elementor-location-header:not(:has(.sa-nav.is-open)):not(:has(.sa-nav.open)) .sa-nav-icon svg { filter: brightness(0) invert(1); }

/* ---------------------------------------------------------------- Filter */
.sa-filter { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 clamp(20px, 3vw, 48px); }
.sa-filter button { appearance: none; border: 1px solid color-mix(in srgb, currentColor 22%, transparent); background: transparent; color: inherit; font: inherit; font-size: 14px; padding: 9px 16px; border-radius: 999px; cursor: pointer; transition: background .3s, color .3s, border-color .3s; }
.sa-filter button sup { font-size: 10px; opacity: .6; }
.sa-filter button:hover { border-color: currentColor; }
.sa-filter button.is-active { border-color: currentColor; box-shadow: inset 0 0 0 1px currentColor; font-weight: 600; }
.sa-filter button.is-active::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: currentColor; margin-right: 8px; vertical-align: middle; }
.is-filtered-out { display: none !important; }

/* ---------------------------------------------------------------- Steps (project cards + minimap) */
.e-con:has(> .elementor-widget-studio_admin_projects_steps), .e-con:has(> .e-con-inner > .elementor-widget-studio_admin_projects_steps) { display: block !important; }
.sa-steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sa-gap); }
.sa-steps[data-count="1"] { grid-template-columns: 1fr; }
.sa-step { position: relative; display: block; overflow: hidden; border-radius: var(--sa-radius); background: var(--p-bg, #151515); color: #fff; text-decoration: none; aspect-ratio: 3 / 2; isolation: isolate; }
.sa-steps[data-count="1"] .sa-step { aspect-ratio: 16 / 9; }
.sa-step__media, .sa-card__media { position: absolute; inset: 0; }
.sa-step__media img, .sa-step__media video, .sa-card__media img, .sa-card__media video { width: 100%; height: 100%; object-fit: cover; object-position: var(--p-focus, 50% 50%); display: block; transition: transform 1.4s var(--sa-ease); }
.sa-step::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0) 50%); pointer-events: none; }
.sa-step__info { position: absolute; inset: auto 0 0 0; z-index: 1; display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 6px 16px; padding: clamp(16px, 2vw, 36px); }
.sa-step__num { font-size: 12px; letter-spacing: .1em; opacity: .7; align-self: start; padding-top: .9em; }
.sa-step__title { font-size: clamp(26px, 3.2vw, 72px); font-weight: 500; letter-spacing: -.035em; line-height: 1; }
.sa-step__meta { grid-column: 2; font-size: 13px; opacity: .75; }
.sa-step__arrow { grid-column: 3; grid-row: 1 / span 2; width: clamp(40px, 3.4vw, 64px); height: clamp(40px, 3.4vw, 64px); border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .14); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: transform .6s var(--sa-ease), background .4s; }
.sa-step__arrow svg { width: 42%; height: 42%; }
@media (hover: hover) {
	.sa-step:hover .sa-step__media img, .sa-step:hover .sa-step__media video, .sa-card:hover .sa-card__media img, .sa-card:hover .sa-card__media video { transform: scale(1.04); }
	.sa-step:hover .sa-step__arrow { transform: rotate(45deg); background: #fff; color: #000; }
}
@media (max-width: 767px) {
	.sa-steps { grid-template-columns: 1fr; }
	.sa-step, .sa-steps[data-count="1"] .sa-step { aspect-ratio: 4 / 5; }
}
.sa-minimap { position: fixed; top: 50%; right: clamp(8px, 1.2vw, 24px); z-index: 50; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; transform: translate(12px, -50%); opacity: 0; pointer-events: none; transition: opacity .5s, transform .6s var(--sa-ease); mix-blend-mode: difference; color: #fff; }
.sa-minimap.is-visible { opacity: 1; transform: translate(0, -50%); pointer-events: auto; }
.sa-minimap a { display: flex; align-items: center; gap: 8px; color: inherit; text-decoration: none; font-size: 11px; letter-spacing: .06em; padding: 2px 0; }
.sa-minimap a span { opacity: 0; transform: translateX(6px); transition: opacity .3s, transform .4s var(--sa-ease); }
.sa-minimap a i { display: block; height: 1.5px; width: 10px; background: currentColor; opacity: .35; transition: width .5s var(--sa-ease), opacity .3s; }
.sa-minimap a.is-active i { width: 28px; opacity: 1; }
.sa-minimap a.is-active span, .sa-minimap a:hover span { opacity: 1; transform: none; }
@media (max-width: 767px) { .sa-minimap { display: none; } }

/* ---------------------------------------------------------------- Grid cards */
.sa-grid { display: grid; grid-template-columns: repeat(var(--cols, 2), minmax(0, 1fr)); gap: clamp(28px, 3vw, 64px) var(--sa-gap); }
.sa-card { display: block; color: inherit; text-decoration: none; }
.sa-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--sa-radius); background: var(--p-bg, #1a1a1a); }
.sa-card__info { display: grid; grid-template-columns: 1fr auto; gap: 2px 12px; padding-top: 14px; }
.sa-card__title { margin: 0; font-size: clamp(18px, 1.4vw, 28px); font-weight: 500; letter-spacing: -.02em; }
.sa-card__meta { margin: 0; grid-column: 1; font-size: 13px; opacity: .6; }
.sa-card__year { grid-column: 2; grid-row: 1; font-size: 13px; opacity: .6; }
@media (max-width: 767px) { .sa-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- Single project */
body.sa-project-page { background: var(--sa-page-bg, var(--p-bg)); color: var(--sa-page-ink, var(--p-ink)); }
.sa-project { --ink: var(--p-ink, currentColor); color: var(--sa-page-ink, var(--p-ink, inherit)); font-family: var(--sa-font); padding-bottom: 0; }
.sa-p-hero { padding-top: clamp(24px, 4vw, 64px); }
.sa-p-hero__top { display: flex; justify-content: space-between; align-items: center; font-size: 13px; margin-bottom: clamp(40px, 8vw, 140px); }
.sa-p-back { color: inherit; text-decoration: none; opacity: .7; transition: opacity .3s; }
.sa-p-back:hover { opacity: 1; }
.sa-p-back span { display: inline-block; transition: transform .4s var(--sa-ease); }
.sa-p-back:hover span { transform: translateX(-4px); }
.sa-p-index { opacity: .6; letter-spacing: .08em; font-variant-numeric: tabular-nums; }
.sa-p-cats { margin: 0 0 clamp(16px, 2vw, 28px); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .6; }
.sa-p-title { margin: 0; font-size: clamp(48px, 10.5vw, 260px); font-weight: 500; letter-spacing: -.055em; line-height: .9; text-wrap: balance; max-width: 16ch; }
.sa-p-subtitle { margin: clamp(16px, 2vw, 32px) 0 0; font-size: clamp(18px, 1.6vw, 34px); line-height: 1.3; max-width: 38ch; opacity: .8; }
.sa-p-cover { margin: clamp(40px, 7vw, 120px) auto 0; max-width: 2560px; overflow: hidden; }
.sa-p-cover__inner { width: 100%; }
.sa-p-cover img, .sa-p-cover video { display: block; width: 100%; height: auto; }
.sa-p-summary { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 140px); padding: var(--sa-section) 0 calc(var(--sa-section) * .6); }
.sa-p-intro { margin: 0; font-size: clamp(22px, 2.4vw, 54px); line-height: 1.2; letter-spacing: -.025em; font-weight: 400; text-wrap: pretty; }
.sa-p-facts { margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; align-content: start; font-size: clamp(14px, .9vw, 18px); }
.sa-p-facts div { border-top: 1px solid color-mix(in srgb, currentColor 25%, transparent); padding-top: 12px; }
.sa-p-facts dt { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; opacity: .55; margin-bottom: 6px; }
.sa-p-facts dd { margin: 0; line-height: 1.45; }
.sa-p-facts a { color: inherit; }
@media (max-width: 900px) { .sa-p-summary { grid-template-columns: 1fr; } }

.sa-p-blocks { display: flex; flex-direction: column; gap: clamp(16px, 2vw, 40px); }
.sa-b { margin-inline: auto; width: min(100% - 2 * var(--sa-gutter), var(--sa-max)); }
.sa-b[data-sa-bg] { width: 100%; padding: clamp(40px, 7vw, 140px) max(var(--sa-gutter), calc((100% - var(--sa-max)) / 2)); }
.sa-w--narrow { max-width: 820px; }
.sa-w--contained { max-width: 1240px; }
.sa-w--full { width: 100%; max-width: none; }
.sa-b figure { margin: 0; }
.sa-media { position: relative; overflow: hidden; border-radius: var(--sa-radius); background: color-mix(in srgb, currentColor 6%, transparent); }
.sa-w--full .sa-media { border-radius: 0; }
.sa-media img, .sa-media video { display: block; width: 100%; height: auto; }
.sa-media.is-cropped img, .sa-media.is-cropped video { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.sa-caption { margin-top: 12px; font-size: 13px; opacity: .6; }
.sa-gallery { display: grid; grid-template-columns: repeat(var(--cols, 2), minmax(0, 1fr)); gap: var(--sa-gap); }
.sa-gallery[data-gap="none"] { gap: 0; }
.sa-gallery[data-gap="s"] { gap: 8px; }
.sa-gallery[data-gap="l"] { gap: clamp(20px, 3vw, 56px); }
.sa-gallery[data-gap="none"] .sa-media { border-radius: 0; }
@media (max-width: 767px) { .sa-gallery { grid-template-columns: repeat(min(var(--cols, 2), 2), minmax(0, 1fr)); } .sa-gallery[style*="--cols:3"], .sa-gallery[style*="--cols:4"] { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.sa-b--text { padding-block: clamp(40px, 8vw, 160px); }
.sa-text { display: grid; gap: clamp(16px, 2vw, 32px); }
.sa-text__heading { margin: 0; font-size: clamp(28px, 3.6vw, 88px); line-height: 1.02; letter-spacing: -.04em; font-weight: 500; text-wrap: balance; }
.sa-size--m .sa-text__heading { font-size: clamp(24px, 2.4vw, 56px); }
.sa-size--xl .sa-text__heading { font-size: clamp(36px, 6vw, 150px); }
.sa-text--center { text-align: center; justify-items: center; max-width: 1100px; margin-inline: auto; }
.sa-text--center .sa-text__body { max-width: 62ch; }
.sa-text--left .sa-text__body { max-width: 62ch; }
.sa-text--split, .sa-text--sticky { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(24px, 6vw, 140px); align-items: start; }
.sa-text--sticky .sa-text__head { position: sticky; top: clamp(24px, 12vh, 140px); }
@media (max-width: 900px) { .sa-text--split, .sa-text--sticky { grid-template-columns: 1fr; } .sa-text--sticky .sa-text__head { position: static; } }
.sa-quote { margin: 0; padding-block: clamp(40px, 8vw, 160px); text-align: center; }
.sa-quote p { margin: 0 auto; max-width: 22ch; font-size: clamp(30px, 5vw, 120px); line-height: 1.02; letter-spacing: -.045em; font-weight: 500; text-wrap: balance; }
.sa-quote p::before { content: "“"; } .sa-quote p::after { content: "”"; }
.sa-quote cite { display: block; margin-top: 24px; font-style: normal; font-size: 14px; opacity: .6; }
.sa-split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 5vw, 120px); align-items: center; }
.sa-split--right .sa-split__media { order: 2; }
.sa-split__text .sa-text__heading { margin-bottom: 20px; }
@media (max-width: 900px) { .sa-split { grid-template-columns: 1fr; } .sa-split--right .sa-split__media { order: 0; } }
.sa-palette { display: grid; grid-template-columns: repeat(var(--n), minmax(0, 1fr)); gap: var(--sa-gap); }
.sa-swatch { background: var(--c); color: var(--ci); border-radius: var(--sa-radius); aspect-ratio: 3 / 4; padding: clamp(14px, 1.6vw, 28px); display: flex; flex-direction: column; justify-content: space-between; font-size: 13px; }
.sa-swatch strong { font-size: clamp(16px, 1.3vw, 24px); font-weight: 500; }
.sa-swatch dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; }
.sa-swatch dt { opacity: .6; } .sa-swatch dd { margin: 0; font-variant-numeric: tabular-nums; }
@media (max-width: 767px) { .sa-palette { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.sa-stats { margin: 0; display: grid; grid-template-columns: repeat(var(--n), minmax(0, 1fr)); gap: var(--sa-gap); padding-block: clamp(32px, 6vw, 100px); }
.sa-stats div { border-top: 1px solid color-mix(in srgb, currentColor 25%, transparent); padding-top: 16px; display: flex; flex-direction: column-reverse; gap: 8px; }
.sa-stats dd { margin: 0; font-size: clamp(28px, 3.4vw, 96px); letter-spacing: -.045em; line-height: .95; font-weight: 500; white-space: nowrap; }
.sa-stats dt { font-size: 14px; opacity: .65; }
@media (max-width: 767px) { .sa-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } .sa-stats dd { font-size: 7.4vw; } }
/* Devices: CSS-drawn, monochrome, derived from the page colour so they sit on the project background. */
.sa-device { --dv-line: color-mix(in srgb, currentColor 16%, transparent); --dv-shadow: 0 40px 90px -50px rgba(0, 0, 0, .5); margin: 0; }
.sa-device__browser { position: relative; border-radius: clamp(8px, .8vw, 14px); overflow: hidden; background: color-mix(in srgb, currentColor 7%, transparent); box-shadow: 0 0 0 1px var(--dv-line), var(--dv-shadow); }
.sa-device__bar { display: flex; align-items: center; gap: clamp(5px, .45vw, 8px); height: clamp(22px, 2vw, 34px); padding: 0 clamp(10px, 1vw, 16px); border-bottom: 1px solid var(--dv-line); }
.sa-device__bar i { width: clamp(6px, .55vw, 10px); aspect-ratio: 1; border-radius: 50%; background: color-mix(in srgb, currentColor 26%, transparent); }
.sa-device__browser .sa-device__screen img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.sa-device__phone { flex: none; width: clamp(150px, 22vw, 360px); margin-inline: auto; padding: 2.6%; border-radius: 15% / 7%; background: #0b0b0b; box-shadow: 0 0 0 1px var(--dv-line), var(--dv-shadow); }
.sa-device__phone .sa-device__screen { border-radius: 12.5% / 5.8%; overflow: hidden; background: #000; }
.sa-device__phone .sa-device__screen img { display: block; width: 100%; height: auto; aspect-ratio: 9 / 19.5; object-fit: cover; object-position: top; }
.sa-device__row { display: flex; justify-content: center; gap: clamp(12px, 2.2vw, 44px); }
.sa-device__row .sa-device__phone { width: auto; flex: 0 1 calc((100% - (var(--n) - 1) * clamp(12px, 2.2vw, 44px)) / var(--n)); max-width: 340px; margin: 0; }
.sa-device--combo { position: relative; padding-bottom: 6%; }
.sa-device--combo .sa-device__browser { width: 86%; }
.sa-device--combo .sa-device__phone { position: absolute; right: 0; bottom: 0; width: 21%; max-width: none; }
@media (max-width: 767px) {
	.sa-device__row { justify-content: flex-start; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px var(--sa-gutter) 40px; margin: -8px calc(-1 * var(--sa-gutter)) -40px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
	.sa-device__row::-webkit-scrollbar { display: none; }
	.sa-device__row .sa-device__phone { flex: 0 0 46vw; max-width: none; scroll-snap-align: center; }
	.sa-device__phone { width: 58vw; }
}
.sa-blend img, .sa-blend video { mix-blend-mode: multiply; }
.sa-blend .sa-media { background: transparent; }
.sa-embed { position: relative; border-radius: var(--sa-radius); overflow: hidden; background: #000; }
.sa-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.sa-spacer--s { height: clamp(16px, 2vw, 32px); } .sa-spacer--m { height: clamp(40px, 5vw, 96px); } .sa-spacer--l { height: clamp(80px, 10vw, 200px); } .sa-spacer--xl { height: clamp(120px, 16vw, 320px); }
.sa-p-credits { padding: var(--sa-section) 0 0; max-width: 900px; }
.sa-p-credits .sa-prose { font-size: 15px; opacity: .8; }

/* Next project: a button, not a banner — the name leads and the arrow follows the cursor. */
.sa-next { margin-top: var(--sa-section); padding-bottom: clamp(32px, 5vw, 80px); display: grid; gap: 18px; justify-items: stretch; }
.sa-next__btn { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 4px clamp(20px, 4vw, 60px); padding: clamp(24px, 3.4vw, 52px) clamp(22px, 3vw, 46px); border-radius: var(--sa-radius); border: 1px solid color-mix(in srgb, currentColor 20%, transparent); color: inherit; text-decoration: none; overflow: hidden; isolation: isolate; transition: border-color .5s var(--sa-ease), transform .5s var(--sa-ease); }
.sa-next__btn::before { content: ""; position: absolute; inset: 0; z-index: -1; background: currentColor; opacity: 0; transform: translateY(101%); transition: transform .7s var(--sa-ease), opacity .3s; }
.sa-next__label { grid-column: 1; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .55; }
.sa-next__title { grid-column: 1; grid-row: 2; margin-top: 6px; font-size: clamp(30px, 5.2vw, 96px); font-weight: 500; letter-spacing: -.05em; line-height: .95; text-wrap: balance; }
.sa-next__meta { grid-column: 1; grid-row: 3; margin-top: 10px; font-size: 13px; opacity: .6; }
.sa-next__go { grid-column: 2; grid-row: 1 / span 3; display: grid; place-items: center; width: clamp(48px, 5vw, 76px); height: clamp(48px, 5vw, 76px); border-radius: 50%; border: 1px solid color-mix(in srgb, currentColor 25%, transparent); transition: transform .6s var(--sa-ease), background-color .5s, color .5s, border-color .5s; }
.sa-next__go svg { width: 42%; height: 42%; }
.sa-next__all { justify-self: start; font-size: 13px; color: inherit; opacity: .6; text-decoration: none; transition: opacity .3s; }
.sa-next__all:hover { opacity: 1; text-decoration: underline; text-underline-offset: .25em; }
@media (hover: hover) {
	.sa-next__btn:hover { border-color: transparent; }
	.sa-next__btn:hover::before { opacity: 1; transform: translateY(0); }
	.sa-next__btn:hover .sa-next__label, .sa-next__btn:hover .sa-next__title, .sa-next__btn:hover .sa-next__meta { color: var(--p-bg, #f4f4f2); }
	.sa-next__btn:hover .sa-next__go { transform: translateX(6px); background: var(--p-bg, #f4f4f2); color: var(--p-ink, #0a0a0a); border-color: transparent; }
}
.sa-next__btn:active { transform: scale(.995); }
@media (max-width: 560px) { .sa-next__btn { grid-template-columns: minmax(0, 1fr) auto; padding: 22px 20px; } }
@keyframes sa-marquee { to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------- Resume & Talk (light pages) */
.sa-resume-layout > .e-con-inner { display: flex !important; flex-direction: row !important; align-items: flex-start; gap: clamp(32px, 4vw, 96px); }
.sa-resume-layout__photo { position: sticky; top: 120px; flex: 0 0 clamp(300px, 28vw, 560px) !important; width: clamp(300px, 28vw, 560px) !important; align-self: flex-start; }
.sa-resume-layout__content { flex: 1 1 auto !important; min-width: 0; }
@media (max-width: 900px) { .sa-resume-layout > .e-con-inner { flex-direction: column !important; } .sa-resume-layout__photo { position: static; flex: none !important; width: 100% !important; } }
.sa-resume-photo { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; border-radius: var(--sa-radius); }
.sa-resume-name { margin: 0 0 clamp(24px, 3vw, 48px); font-size: clamp(40px, 5vw, 120px); font-weight: 600; letter-spacing: -.045em; line-height: .95; }
.sa-resume-experience { display: flex; flex-direction: column; gap: 8px; }
.sa-resume-row { display: flex; align-items: center; gap: 16px; padding: clamp(14px, 1.2vw, 22px) clamp(16px, 1.4vw, 26px); background: #fff; color: #0a0a0a; border-radius: 14px; transition: transform .5s var(--sa-ease), box-shadow .5s; }
.sa-resume-row:hover { transform: translateX(4px); box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .25); }
.sa-resume-row__info { flex: 1 1 auto; min-width: 0; }
.sa-resume-row__company { font-size: clamp(16px, 1.2vw, 22px); font-weight: 600; letter-spacing: -.01em; }
.sa-resume-row__role { font-size: 13px; color: #6b6b6b; margin-top: 2px; }
.sa-resume-row__dates { flex: none; font-size: 12px; font-weight: 600; padding: 7px 14px; border: 1px solid rgba(0, 0, 0, .15); border-radius: 999px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.sa-resume-bio { display: flex; flex-direction: column; gap: 20px; max-width: 760px; font-size: clamp(16px, 1.05vw, 20px); line-height: 1.55; }
.sa-resume-bio p { margin: 0; }
.sa-resume-download { display: inline-flex; align-items: center; gap: 10px; padding: 16px 26px; background: #0a0a0a; color: #fff; border-radius: 999px; font-size: 16px; font-weight: 600; text-decoration: none; transition: transform .5s var(--sa-ease), background .3s; }
.sa-resume-download:hover { background: #2a2a2a; color: #fff; }
.sa-resume-download__icon { width: 20px; height: 20px; flex: none; }
.sa-resume-download__size { opacity: .6; font-weight: 500; font-size: 13px; }
.sa-talk-block { display: flex; flex-direction: column; gap: 16px; max-width: 760px; }
.sa-talk-eyebrow { margin: 0; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .55; }
.sa-talk-headline { margin: 0; font-size: clamp(28px, 3.4vw, 72px); font-weight: 600; line-height: 1.05; letter-spacing: -.035em; }
.sa-talk-body { display: flex; flex-direction: column; gap: 14px; font-size: clamp(16px, 1.05vw, 20px); line-height: 1.55; }
.sa-talk-body p, .sa-talk-support { margin: 0; }
.sa-talk-support { font-size: clamp(17px, 1.2vw, 22px); line-height: 1.4; }
.sa-talk-email { display: inline-block; font-size: clamp(22px, 2.2vw, 44px); font-weight: 600; letter-spacing: -.02em; color: inherit; text-decoration: none; background: linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat; transition: background-size .6s var(--sa-ease); }
.sa-talk-email:hover { background-size: 0 2px; background-position: 100% 100%; }

/* ---------------------------------------------------------------- Language switcher */
.sa-lang { display: inline-flex; gap: 2px; font-size: 13px; letter-spacing: .06em; }
.sa-lang a { color: inherit; text-decoration: none; opacity: .45; padding: 4px 6px; transition: opacity .3s; }
.sa-lang a.is-active, .sa-lang a:hover { opacity: 1; }
.sa-lang--pill { padding: 3px; border-radius: 999px; border: 1px solid color-mix(in srgb, currentColor 25%, transparent); }
.sa-lang--pill a { border-radius: 999px; padding: 5px 10px; }
.sa-lang--pill a.is-active { box-shadow: inset 0 0 0 1px currentColor; font-weight: 600; }

/* ---------------------------------------------------------------- Brief (quote request) */
.sa-brief { --b-line: color-mix(in srgb, currentColor 18%, transparent); --b-soft: color-mix(in srgb, currentColor 6%, transparent); font-family: var(--sa-font); max-width: 980px; }
.sa-brief__progress { display: flex; gap: 6px; margin-bottom: clamp(24px, 3vw, 40px); }
.sa-brief__progress i { flex: 1; height: 3px; border-radius: 3px; background: var(--b-line); overflow: hidden; position: relative; }
.sa-brief__progress i::after { content: ""; position: absolute; inset: 0; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .7s var(--sa-ease); }
.sa-brief__progress i.is-done::after { transform: scaleX(1); }
.sa-brief__step { display: none; }
.sa-brief__step.is-active { display: block; animation: sa-brief-in .7s var(--sa-ease); }
@keyframes sa-brief-in { from { opacity: 0; transform: translateY(16px); } }
.sa-brief__kicker { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .55; margin: 0 0 10px; }
.sa-brief h3 { margin: 0 0 clamp(18px, 2vw, 28px); font-size: clamp(26px, 2.8vw, 56px); font-weight: 600; letter-spacing: -.035em; line-height: 1.05; }
.sa-brief__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.sa-pill { appearance: none; border: 1px solid var(--b-line); background: transparent; color: inherit; font: inherit; font-size: clamp(15px, 1vw, 18px); padding: 12px 18px; border-radius: 999px; cursor: pointer; transition: background .3s, color .3s, border-color .3s, transform .3s var(--sa-ease); }
.sa-pill:hover { border-color: currentColor; }
.sa-pill[aria-pressed="true"] { background: #0a0a0a; border-color: #0a0a0a; color: #fff; }
.sa-pill:active { transform: scale(.97); }
.sa-brief__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 20px; }
.sa-brief__grid .is-wide { grid-column: 1 / -1; }
.sa-brief__group { grid-column: 1 / -1; margin: 18px 0 0; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; opacity: .6; }
.sa-field { display: flex; flex-direction: column; gap: 8px; }
.sa-field label { font-size: 14px; font-weight: 500; }
.sa-field input, .sa-field textarea, .sa-field select { width: 100%; appearance: none; border: 1px solid var(--b-line); background: var(--b-soft); color: inherit; font: inherit; font-size: 16px; padding: 14px 16px; border-radius: 12px; transition: border-color .25s, background .25s, box-shadow .25s; }
.sa-field textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
.sa-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.sa-field input:focus, .sa-field textarea:focus, .sa-field select:focus { outline: none; border-color: currentColor; box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 10%, transparent); }
.sa-field.has-error input, .sa-field.has-error textarea, .sa-field.has-error select { border-color: #d33a2c; }
.sa-field__error { font-size: 13px; color: #d33a2c; }
.sa-brief__estimate { margin-top: 18px; padding: 16px 18px; border-radius: 14px; background: var(--b-soft); font-size: 15px; }
.sa-brief__estimate strong { font-size: 22px; letter-spacing: -.02em; }
.sa-brief__nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: clamp(24px, 3vw, 40px); }
.sa-btn { appearance: none; border: 0; border-radius: 999px; padding: 16px 26px; font: inherit; font-size: 16px; font-weight: 600; cursor: pointer; background: #0a0a0a; color: #fff; display: inline-flex; align-items: center; gap: 10px; transition: transform .4s var(--sa-ease), background .3s, opacity .3s; }
.sa-btn:hover { background: #2a2a2a; }
.sa-btn[disabled] { opacity: .5; cursor: progress; }
.sa-btn--ghost { background: transparent; color: inherit; box-shadow: inset 0 0 0 1px var(--b-line); }
.sa-btn--ghost:hover { background: var(--b-soft); }
.sa-brief__status { font-size: 14px; min-height: 1.4em; }
.sa-brief__status.is-error { color: #d33a2c; }
.sa-brief__done { padding: clamp(32px, 5vw, 64px); border-radius: 22px; background: var(--b-soft); }
.sa-brief__done h3 { margin-bottom: 12px; }
.sa-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 640px) { .sa-brief__grid { grid-template-columns: 1fr; } .sa-brief__nav .sa-btn { padding: 15px 20px; } }

/* Dark surfaces (set by studio.js): invert the monochrome controls. */
.sa-btn.on-dark, .on-dark .sa-btn { background: #f4f4f2; color: #0a0a0a; }
.sa-btn.on-dark:hover, .on-dark .sa-btn:hover { background: #fff; }
.sa-btn--ghost.on-dark, .on-dark .sa-btn--ghost { background: transparent; color: inherit; }
.on-dark .sa-pill[aria-pressed="true"], .sa-pill.on-dark[aria-pressed="true"] { background: #f4f4f2; border-color: #f4f4f2; color: #0a0a0a; }
/* ---------------------------------------------------------------- Resume page (Render::resume) */
.sa-cv { width: min(100% - 2 * var(--sa-gutter), var(--sa-max)); margin-inline: auto; padding: clamp(24px, 5vw, 96px) 0 var(--sa-section); font-family: var(--sa-font); color: inherit; }
.sa-cv__intro { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 120px); align-items: end; }
.sa-cv__photo { margin: 0; border-radius: var(--sa-radius); overflow: hidden; background: color-mix(in srgb, currentColor 8%, transparent); aspect-ratio: 4 / 5; }
.sa-cv__photo img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: transform 1.6s var(--sa-ease); }
@media (hover: hover) { .sa-cv__photo:hover img { transform: scale(1.03); } }
.sa-cv__eyebrow, .sa-cv__h { margin: 0; font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; opacity: .55; }
.sa-cv__name { margin: clamp(12px, 1.4vw, 24px) 0 0; font-size: clamp(52px, 8.4vw, 220px); font-weight: 500; letter-spacing: -.055em; line-height: .88; }
.sa-cv__role { margin: clamp(14px, 1.6vw, 28px) 0 0; font-size: clamp(18px, 1.5vw, 32px); letter-spacing: -.02em; line-height: 1.25; }
.sa-cv__summary { margin: clamp(20px, 2.4vw, 40px) 0 0; max-width: 46ch; font-size: clamp(16px, 1.05vw, 21px); line-height: 1.55; opacity: .75; text-wrap: pretty; }
.sa-cv__facts { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: clamp(20px, 2vw, 32px) 0 0; padding: 0; list-style: none; font-size: 13px; opacity: .8; }
.sa-cv__facts li { display: inline-flex; align-items: center; gap: 8px; }
.sa-cv__live { position: relative; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.sa-cv__live::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid currentColor; opacity: 0; animation: sa-live 2.4s var(--sa-ease) infinite; }
@keyframes sa-live { 0% { transform: scale(.6); opacity: .6; } 100% { transform: scale(1.6); opacity: 0; } }
.sa-cv__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(24px, 2.6vw, 44px); }
.sa-cv__btn { display: inline-flex; align-items: center; gap: 10px; height: 50px; padding: 0 24px; border-radius: 999px; border: 1px solid currentColor; color: inherit; font-size: 15px; font-weight: 500; text-decoration: none; transition: background-color .45s var(--sa-ease), color .45s var(--sa-ease), transform .45s var(--sa-ease); }
.sa-cv__btn span { display: inline-block; transition: transform .45s var(--sa-ease); }
.sa-cv__btn:hover { background: #0a0a0a; border-color: #0a0a0a; color: #f4f4f2; }
.sa-cv__btn:hover span { transform: translateX(3px); }
.sa-cv__btn:active { transform: scale(.98); }
.sa-cv__btn--solid { background: #0a0a0a; border-color: #0a0a0a; color: #f4f4f2; }
.sa-cv__btn--solid:hover { background: #2b2b2b; border-color: #2b2b2b; }
.sa-cv__btn:focus-visible, .sa-cv__more:focus-visible { outline: 1px solid currentColor; outline-offset: 4px; }
.sa-cv__figs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--sa-gap); margin: var(--sa-section) 0 0; }
.sa-cv__figs div { display: flex; flex-direction: column-reverse; gap: 10px; padding-top: 16px; border-top: 1px solid color-mix(in srgb, currentColor 22%, transparent); }
.sa-cv__figs dd { margin: 0; font-size: clamp(34px, 4.2vw, 110px); font-weight: 500; letter-spacing: -.05em; line-height: .9; font-variant-numeric: tabular-nums; }
.sa-cv__figs dt { font-size: 13px; opacity: .6; }
.sa-cv__block { margin-top: var(--sa-section); }
.sa-cv__block > .sa-cv__h, .sa-cv__head { margin-bottom: clamp(24px, 3vw, 56px); }
.sa-cv__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.sa-cv__more { color: inherit; font-size: 14px; text-decoration: none; opacity: .7; transition: opacity .3s; }
.sa-cv__more span { display: inline-block; transition: transform .45s var(--sa-ease); }
.sa-cv__more:hover { opacity: 1; }
.sa-cv__more:hover span { transform: translateX(3px); }
/* Timeline: a dot per year, filled while the role was active. */
.sa-tl { --dot: clamp(7px, .62vw, 11px); --tl-cols: minmax(0, 1.25fr) minmax(0, 1.4fr) 116px; }
.sa-tl__axis, .sa-tl__row { display: grid; grid-template-columns: var(--tl-cols); align-items: center; gap: clamp(16px, 2.4vw, 48px); }
.sa-tl__axis { padding-bottom: 12px; font-size: 11px; opacity: .45; font-variant-numeric: tabular-nums; }
.sa-tl__ticks, .sa-tl__track { display: grid; grid-template-columns: repeat(var(--n), minmax(0, 1fr)); justify-items: center; }
.sa-tl__ticks i { font-style: normal; }
.sa-tl__row { padding: clamp(16px, 1.5vw, 26px) 0; border-top: 1px solid color-mix(in srgb, currentColor 16%, transparent); transition: opacity .4s; }
.sa-tl__row:last-child { border-bottom: 1px solid color-mix(in srgb, currentColor 16%, transparent); }
.sa-tl__who strong { display: block; font-size: clamp(17px, 1.3vw, 26px); font-weight: 500; letter-spacing: -.02em; }
.sa-tl__who span { display: block; margin-top: 4px; font-size: 13px; opacity: .6; }
.sa-tl__track i { width: var(--dot); height: var(--dot); border-radius: 50%; background: color-mix(in srgb, currentColor 14%, transparent); transition: background-color .6s var(--sa-ease), transform .6s var(--sa-ease); }
.sa-tl__track i.is-on { background: currentColor; }
.sa-tl__row.is-current .sa-tl__track i.is-on:last-child { box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 14%, transparent); }
.sa-tl__years { justify-self: end; font-size: 13px; opacity: .65; font-variant-numeric: tabular-nums; white-space: nowrap; }
@media (hover: hover) { .sa-tl:hover .sa-tl__row { opacity: .45; } .sa-tl .sa-tl__row:hover { opacity: 1; } .sa-tl__row:hover .sa-tl__track i.is-on { transform: scale(1.25); } }
.sa-cv__work { --cols: 3; }
.sa-cv__split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 120px); }
.sa-cv__prose { font-size: clamp(18px, 1.5vw, 30px); line-height: 1.4; letter-spacing: -.015em; }
.sa-cv__prose p { margin: 0 0 1em; } .sa-cv__prose p:last-child { margin: 0; }
.sa-cv__skills { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--sa-gap); }
.sa-cv__skill { padding-top: 16px; border-top: 1px solid color-mix(in srgb, currentColor 22%, transparent); }
.sa-cv__n { font-size: 11px; opacity: .45; font-variant-numeric: tabular-nums; }
.sa-cv__skill h3 { margin: 18px 0 12px; font-size: clamp(18px, 1.4vw, 28px); font-weight: 500; letter-spacing: -.02em; }
.sa-cv__skill p { margin: 0; font-size: 14px; line-height: 1.55; opacity: .75; }
.sa-cv__tools { margin-top: 14px !important; opacity: .5 !important; font-size: 13px !important; }
.sa-cv__two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 5vw, 120px); }
.sa-cv__two .sa-cv__h { margin-bottom: clamp(20px, 2vw, 36px); }
.sa-cv__list { margin: 0; padding: 0; list-style: none; }
.sa-cv__list li { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 4px 16px; padding: 16px 0; border-top: 1px solid color-mix(in srgb, currentColor 16%, transparent); }
.sa-cv__list span { grid-row: span 2; font-size: 13px; opacity: .5; font-variant-numeric: tabular-nums; }
.sa-cv__list strong { font-weight: 500; font-size: clamp(16px, 1.1vw, 20px); letter-spacing: -.01em; }
.sa-cv__list em { font-style: normal; font-size: 13px; opacity: .6; }
@media (max-width: 1024px) { .sa-cv__skills { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; } .sa-cv__work { --cols: 2; } }
@media (max-width: 900px) {
	.sa-cv__intro, .sa-cv__split, .sa-cv__two { grid-template-columns: 1fr; }
	.sa-cv__photo { max-width: 460px; aspect-ratio: 1; }
	.sa-cv__figs { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
	.sa-tl { --tl-cols: minmax(0, 1fr) auto; }
	.sa-tl__axis { display: none; }
	.sa-tl__row { grid-template-columns: minmax(0, 1fr) auto; row-gap: 12px; }
	.sa-tl__track { grid-column: 1 / -1; grid-row: 2; justify-items: start; grid-template-columns: repeat(var(--n), var(--dot)); gap: 8px; }
	.sa-tl__years { grid-column: 2; grid-row: 1; align-self: start; }
}
@media (max-width: 600px) { .sa-cv__skills, .sa-cv__work { grid-template-columns: 1fr; } .sa-cv__work { --cols: 1; } }
.sa-resume-download.on-dark { background: #f4f4f2; color: #0a0a0a; }

/* ---------------------------------------------------------------- Market */
.sa-products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(36px, 3.4vw, 64px) var(--sa-gap); }
@media (max-width: 1000px) { .sa-products { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .sa-products { grid-template-columns: 1fr; } }
.sa-product { display: block; color: inherit; text-decoration: none; }
.sa-product__media { position: relative; aspect-ratio: 4 / 5; border-radius: var(--sa-radius); overflow: hidden; background: var(--p-bg, color-mix(in srgb, currentColor 6%, transparent)); }
.sa-product__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s var(--sa-ease), opacity .7s var(--sa-ease); }
.sa-product__alt { opacity: 0; }
@media (hover: hover) {
	.sa-product:hover .sa-product__media img { transform: scale(1.035); }
	.sa-product.has-hover:hover .sa-product__alt { opacity: 1; }
}
.sa-product__badge { position: absolute; left: 14px; top: 14px; z-index: 1; padding: 6px 11px; border-radius: 999px; background: #f4f4f2; color: #0a0a0a; font-size: 11px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.sa-product__info { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; padding-top: 16px; }
.sa-product__info h3 { margin: 0; font-size: clamp(17px, 1.2vw, 24px); font-weight: 500; letter-spacing: -.02em; }
.sa-product__info p { margin: 0; grid-column: 1 / -1; font-size: 13px; opacity: .6; }
.sa-product__price { font-size: 15px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.sa-product--hero { margin-bottom: clamp(48px, 6vw, 110px); }
.sa-product--hero .sa-product__media { aspect-ratio: 21 / 9; }
.sa-product--hero .sa-product__info h3 { font-size: clamp(28px, 3vw, 64px); letter-spacing: -.04em; }
@media (max-width: 767px) { .sa-product--hero .sa-product__media { aspect-ratio: 4 / 5; } }
/* Coming-soon state */
.sa-soon { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(28px, 6vw, 140px); align-items: end; padding: clamp(24px, 4vw, 72px) 0 clamp(40px, 6vw, 120px); border-top: 1px solid color-mix(in srgb, currentColor 16%, transparent); }
.sa-soon__text { grid-column: 1; margin: 0; font-size: clamp(22px, 2.4vw, 48px); line-height: 1.2; letter-spacing: -.025em; text-wrap: pretty; }
.sa-soon__cats { grid-column: 2; grid-row: 1 / span 2; margin: 0; padding: 0; list-style: none; font-size: clamp(15px, 1vw, 18px); }
.sa-soon__cats li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent); }
.sa-soon__cats li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .35; }
.sa-soon .sa-news { grid-column: 1; }
@media (max-width: 900px) { .sa-soon { grid-template-columns: 1fr; } .sa-soon__cats, .sa-soon .sa-news { grid-column: 1; grid-row: auto; } }
/* Product page */
.sa-pd { font-family: var(--sa-font); padding: clamp(20px, 3vw, 48px) 0 var(--sa-section); }
.sa-pd__top { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 13px; margin-bottom: clamp(20px, 3vw, 44px); }
.sa-pd__crumb { opacity: .55; letter-spacing: .08em; text-transform: uppercase; font-size: 11px; }
.sa-pd__hero { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr); gap: clamp(28px, 4.5vw, 96px); align-items: start; }
.sa-pd__gallery { position: sticky; top: clamp(16px, 8vh, 96px); min-width: 0; }
.sa-pd__stage { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; border-radius: var(--sa-radius); background: var(--p-bg, color-mix(in srgb, currentColor 5%, transparent)); scrollbar-width: none; outline: none; }
.sa-pd__stage::-webkit-scrollbar { display: none; }
.sa-pd__stage:focus-visible { box-shadow: 0 0 0 1px currentColor; }
.sa-pd__slide { flex: 0 0 100%; margin: 0; aspect-ratio: 1; scroll-snap-align: center; }
.sa-pd__slide img, .sa-pd__slide video { display: block; width: 100%; height: 100%; object-fit: cover; }
.sa-pd__thumbs { display: flex; gap: 8px; margin-top: 12px; overflow-x: auto; scrollbar-width: none; }
.sa-pd__thumbs button { flex: 0 0 64px; height: 64px; padding: 0; border: 0; border-radius: 10px; overflow: hidden; background: color-mix(in srgb, currentColor 6%, transparent); cursor: pointer; opacity: .45; transition: opacity .35s var(--sa-ease), box-shadow .35s var(--sa-ease); }
.sa-pd__thumbs button img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sa-pd__thumbs button:hover { opacity: .8; }
.sa-pd__thumbs button.is-on { opacity: 1; box-shadow: 0 0 0 1px currentColor; }
.sa-pd__panel { display: flex; flex-direction: column; gap: 14px; padding-top: 4px; }
.sa-pd__badge { align-self: flex-start; margin: 0; padding: 6px 11px; border-radius: 999px; border: 1px solid color-mix(in srgb, currentColor 25%, transparent); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.sa-pd__title { margin: 0; font-size: clamp(34px, 3.6vw, 84px); font-weight: 500; letter-spacing: -.045em; line-height: .95; text-wrap: balance; }
.sa-pd__sub { margin: 0; font-size: clamp(16px, 1.1vw, 21px); opacity: .7; line-height: 1.45; }
.sa-pd__price { margin: 6px 0 0; font-size: clamp(22px, 1.7vw, 32px); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.sa-pd__price s { font-size: .56em; opacity: .45; margin-left: 10px; }
.sa-pd__state { display: flex; align-items: center; gap: 8px; margin: 0; font-size: 13px; opacity: .75; }
.sa-pd__state i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.sa-pd__state[data-state="soon"] i, .sa-pd__state[data-state="soldout"] i { background: transparent; box-shadow: inset 0 0 0 1px currentColor; }
.sa-pd__facts { margin: 8px 0 0; display: grid; font-size: 13px; }
.sa-pd__facts div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent); }
.sa-pd__facts dt { opacity: .55; } .sa-pd__facts dd { margin: 0; text-align: right; }
.sa-pd__section { margin-top: var(--sa-section); }
.sa-pd__overview, .sa-pd__specs { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: clamp(28px, 5vw, 120px); }
.sa-pd__specs { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
.sa-pd__story { margin-top: var(--sa-section); }
.sa-pd__table { margin: clamp(18px, 2vw, 32px) 0 0; }
.sa-pd__table div { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 16px; padding: 16px 0; border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent); font-size: 15px; }
.sa-pd__table dt { opacity: .55; } .sa-pd__table dd { margin: 0; }
.sa-pd__list { margin: clamp(18px, 2vw, 32px) 0 0; padding: 0; list-style: none; }
.sa-pd__list li { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent); font-size: 15px; }
.sa-pd__list li::before { content: ""; flex: none; width: 6px; height: 6px; margin-top: .55em; border-radius: 50%; background: currentColor; opacity: .4; }
.sa-pd__h2 { margin-top: clamp(32px, 3vw, 56px) !important; }
.sa-pd__small { margin: 14px 0 0; font-size: 14px; line-height: 1.6; opacity: .7; }
.sa-pd__faq > div { margin-top: clamp(18px, 2vw, 32px); max-width: 960px; }
.sa-faq { border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent); }
.sa-faq:last-child { border-bottom: 1px solid color-mix(in srgb, currentColor 14%, transparent); }
.sa-faq summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; cursor: pointer; list-style: none; font-size: clamp(16px, 1.2vw, 22px); letter-spacing: -.01em; }
.sa-faq summary::-webkit-details-marker { display: none; }
.sa-faq summary i { position: relative; flex: none; width: 14px; height: 14px; }
.sa-faq summary i::before, .sa-faq summary i::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: currentColor; transition: transform .45s var(--sa-ease); }
.sa-faq summary i::after { transform: rotate(90deg); }
.sa-faq[open] summary i::after { transform: rotate(0); }
.sa-faq__a { padding: 0 0 22px; max-width: 70ch; font-size: 15px; line-height: 1.6; opacity: .75; }
.sa-faq__a p { margin: 0 0 .8em; }
@media (max-width: 900px) {
	.sa-pd__hero, .sa-pd__overview, .sa-pd__specs { grid-template-columns: 1fr; }
	.sa-pd__gallery { position: static; margin-inline: calc(-1 * var(--sa-gutter)); }
	.sa-pd__stage { border-radius: 0; }
	.sa-pd__thumbs { padding-inline: var(--sa-gutter); }
}
/* Options, quantity */
.sa-opt { margin: 4px 0 0; padding: 0; border: 0; min-width: 0; }
.sa-opt legend { padding: 0; margin-bottom: 10px; font-size: 13px; opacity: .8; }
.sa-opt__chosen { opacity: .6; margin-left: 6px; }
.sa-opt__values { display: flex; flex-wrap: wrap; gap: 8px; }
.sa-opt__value { position: relative; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px; border-radius: 999px; border: 1px solid color-mix(in srgb, currentColor 18%, transparent); font-size: 14px; cursor: pointer; transition: border-color .3s var(--sa-ease), background-color .3s var(--sa-ease); }
.sa-opt__value input { position: absolute; opacity: 0; pointer-events: none; }
.sa-opt__value:hover { border-color: color-mix(in srgb, currentColor 45%, transparent); }
.sa-opt__value:has(input:checked) { border-color: currentColor; box-shadow: inset 0 0 0 1px currentColor; }
.sa-opt__value:has(input:focus-visible) { outline: 1px solid currentColor; outline-offset: 3px; }
.sa-opt__value.is-out { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.sa-opt__value.has-swatch { padding-left: 6px; }
.sa-opt__swatch { width: 32px; height: 32px; border-radius: 50%; overflow: hidden; flex: none; }
.sa-opt__swatch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sa-qty { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 13px; }
.sa-qty span { opacity: .8; }
.sa-qty__ctl { display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, currentColor 18%, transparent); border-radius: 999px; overflow: hidden; }
.sa-qty__ctl button { width: 44px; height: 44px; border: 0; background: transparent; color: inherit; font-size: 18px; cursor: pointer; transition: background-color .3s; }
.sa-qty__ctl button:hover { background: color-mix(in srgb, currentColor 7%, transparent); }
.sa-qty__ctl input { width: 44px; height: 44px; border: 0; padding: 0; text-align: center; background: transparent; color: inherit; font: inherit; font-size: 15px; font-variant-numeric: tabular-nums; -moz-appearance: textfield; }
.sa-qty__ctl input::-webkit-inner-spin-button, .sa-qty__ctl input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.sa-field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.sa-buy__details { display: flex; flex-direction: column; gap: 10px; }
.sa-buy__details.is-in { animation: sa-in .6s var(--sa-ease) both; }
@keyframes sa-in { from { opacity: 0; transform: translate3d(0, 10px, 0); } to { opacity: 1; transform: none; } }
.sa-buy__note { margin: 0; font-size: 12px; opacity: .55; line-height: 1.5; }
.sa-buy__go.is-busy { opacity: .6; cursor: progress; }
.sa-list { margin: 0 0 24px; padding-left: 18px; line-height: 1.7; }
.sa-small { font-size: 14px; opacity: .7; line-height: 1.55; }
.sa-buy { display: flex; flex-direction: column; gap: 10px; --b-line: color-mix(in srgb, currentColor 18%, transparent); }
.sa-buy .sa-field span { font-size: 13px; opacity: .7; }
.sa-buy .sa-field input { width: 100%; border: 1px solid var(--b-line); background: transparent; color: inherit; font: inherit; font-size: 16px; padding: 13px 14px; border-radius: 12px; }
.sa-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; opacity: .8; cursor: pointer; }
.sa-check input { margin-top: 2px; accent-color: currentColor; }
.sa-btn--block { width: 100%; justify-content: center; }
.sa-buy__status, .sa-news__status { margin: 0; font-size: 14px; min-height: 1.2em; }
.sa-buy__done { padding: 20px; border-radius: 16px; background: color-mix(in srgb, currentColor 6%, transparent); }
.sa-buy__done p { margin: 6px 0 0; opacity: .75; }
.sa-news { max-width: 520px; font-family: var(--sa-font); }
.sa-news__title { margin: 0 0 12px; font-size: clamp(17px, 1.2vw, 22px); line-height: 1.35; }
.sa-news__row { display: flex; gap: 8px; }
.sa-news__row input { flex: 1; min-width: 0; border: 1px solid color-mix(in srgb, currentColor 20%, transparent); background: transparent; color: inherit; font: inherit; font-size: 16px; padding: 13px 16px; border-radius: 999px; }

/* ---------------------------------------------------------------- Chat */
.sa-chat { position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); z-index: 9990; font-family: var(--sa-font); }
.sa-chat__launcher { position: relative; width: 84px; height: 84px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: #0a0a0a; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 40px -12px rgba(0, 0, 0, .5); transition: transform .5s var(--sa-ease); -webkit-tap-highlight-color: transparent; }
.sa-chat__launcher:hover { transform: scale(1.06); }
.sa-chat__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: sa-spin 18s linear infinite; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; fill: currentColor; font-weight: 500; }
.sa-chat__icon { width: 24px; height: 24px; }
.sa-chat__presence { position: absolute; top: 14px; right: 14px; width: 10px; height: 10px; border-radius: 50%; background: #2bd576; box-shadow: 0 0 0 3px #0a0a0a; }
.sa-chat__badge { position: absolute; top: 0; right: 0; min-width: 22px; height: 22px; border-radius: 11px; background: #f4f4f2; color: #0a0a0a; box-shadow: 0 0 0 2px #0a0a0a; font-size: 12px; font-weight: 700; display: grid; place-items: center; padding: 0 6px; }
.sa-chat[data-state="open"] .sa-chat__launcher { transform: scale(.001); pointer-events: none; }
/* While open, the launcher box must not sit over the panel (it covered the send button). */
.sa-chat[data-state="open"] { pointer-events: none; }
@keyframes sa-spin { to { transform: rotate(360deg); } }
@media (max-width: 767px) { .sa-chat__launcher { width: 68px; height: 68px; } .sa-chat__ring { font-size: 12px; } .sa-chat__presence { top: 10px; right: 10px; } }
.sa-chat__panel { z-index: 9991; pointer-events: auto; --kb: 0px; --c-ink: #0a0a0a; --c-soft: #f2f2f0; --c-line: rgba(10, 10, 10, .08); --c-mute: #7a7a76; position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); width: min(392px, calc(100vw - 32px)); height: min(620px, calc(100svh - 32px)); display: flex; flex-direction: column; background: #fff; color: var(--c-ink); border-radius: 22px; overflow: hidden; box-shadow: 0 1px 0 rgba(10, 10, 10, .04), 0 30px 80px -24px rgba(10, 10, 10, .35), 0 0 0 1px var(--c-line); transform-origin: bottom right; animation: sa-chat-in .55s var(--sa-ease); font-family: var(--sa-font); }
@keyframes sa-chat-in { from { opacity: 0; transform: translateY(16px) scale(.96); } }
.sa-chat__panel[hidden], .sa-chat__badge[hidden] { display: none; }
/* The hidden attribute always wins inside Studio components (class display rules must never reveal it). */
:is(.sa-pd, .sa-buy, .sa-cv, .sa-chat, .sa-chat__panel, .sa-news, .sa-soon) [hidden] { display: none !important; }
.sa-chat__panel button, .sa-chat__panel input, .sa-chat__panel textarea { font-family: inherit; }
.sa-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.sa-chat__head { display: flex; align-items: center; gap: 12px; padding: 14px 12px 14px 16px; border-bottom: 1px solid var(--c-line); }
.sa-chat__face { position: relative; flex: none; }
.sa-chat__avatar { display: block; width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: var(--c-soft); filter: grayscale(1); }
.sa-chat__dot { position: absolute; right: 0; bottom: 0; width: 11px; height: 11px; border-radius: 50%; background: #c9c9c5; box-shadow: 0 0 0 2px #fff; }
.sa-chat__panel.is-online .sa-chat__dot { background: #1f9d55; }
.sa-chat__who { flex: 1; min-width: 0; line-height: 1.25; }
.sa-chat__who strong { display: block; font-size: 15px; font-weight: 600; letter-spacing: -.01em; }
.sa-chat__who small { display: block; margin-top: 2px; font-size: 12.5px; color: var(--c-mute); }
.sa-chat__close { appearance: none; flex: none; width: 36px; height: 36px; padding: 0; border: 0; border-radius: 50%; background: transparent; color: var(--c-mute); cursor: pointer; display: grid; place-items: center; transition: background-color .25s, color .25s; }
.sa-chat__close svg { width: 18px; height: 18px; }
.sa-chat__close:hover { background: var(--c-soft); color: var(--c-ink); }
.sa-chat__log { flex: 1; overflow-y: auto; padding: 18px 14px 10px; display: flex; flex-direction: column; gap: 4px; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.sa-msg { position: relative; max-width: 80%; padding: 9px 13px 7px; border-radius: 18px; font-size: 15px; line-height: 1.42; word-wrap: break-word; animation: sa-msg-in .35s var(--sa-ease); }
.sa-msg p { margin: 0; white-space: pre-wrap; }
@keyframes sa-msg-in { from { opacity: 0; transform: translateY(6px); } }
.sa-msg + .sa-msg { margin-top: 2px; }
.sa-msg--admin + .sa-msg--visitor, .sa-msg--visitor + .sa-msg--admin { margin-top: 10px; }
.sa-msg--admin { align-self: flex-start; background: var(--c-soft); border-bottom-left-radius: 6px; }
.sa-msg--system { align-self: center; max-width: 90%; background: transparent; color: var(--c-mute); font-size: 12.5px; text-align: center; padding: 6px 10px; }
.sa-msg--visitor { align-self: flex-end; background: var(--c-ink); color: #fff; border-bottom-right-radius: 6px; }
.sa-msg.is-pending { opacity: .55; }
.sa-msg.is-failed { background: #fff; color: var(--c-ink); box-shadow: inset 0 0 0 1px #d6402f; cursor: pointer; }
.sa-msg time { display: block; margin-top: 3px; font-size: 10.5px; opacity: .5; font-variant-numeric: tabular-nums; }
.sa-msg--visitor time { text-align: right; }
.sa-msg__state { display: block; margin-top: 1px; text-align: right; font-size: 10.5px; opacity: .55; }
.sa-msg__state.is-error { opacity: 1; color: #d6402f; font-weight: 500; }
.sa-msg a { color: inherit; text-underline-offset: .15em; }
.sa-msg__img { display: block; margin: -3px -7px 6px; }
.sa-msg__img img { display: block; max-width: 100%; border-radius: 13px; }
.sa-msg__file { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; text-decoration: none; }
.sa-msg__file svg { width: 16px; height: 16px; }
.sa-msg--card { display: flex; flex-direction: column; gap: 2px; min-width: 230px; background: #fff; box-shadow: inset 0 0 0 1px var(--c-line); border-radius: 18px !important; padding: 14px 16px 10px; }
.sa-msg--card small { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--c-mute); }
.sa-msg--card strong { font-size: 16px; font-weight: 600; }
.sa-msg--card span { font-size: 14px; color: var(--c-mute); }
.sa-msg--card a { margin-top: 10px; align-self: flex-start; background: var(--c-ink); color: #fff; text-decoration: none; font-weight: 600; font-size: 13.5px; padding: 9px 15px; border-radius: 999px; }
.sa-typing { align-self: flex-start; display: inline-flex; gap: 4px; margin-top: 4px; padding: 12px 14px; background: var(--c-soft); border-radius: 18px 18px 18px 6px; }
.sa-typing i { width: 6px; height: 6px; border-radius: 50%; background: #9a9a96; animation: sa-dots 1.2s infinite ease-in-out; }
.sa-typing i:nth-child(2) { animation-delay: .15s; } .sa-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes sa-dots { 0%, 60%, 100% { transform: none; opacity: .45; } 30% { transform: translateY(-3px); opacity: 1; } }
/* Quick replies */
.sa-chat__chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px 10px; }
.sa-chat__chips button { appearance: none; margin: 0; padding: 8px 13px; border-radius: 999px; border: 1px solid var(--c-line); background: #fff; color: var(--c-ink); font-size: 13.5px; line-height: 1.2; cursor: pointer; transition: border-color .25s, background-color .25s; }
.sa-chat__chips button:hover { border-color: rgba(10, 10, 10, .3); background: var(--c-soft); }
/* Composer: one field with attach + send inside */
.sa-chat__form { padding: 10px 12px calc(12px + env(safe-area-inset-bottom) * .25); border-top: 1px solid var(--c-line); background: #fff; }
.sa-chat__field { display: flex; align-items: flex-end; gap: 2px; padding: 4px; border-radius: 24px; background: var(--c-soft); box-shadow: inset 0 0 0 1px transparent; transition: box-shadow .25s, background-color .25s; }
.sa-chat__field:focus-within { background: #fff; box-shadow: inset 0 0 0 1px rgba(10, 10, 10, .25); }
.sa-chat__field textarea { flex: 1; min-width: 0; resize: none; min-height: 40px; max-height: 128px; margin: 0; border: 0; border-radius: 0; background: transparent; color: inherit; font-size: 16px; line-height: 1.35; padding: 10px 6px; outline: none; box-shadow: none; -webkit-appearance: none; appearance: none; }
.sa-chat__field textarea:focus, .sa-chat__field textarea:focus-visible { outline: none; box-shadow: none; border: 0; background: transparent; }
.sa-chat__field textarea::placeholder { color: var(--c-mute); }
.sa-chat__btn { appearance: none; flex: none; width: 40px; height: 40px; margin: 0; padding: 0; border: 0; border-radius: 50%; display: grid; place-items: center; cursor: pointer; background: transparent; color: var(--c-mute); transition: background-color .25s, color .25s, transform .25s var(--sa-ease), opacity .25s; -webkit-tap-highlight-color: transparent; }
.sa-chat__btn svg { width: 20px; height: 20px; }
.sa-chat__attach:hover { color: var(--c-ink); background: rgba(10, 10, 10, .06); }
.sa-chat__send { background: var(--c-ink); color: #fff; }
.sa-chat__send:hover { background: #2b2b2b; }
.sa-chat__send:active { transform: scale(.92); }
.sa-chat__send[disabled] { background: #d9d9d5; color: #fff; cursor: default; }
.sa-chat__btn:focus-visible, .sa-chat__close:focus-visible, .sa-chat__chips button:focus-visible { outline: 2px solid var(--c-ink); outline-offset: 2px; }
/* Email capture */
.sa-chat__email { align-self: stretch; margin: 10px 0 4px; padding: 14px; border-radius: 16px; background: #fff; box-shadow: inset 0 0 0 1px var(--c-line); font-size: 14px; }
.sa-chat__email p { margin: 0 0 10px; color: var(--c-mute); line-height: 1.45; }
.sa-chat__email p.is-done { margin: 0; color: var(--c-ink); }
.sa-chat__email div { display: flex; gap: 6px; }
.sa-chat__email input { flex: 1; min-width: 0; margin: 0; border: 0; background: var(--c-soft); color: inherit; font-size: 16px; padding: 10px 12px; border-radius: 12px; outline: none; box-shadow: inset 0 0 0 1px transparent; -webkit-appearance: none; appearance: none; }
.sa-chat__email input:focus { box-shadow: inset 0 0 0 1px rgba(10, 10, 10, .3); background: #fff; }
.sa-chat__email.is-error input { box-shadow: inset 0 0 0 1px #d6402f; }
.sa-chat__email button { appearance: none; flex: none; margin: 0; border: 0; border-radius: 12px; padding: 0 14px; font-size: 14px; font-weight: 600; background: var(--c-ink); color: #fff; cursor: pointer; }
/* Phones: a floating panel with the page still visible around it — never full screen; it rises with the keyboard. */
@media (max-width: 520px) {
	.sa-chat__panel { right: 10px; left: 10px; bottom: max(10px, env(safe-area-inset-bottom)); width: auto; height: min(72svh, 600px); border-radius: 20px; }
	.sa-chat__panel.has-kb { bottom: calc(var(--kb) + 8px); height: min(calc(var(--vvh, 100svh) - 16px), 600px); }
}

/* ---------------------------------------------------------------- Cursor */
.sa-cursor { position: fixed; left: 0; top: 0; z-index: 99999; pointer-events: none; width: 10px; height: 10px; margin: -5px 0 0 -5px; border-radius: 50%; background: #fff; mix-blend-mode: difference; transition: width .45s var(--sa-ease), height .45s var(--sa-ease), margin .45s var(--sa-ease), opacity .3s; will-change: transform; }
.sa-cursor.is-hidden { opacity: 0; }
.sa-cursor.is-link { width: 44px; height: 44px; margin: -22px 0 0 -22px; }
.sa-cursor.is-label { width: 92px; height: 92px; margin: -46px 0 0 -46px; mix-blend-mode: normal; background: #f4f4f2; box-shadow: 0 12px 40px -12px rgba(0, 0, 0, .35); }
.sa-cursor.is-label span { color: #0a0a0a; }
.sa-cursor span { position: absolute; inset: 0; display: grid; place-items: center; font: 600 12px/1 var(--sa-font); letter-spacing: .08em; text-transform: uppercase; color: #fff; opacity: 0; transition: opacity .25s; }
.sa-cursor.is-label span { opacity: 1; }
@media (hover: none), (pointer: coarse) { .sa-cursor { display: none; } }

/* ---------------------------------------------------------------- Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ---------------------------------------------------------------- View transitions & a11y */
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .45s; animation-timing-function: cubic-bezier(.65, 0, .35, 1); }
::view-transition-group(*) { animation-duration: .7s; animation-timing-function: cubic-bezier(.19, 1, .22, 1); }
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
	[data-sa-anim], [data-sa-anim] > *, .sa-split-i { opacity: 1 !important; transform: none !important; clip-path: none !important; }
	@view-transition { navigation: none; }
}
@media print { .sa-chat, .sa-cursor, .sa-minimap { display: none !important; } [data-sa-anim] { opacity: 1 !important; transform: none !important; } }

/* ------------------------------------------------------------------ Let's Talk (full page) */
.sa-talk { --t-fg: #0a0a0a; --t-bg: #f4f4f2; width: min(100% - 2 * var(--sa-gutter), var(--sa-max)); margin-inline: auto; padding: clamp(24px, 5vw, 96px) 0 calc(var(--sa-section) + 40px); font-family: var(--sa-font); color: inherit; }
.sa-talk-page .sa-talk { --t-fg: #f4f4f2; --t-bg: #020202; }
.sa-talk__hero { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 110px); align-items: end; }
.sa-talk__eyebrow { margin: 0; font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; opacity: .55; }
.sa-talk__title { margin: clamp(14px, 1.6vw, 28px) 0 0; font-size: clamp(40px, 6.2vw, 132px); font-weight: 500; letter-spacing: -.05em; line-height: .94; text-wrap: balance; }
.sa-talk__intro { margin: clamp(20px, 2.4vw, 40px) 0 0; max-width: 52ch; }
.sa-talk__intro p { margin: 0 0 .8em; font-size: clamp(16px, 1.05vw, 21px); line-height: 1.6; opacity: .75; text-wrap: pretty; }
.sa-talk__intro p:last-child { margin-bottom: 0; }
.sa-talk__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: clamp(24px, 2.6vw, 44px) 0 0; }
.sa-talk__btn { display: inline-flex; align-items: center; gap: 10px; height: 50px; padding: 0 24px; border-radius: 999px; border: 1px solid color-mix(in srgb, currentColor 45%, transparent); color: inherit; font-size: 15px; font-weight: 500; text-decoration: none; transition: background-color .45s var(--sa-ease), color .45s var(--sa-ease), border-color .45s var(--sa-ease), transform .45s var(--sa-ease); }
.sa-talk__btn span { display: inline-block; transition: transform .45s var(--sa-ease); }
.sa-talk__btn:hover { background: var(--t-fg); border-color: var(--t-fg); color: var(--t-bg); }
.sa-talk__btn:hover span { transform: translateY(3px); }
.sa-talk__btn:active { transform: scale(.98); }
.sa-talk__btn--solid { background: var(--t-fg); border-color: var(--t-fg); color: var(--t-bg); }
.sa-talk__btn--solid:hover { opacity: .85; }
.sa-talk__btn:focus-visible { outline: 1px solid currentColor; outline-offset: 4px; }
.sa-talk__facts { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: clamp(22px, 2.2vw, 36px) 0 0; padding: 0; list-style: none; font-size: 13px; opacity: .78; }
.sa-talk__facts li { display: inline-flex; align-items: center; gap: 8px; }
.sa-talk__live { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: sa-talk-pulse 2.4s var(--sa-ease-io) infinite; }
@keyframes sa-talk-pulse { 50% { opacity: .25; transform: scale(.7); } }
.sa-talk__photo { margin: 0; border-radius: var(--sa-radius); overflow: hidden; background: color-mix(in srgb, currentColor 8%, transparent); aspect-ratio: 4 / 5; }
.sa-talk__photo img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: transform 1.6s var(--sa-ease), filter 1.2s var(--sa-ease); }
@media (hover: hover) { .sa-talk__photo:hover img { transform: scale(1.03); } }
/* Three ways in: hairline columns, no boxes */
.sa-talk__ways { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin: var(--sa-section) 0 0; border-top: 1px solid color-mix(in srgb, currentColor 22%, transparent); }
.sa-talk__way { display: flex; flex-direction: column; gap: 10px; padding: clamp(22px, 2.4vw, 40px) clamp(16px, 2vw, 40px) clamp(22px, 2.4vw, 40px) 0; color: inherit; text-decoration: none; transition: opacity .4s var(--sa-ease); }
.sa-talk__ways > * + * { border-left: 1px solid color-mix(in srgb, currentColor 22%, transparent); padding-left: clamp(16px, 2vw, 40px); }
.sa-talk__way h2 { margin: 0; font-size: clamp(20px, 1.6vw, 30px); font-weight: 500; letter-spacing: -.025em; }
.sa-talk__way p { margin: 0; font-size: 14.5px; line-height: 1.55; opacity: .7; max-width: 36ch; }
.sa-talk__n { font-size: 12px; opacity: .45; font-variant-numeric: tabular-nums; letter-spacing: .1em; }
.sa-talk__meta { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 18px; font-size: 13px; opacity: .6; transition: opacity .4s var(--sa-ease); }
.sa-talk__meta svg { width: 15px; height: 15px; transition: transform .5s var(--sa-ease); }
.sa-talk__way:hover .sa-talk__meta { opacity: 1; }
.sa-talk__way:hover .sa-talk__meta svg { transform: translate(3px, -3px); }
/* The brief */
.sa-talk__brief { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 110px); margin: var(--sa-section) 0 0; padding-top: clamp(28px, 3vw, 56px); border-top: 1px solid color-mix(in srgb, currentColor 22%, transparent); scroll-margin-top: 96px; }
.sa-talk__briefhead { position: sticky; top: clamp(90px, 12vh, 140px); align-self: start; }
.sa-talk__h2 { margin: 14px 0 0; font-size: clamp(26px, 2.4vw, 46px); font-weight: 500; letter-spacing: -.035em; line-height: 1.06; text-wrap: balance; }
.sa-talk__body { margin-top: clamp(16px, 1.6vw, 26px); max-width: 44ch; }
.sa-talk__body p { margin: 0 0 .8em; font-size: 15px; line-height: 1.6; opacity: .7; }
.sa-talk__form { min-width: 0; }
.sa-talk__form .sa-brief { max-width: none; }
/* What happens next */
.sa-talk__next { margin: var(--sa-section) 0 0; padding-top: clamp(24px, 2.6vw, 48px); border-top: 1px solid color-mix(in srgb, currentColor 22%, transparent); }
.sa-talk__next ol { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(18px, 2vw, 40px); margin: clamp(22px, 2.4vw, 44px) 0 0; padding: 0; list-style: none; }
.sa-talk__next li { display: flex; flex-direction: column; gap: 8px; }
.sa-talk__next h3 { margin: 0; font-size: clamp(16px, 1.15vw, 20px); font-weight: 500; letter-spacing: -.015em; }
.sa-talk__next p { margin: 0; font-size: 14px; line-height: 1.55; opacity: .65; }
@media (max-width: 900px) {
	.sa-talk__hero, .sa-talk__brief { grid-template-columns: 1fr; }
	.sa-talk__hero { gap: clamp(26px, 6vw, 48px); }
	.sa-talk__photo { max-width: 520px; aspect-ratio: 5 / 4; }
	.sa-talk__ways { grid-template-columns: 1fr; }
	.sa-talk__ways > * + * { border-left: 0; padding-left: 0; border-top: 1px solid color-mix(in srgb, currentColor 16%, transparent); }
	.sa-talk__way { padding-right: 0; }
	.sa-talk__briefhead { position: static; }
	.sa-talk__next ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) { .sa-talk__next ol { grid-template-columns: 1fr; } .sa-talk__btn { width: 100%; justify-content: center; } }
.sa-talk-page { color: #f4f4f2; }
/* `body.sa-site a { color: inherit }` outranks a single class, so the pill states need an anchor selector. */
.sa-talk a.sa-talk__btn--solid, .sa-talk a.sa-talk__btn:hover { color: var(--t-bg); }

/* ---------------------------------------------------------------- Brief questionnaire (replaces k.css) */
.sa-brief { --t-fg: currentColor; --t-bg: #f4f4f2; }
.sa-talk .sa-brief { --t-bg: var(--t-bg, #020202); }
.sa-brief .sa-brief__head { display: flex; flex-direction: column; gap: 12px; }
.sa-brief .sa-brief__top { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .6; }
.sa-brief .sa-brief__count { font-variant-numeric: tabular-nums; }
.sa-brief .sa-brief__back { appearance: none; border: 0; background: none; color: inherit; font: inherit; letter-spacing: inherit; text-transform: inherit; cursor: pointer; padding: 4px 0; opacity: .7; transition: opacity .3s; }
.sa-brief .sa-brief__back:hover { opacity: 1; }
.sa-brief .sa-brief__back[hidden] { visibility: hidden; display: block; }
.sa-brief .sa-brief__bar { height: 1px; background: color-mix(in srgb, currentColor 22%, transparent); position: relative; overflow: hidden; }
.sa-brief .sa-brief__bar i { position: absolute; inset: 0; background: currentColor; transform-origin: left; transform: scaleX(var(--p, 0)); transition: transform .9s var(--sa-ease); }
.sa-brief .sa-brief__stage { padding: clamp(28px, 4vw, 56px) 0 0; }
.sa-brief .sa-brief__step { animation: sa-step-in .8s var(--sa-ease) both; }
.sa-brief .sa-brief__step.is-leaving { animation: sa-step-out .3s var(--sa-ease-io) both; }
@keyframes sa-step-in { from { opacity: 0; transform: translate3d(0, 18px, 0); } }
@keyframes sa-step-out { to { opacity: 0; transform: translate3d(0, -12px, 0); } }
.sa-brief .sa-brief__q { margin: 0; font-size: clamp(26px, 2.5vw, 50px); line-height: 1.02; letter-spacing: -.04em; font-weight: 500; max-width: 18ch; text-wrap: balance; }
.sa-brief .sa-brief__hint { margin: 14px 0 0; font-size: 15px; line-height: 1.55; opacity: .55; max-width: 46ch; }
.sa-brief .sa-brief__answer { margin-top: clamp(26px, 3.4vw, 48px); }
.sa-brief .sa-brief__input { width: 100%; appearance: none; border: 0; border-bottom: 1px solid color-mix(in srgb, currentColor 35%, transparent); border-radius: 0; background: none; color: inherit; font: 400 clamp(19px, 1.7vw, 30px)/1.3 var(--sa-font); letter-spacing: -.02em; padding: 10px 0 14px; outline: none; resize: none; transition: border-color .4s var(--sa-ease); }
.sa-brief .sa-brief__input::placeholder { color: inherit; opacity: .3; }
.sa-brief .sa-brief__input:focus { border-bottom-color: currentColor; }
.sa-brief textarea.sa-talk__input { min-height: 1.3em; overflow: hidden; }
.sa-brief .sa-brief__options { display: flex; flex-wrap: wrap; gap: 8px; }
.sa-brief .sa-brief__opt { appearance: none; border: 1px solid color-mix(in srgb, currentColor 32%, transparent); border-radius: 999px; background: transparent; color: inherit; font: 500 15px/1 var(--sa-font); letter-spacing: -.01em; padding: 13px 20px; cursor: pointer; transition: border-color .3s, background .3s, color .3s, transform .3s var(--sa-ease); }
.sa-brief .sa-brief__opt:hover { border-color: currentColor; }
.sa-brief .sa-brief__opt:active { transform: scale(.97); }
.sa-brief .sa-brief__opt[aria-pressed="true"] { background: currentColor; border-color: currentColor; }
.sa-brief .sa-brief__opt[aria-pressed="true"]::first-line { color: inherit; }
.sa-talk-page .sa-brief .sa-brief__opt[aria-pressed="true"] { color: #020202; background: #f4f4f2; border-color: #f4f4f2; }
.sa-brief .sa-label { display: block; font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; opacity: .55; }
.sa-brief .sa-brief__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px var(--sa-gap); }
.sa-brief .sa-brief__nav { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: clamp(28px, 3.4vw, 48px); }
.sa-brief .sa-brief__enter { font-size: 12px; opacity: .45; letter-spacing: .04em; }
.sa-brief .sa-brief__err { margin: 14px 0 0; font-size: 14px; color: #ff6b5e; min-height: 1.2em; }
.sa-brief .sa-brief__sum { margin-top: clamp(24px, 3vw, 44px); display: grid; grid-template-columns: max-content minmax(0, 1fr); gap: 10px 28px; font-size: 15px; }
.sa-brief .sa-brief__sum dt { opacity: .5; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; padding-top: 3px; }
.sa-brief .sa-brief__sum dd { margin: 0; }
.sa-brief .sa-brief__check { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; opacity: .75; margin-top: 22px; cursor: pointer; }
.sa-brief .sa-brief__check input { accent-color: currentColor; margin-top: 3px; }
.sa-brief .sa-link { display: inline-flex; align-items: baseline; gap: .5em; font-size: 15px; font-weight: 500; text-decoration: none; color: inherit; background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat; transition: background-size .7s var(--sa-ease); padding-bottom: 2px; }
.sa-brief .sa-link:hover { background-size: 100% 1px; }
@media (max-width: 700px) { .sa-brief .sa-brief__row { grid-template-columns: 1fr; } .sa-brief .sa-brief__enter { display: none; } .sa-brief .sa-brief__nav { gap: 14px; } .sa-brief .sa-brief__nav .sa-btn { flex: 0 1 auto; min-width: 180px; justify-content: center; } }

/* ---------------------------------------------------------------- Legal documents */
.sa-doc { width: min(100% - 2 * var(--sa-gutter), var(--sa-max)); margin-inline: auto; padding: clamp(24px, 5vw, 96px) 0 var(--sa-section); font-family: var(--sa-font); color: inherit; }
.sa-doc__eyebrow { margin: 0; font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; opacity: .55; }
.sa-doc__head { max-width: 62ch; }
.sa-doc__title { margin: clamp(14px, 1.6vw, 26px) 0 0; font-size: clamp(34px, 4.6vw, 86px); font-weight: 500; letter-spacing: -.05em; line-height: .98; text-wrap: balance; }
.sa-doc__lead { margin: clamp(18px, 2vw, 32px) 0 0; font-size: clamp(16px, 1.05vw, 21px); line-height: 1.6; opacity: .75; text-wrap: pretty; }
.sa-doc__meta { margin: clamp(14px, 1.4vw, 22px) 0 0; font-size: 13px; opacity: .5; }
.sa-doc__cols { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 9fr); gap: clamp(28px, 4vw, 88px); margin-top: var(--sa-section); padding-top: clamp(26px, 3vw, 56px); border-top: 1px solid color-mix(in srgb, currentColor 22%, transparent); }
.sa-doc__index { position: sticky; top: clamp(90px, 12vh, 140px); align-self: start; }
.sa-doc__index ol { margin: 16px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; counter-reset: idx; }
.sa-doc__index a { display: block; font-size: 13.5px; line-height: 1.45; color: inherit; text-decoration: none; opacity: .6; transition: opacity .3s var(--sa-ease); }
.sa-doc__index a:hover, .sa-doc__index a:focus-visible { opacity: 1; }
.sa-doc__body { min-width: 0; max-width: 74ch; }
.sa-doc__sec { padding: 0 0 clamp(26px, 3vw, 44px); scroll-margin-top: clamp(90px, 12vh, 130px); }
.sa-doc__sec + .sa-doc__sec { padding-top: clamp(26px, 3vw, 44px); border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent); }
.sa-doc__sec h2 { margin: 0 0 clamp(14px, 1.4vw, 22px); font-size: clamp(19px, 1.5vw, 27px); font-weight: 500; letter-spacing: -.025em; line-height: 1.2; }
.sa-doc__sec p { margin: 0 0 1em; font-size: clamp(15px, 1vw, 17px); line-height: 1.75; opacity: .8; text-wrap: pretty; }
.sa-doc__sec p:last-child, .sa-doc__sec ul:last-child { margin-bottom: 0; }
.sa-doc__sec ul { margin: 0 0 1em; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sa-doc__sec li { position: relative; padding-left: 20px; font-size: clamp(15px, 1vw, 17px); line-height: 1.7; opacity: .8; }
.sa-doc__sec li::before { content: ""; position: absolute; left: 2px; top: .7em; width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .5; }
.sa-doc__sec a { color: inherit; text-underline-offset: 3px; }
.sa-doc__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: var(--sa-section); padding-top: clamp(24px, 3vw, 44px); border-top: 1px solid color-mix(in srgb, currentColor 22%, transparent); }
.sa-doc__foot p { margin: 0 auto 0 0; font-size: clamp(17px, 1.3vw, 24px); letter-spacing: -.02em; }
@media (max-width: 900px) {
	.sa-doc__cols { grid-template-columns: 1fr; gap: 28px; }
	.sa-doc__index { position: static; padding-bottom: 8px; border-bottom: 1px solid color-mix(in srgb, currentColor 14%, transparent); }
	.sa-doc__index ol { flex-direction: row; flex-wrap: wrap; gap: 8px 16px; }
	.sa-doc__foot p { flex: 1 0 100%; }
}
/* ---------------------------------------------------------------- 404 */
.sa-404 { width: min(100% - 2 * var(--sa-gutter), var(--sa-max)); margin-inline: auto; padding: clamp(40px, 10vw, 140px) 0 var(--sa-section); font-family: var(--sa-font); }
.sa-404__head { max-width: 26ch; }
.sa-404__title { margin: clamp(14px, 1.6vw, 26px) 0 0; font-size: clamp(40px, 7vw, 150px); font-weight: 500; letter-spacing: -.05em; line-height: .92; text-wrap: balance; }
.sa-404__lead { margin: clamp(18px, 2vw, 30px) 0 0; max-width: 44ch; font-size: clamp(16px, 1.05vw, 21px); line-height: 1.6; opacity: .72; }
.sa-404 .sa-talk__actions { margin-top: clamp(24px, 2.6vw, 44px); }
.sa-404__work { margin-top: var(--sa-section); padding-top: clamp(24px, 3vw, 48px); border-top: 1px solid color-mix(in srgb, currentColor 22%, transparent); }
.sa-404__work .sa-steps { margin-top: clamp(20px, 2.4vw, 40px); }
/* ---------------------------------------------------------------- Cookie notice */
.sa-consent { position: fixed; z-index: 9500; left: var(--sa-gutter); bottom: calc(20px + env(safe-area-inset-bottom)); width: min(460px, calc(100vw - 2 * var(--sa-gutter))); opacity: 0; transform: translateY(14px); transition: opacity .5s var(--sa-ease), transform .6s var(--sa-ease); }
.sa-consent.is-in { opacity: 1; transform: none; }
.sa-consent__box { display: flex; flex-direction: column; gap: 16px; padding: 20px 22px 18px; border-radius: 18px; background: #f4f4f2; color: #0a0a0a; box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .55); }
.sa-consent__title { margin: 0 0 6px; font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.sa-consent__text p { margin: 0; font-size: 14px; line-height: 1.55; opacity: .75; }
.sa-consent__text a { color: inherit; text-underline-offset: 3px; }
.sa-consent__actions { display: flex; gap: 8px; }
.sa-consent__btn { flex: 1; appearance: none; border: 1px solid rgba(10, 10, 10, .22); background: transparent; color: inherit; font: 500 14px/1 var(--sa-font); padding: 13px 16px; border-radius: 999px; cursor: pointer; transition: background .3s var(--sa-ease), color .3s, border-color .3s, transform .3s var(--sa-ease); }
.sa-consent__btn:hover { border-color: #0a0a0a; }
.sa-consent__btn:active { transform: scale(.98); }
.sa-consent__btn--solid { background: #0a0a0a; border-color: #0a0a0a; color: #f4f4f2; }
.sa-consent__btn--solid:hover { background: #2b2b2b; border-color: #2b2b2b; }
@media (max-width: 720px) {
	.sa-consent { left: 12px; right: 12px; width: auto; bottom: calc(12px + env(safe-area-inset-bottom)); }
	.sa-consent__box { padding: 18px 18px 16px; }
}
/* Ink/canvas tokens for the shared pill buttons, wherever they appear. */
body.sa-site { --t-fg: #0a0a0a; --t-bg: #f4f4f2; }
.sa-talk-page, .sa-404-page, .sa-on-dark { --t-fg: #f4f4f2; --t-bg: #020202; }
.sa-site a.sa-talk__btn--solid, .sa-site a.sa-talk__btn:hover { color: var(--t-bg); }
.sa-404__title { font-size: clamp(38px, 5.6vw, 112px); }
.sa-404__head { max-width: 34ch; }
.sa-404-page { color: #f4f4f2; }
.sa-404-page .sa-step, .sa-404-page .sa-steps { color: #f4f4f2; }

/* ---------------------------------------------------------------- Author credit (6.3)
   A signature, not an ad: last line of the footer, small, quiet, and it inherits the footer's
   colour because the mark is painted as a CSS mask over currentColor — so it works on any
   background, light or dark. Switched off from Dashboard → Appearance. */
.sa-credit { display: flex; align-items: center; gap: .5em; font-size: 12px; line-height: 1; letter-spacing: .01em; }
.sa-credit__link { display: inline-flex; align-items: center; gap: .5em; color: inherit; text-decoration: none; opacity: .55; transition: opacity .3s var(--sa-ease-io); }
.sa-credit__link:hover, .sa-credit__link:focus-visible { opacity: 1; }
.sa-credit__mark { display: block; width: 78px; height: 14px; background-color: currentColor; -webkit-mask: var(--sa-credit-url) left center / contain no-repeat; mask: var(--sa-credit-url) left center / contain no-repeat; }
@media (max-width: 600px) { .sa-credit { font-size: 11px; } .sa-credit__mark { width: 66px; height: 12px; } }

/* ---------------------------------------------------------------- Work layouts: index + editorial grid
   Moved here from the retired k.css so the projects widget keeps its three layouts (cards, index,
   grid) with a single stylesheet. Tokens remapped to the --sa-* scale. */

/* ------------------------------------------------------------------ Work index (list with hover preview) */
.sa-index { border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent); }
.sa-index__row { display: grid; grid-template-columns: 56px minmax(0, 4fr) minmax(0, 3fr) minmax(0, 2fr) 60px; align-items: baseline; gap: var(--sa-gap); padding: clamp(18px, 1.8vw, 30px) 0; border-bottom: 1px solid color-mix(in srgb, currentColor 14%, transparent); text-decoration: none; color: inherit; transition: opacity .5s var(--sa-ease-io); }
.sa-index:hover .sa-index__row { opacity: .32; }
.sa-index .sa-index__row:hover { opacity: 1; }
.sa-index__num { font-size: 12px; opacity: .5; font-variant-numeric: tabular-nums; }
.sa-index__title { font-size: clamp(26px, 3vw, 72px); line-height: 1; letter-spacing: -.045em; font-weight: 500; transition: transform .8s var(--sa-ease); }
.sa-index__row:hover .sa-index__title { transform: translateX(10px); }
.sa-index__cats, .sa-index__year { font-size: 13px; opacity: .6; }
.sa-index__year { text-align: right; font-variant-numeric: tabular-nums; }
.sa-index__thumb { display: none; }
.sa-preview { position: fixed; z-index: 70; left: 0; top: 0; width: clamp(240px, 22vw, 520px); aspect-ratio: 4 / 5; pointer-events: none; overflow: hidden; opacity: 0; transform: translate3d(-50%, -50%, 0) scale(.92); transition: opacity .45s var(--sa-ease-io), transform .8s var(--sa-ease); will-change: transform; }
.sa-preview.is-on { opacity: 1; }
.sa-preview img, .sa-preview video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .35s; }
.sa-preview img.is-on, .sa-preview video.is-on { opacity: 1; }
@media (hover: none), (max-width: 900px) {
	.sa-index__row { grid-template-columns: 88px minmax(0, 1fr); grid-template-rows: auto auto; row-gap: 4px; align-items: center; }
	.sa-index__thumb { display: block; grid-row: 1 / span 2; aspect-ratio: 4 / 5; overflow: hidden; background: color-mix(in srgb, currentColor 7%, transparent); }
	.sa-index__thumb img { width: 100%; height: 100%; object-fit: cover; }
	.sa-index__num, .sa-index__year { display: none; }
	.sa-index__title { font-size: clamp(24px, 6.4vw, 40px); }
	.sa-index:hover .sa-index__row { opacity: 1; }
	.sa-preview { display: none; }
}

/* ------------------------------------------------------------------ Work grid (editorial, asymmetric) */
.sa-works { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(56px, 7vw, 160px) var(--sa-gap); }
.sa-work { display: block; text-decoration: none; color: inherit; grid-column: span 6; }
.sa-work:nth-child(6n + 1) { grid-column: 1 / span 7; }
.sa-work:nth-child(6n + 2) { grid-column: 9 / span 4; margin-top: clamp(80px, 14vw, 320px); }
.sa-work:nth-child(6n + 3) { grid-column: 2 / span 4; }
.sa-work:nth-child(6n + 4) { grid-column: 7 / span 6; margin-top: clamp(40px, 6vw, 140px); }
.sa-work:nth-child(6n + 5) { grid-column: 1 / span 12; }
.sa-work:nth-child(6n + 6) { grid-column: 4 / span 6; }
.sa-work__media { position: relative; overflow: hidden; background: color-mix(in srgb, currentColor 7%, transparent); aspect-ratio: 4 / 5; }
.sa-work:nth-child(6n + 1) .sa-work__media, .sa-work:nth-child(6n + 4) .sa-work__media { aspect-ratio: 4 / 3; }
.sa-work:nth-child(6n + 5) .sa-work__media { aspect-ratio: 21 / 9; }
.sa-work__media img, .sa-work__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--sa-ease); }
.sa-work:hover .sa-work__media img, .sa-work:hover .sa-work__media video { transform: scale(1.035); }
.sa-work__info { display: grid; grid-template-columns: 1fr auto; gap: 2px 16px; padding-top: 16px; }
.sa-work__title { font-size: clamp(20px, 1.6vw, 36px); letter-spacing: -.03em; font-weight: 500; line-height: 1.1; }
.sa-work__meta { grid-column: 1; font-size: 13px; opacity: .6; }
.sa-work__year { grid-column: 2; grid-row: 1; font-size: 13px; opacity: .6; font-variant-numeric: tabular-nums; }
@media (max-width: 900px) {
	.sa-works { grid-template-columns: 1fr; row-gap: 56px; }
	.sa-work, .sa-work:nth-child(n) { grid-column: 1 / -1; margin-top: 0; }
	.sa-work:nth-child(n) .sa-work__media { aspect-ratio: 4 / 5; }
}

/* ================================================================== Studio sections (xk-*)
   Team, client logos, services and testimonials. Monochrome by construction: the separation
   comes from hairlines, weight and opacity, never from colour. Every value a client might want
   to change is a CSS variable or an Elementor control; nothing here is a dead end. */

.xk-empty { margin: 0; font-size: 14px; opacity: .55; }
.xk-empty a { color: inherit; text-underline-offset: .25em; }

/* ------------------------------------------------------------------ Team */
.xk-team { --xk-team-cols: 3; display: grid; grid-template-columns: repeat(var(--xk-team-cols), minmax(0, 1fr)); gap: clamp(28px, 3vw, 56px) var(--sa-gap); margin: 0; padding: 0; list-style: none; }
.xk-team__item { display: flex; flex-direction: column; gap: 4px; }
.xk-team__photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; margin-bottom: 14px; background: color-mix(in srgb, currentColor 7%, transparent); }
.xk-team__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--xk-focus, 50% 50%); transition: transform 1.4s var(--sa-ease); }
.xk-team__item:hover .xk-team__photo img { transform: scale(1.03); }
/* No photo yet: a plain field, not a broken box. */
.xk-team__photo[data-empty]::after { content: ""; position: absolute; inset: 0; border: 1px solid color-mix(in srgb, currentColor 14%, transparent); }
.xk-team__name { margin: 0; font-size: clamp(17px, 1.25vw, 22px); font-weight: 500; letter-spacing: -.02em; line-height: 1.2; }
.xk-team__role { margin: 0; font-size: 14px; opacity: .6; }
.xk-team__bio { margin: 10px 0 0; font-size: 14.5px; line-height: 1.55; opacity: .75; max-width: 34ch; }
.xk-team__links { display: flex; flex-wrap: wrap; gap: 14px; margin: 12px 0 0; padding: 0; list-style: none; font-size: 13px; }
.xk-team__links a { color: inherit; text-decoration: none; opacity: .6; background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat; transition: opacity .3s var(--sa-ease-io); }
.xk-team__links a:hover, .xk-team__links a:focus-visible { opacity: 1; }
@media (max-width: 900px) { .xk-team { grid-template-columns: repeat(min(2, var(--xk-team-cols)), minmax(0, 1fr)); } }
@media (max-width: 560px) { .xk-team { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ Client logos */
.xk-logos { --xk-logos-cols: 6; --xk-logo-h: 34px; display: grid; grid-template-columns: repeat(var(--xk-logos-cols), minmax(0, 1fr)); gap: clamp(24px, 3vw, 56px); align-items: center; }
/* La opacidad va en la marca, no en el bloque entero: si no, el sector hereda 0,75 × 0,6 = 0,45
   y se queda en 3,1:1, por debajo de la AA. */
.xk-logo { --xk-logo-o: .75; display: flex; flex-direction: column; align-items: center; gap: 8px; color: inherit; text-decoration: none; }
.xk-logo__mark { display: flex; align-items: center; justify-content: center; height: var(--xk-logo-h); width: 100%; opacity: var(--xk-logo-o); transition: opacity .4s var(--sa-ease-io); }
a.xk-logo:hover .xk-logo__mark, a.xk-logo:focus-visible .xk-logo__mark { opacity: 1; }
.xk-logo__img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; }
/* No logo file: the name, set as a wordmark, instead of an empty slot. */
.xk-logo__text { font-size: clamp(14px, 1.1vw, 18px); font-weight: 500; letter-spacing: -.01em; }
.xk-logo__sector { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: .55; }
.xk-logos--grid { row-gap: clamp(36px, 4vw, 72px); }
.xk-logos--marquee { display: block; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.xk-logos--marquee .xk-logos__track { display: flex; align-items: center; gap: clamp(32px, 4vw, 72px); width: max-content; animation: xk-marquee var(--xk-marquee, 40s) linear infinite; }
.xk-logos--marquee .xk-logos__dup { display: flex; align-items: center; gap: inherit; }
.xk-logos--marquee .xk-logo { flex: none; width: clamp(96px, 10vw, 160px); }
.xk-logos--marquee:hover .xk-logos__track { animation-play-state: paused; }
@keyframes xk-marquee { to { transform: translate3d(-50%, 0, 0); } }
@media (prefers-reduced-motion: reduce) { .xk-logos--marquee .xk-logos__track { animation: none; } }
@media (max-width: 900px) { .xk-logos { grid-template-columns: repeat(min(4, var(--xk-logos-cols)), minmax(0, 1fr)); } }
@media (max-width: 560px) { .xk-logos { grid-template-columns: repeat(min(2, var(--xk-logos-cols)), minmax(0, 1fr)); } }

/* ------------------------------------------------------------------ Services */
.xk-services { --xk-rule: color-mix(in srgb, currentColor 16%, transparent); --xk-services-cols: 2; margin: 0; padding: 0; list-style: none; }
.xk-services--list { border-top: 1px solid var(--xk-rule); }
.xk-services--list .xk-services__item { border-bottom: 1px solid var(--xk-rule); }
.xk-service { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: baseline; gap: clamp(16px, 2.4vw, 48px); padding-block: clamp(18px, 2vw, 34px); color: inherit; text-decoration: none; transition: opacity .45s var(--sa-ease-io); }
.xk-services--list:hover .xk-services__item { opacity: .38; }
.xk-services--list .xk-services__item:hover { opacity: 1; }
.xk-service__num { font-size: 12px; opacity: .5; font-variant-numeric: tabular-nums; }
.xk-service__body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.xk-service__title { font-size: clamp(22px, 2.6vw, 52px); font-weight: 500; letter-spacing: -.035em; line-height: 1.05; transition: transform .7s var(--sa-ease); }
.xk-service:hover .xk-service__title { transform: translateX(10px); }
.xk-service__promise { font-size: clamp(14px, 1vw, 17px); line-height: 1.5; opacity: .62; max-width: 52ch; }
.xk-service__arrow { display: block; width: 18px; opacity: 0; transform: translate3d(-6px, 0, 0); transition: opacity .4s var(--sa-ease-io), transform .5s var(--sa-ease); }
.xk-service__arrow svg { display: block; width: 100%; }
.xk-service:hover .xk-service__arrow, .xk-service:focus-visible .xk-service__arrow { opacity: .7; transform: none; }
.xk-services--grid { display: grid; grid-template-columns: repeat(var(--xk-services-cols), minmax(0, 1fr)); gap: var(--sa-gap); }
.xk-services--grid .xk-services__item { border-top: 1px solid var(--xk-rule); }
.xk-services--grid .xk-service { grid-template-columns: auto minmax(0, 1fr); }
.xk-services--grid .xk-service__arrow { display: none; }
@media (max-width: 700px) {
	.xk-service { grid-template-columns: auto minmax(0, 1fr); gap: 12px 16px; }
	.xk-service__arrow { display: none; }
	.xk-services--grid { grid-template-columns: 1fr; }
	.xk-services--list:hover .xk-services__item { opacity: 1; }
}

/* ------------------------------------------------------------------ Service page: includes + phases */
.xk-includes { --xk-includes-cols: 2; display: grid; grid-template-columns: repeat(var(--xk-includes-cols), minmax(0, 1fr)); gap: 0 var(--sa-gap); margin: 0; padding: 0; list-style: none; }
.xk-includes__item { padding: 14px 0; border-bottom: 1px solid color-mix(in srgb, currentColor 14%, transparent); font-size: clamp(15px, 1.05vw, 18px); }
.xk-phases { --xk-phases-cols: 3; display: grid; grid-template-columns: repeat(var(--xk-phases-cols), minmax(0, 1fr)); gap: clamp(24px, 3vw, 56px) var(--sa-gap); margin: 0; padding: 0; list-style: none; counter-reset: none; }
.xk-phases__item { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; border-top: 1px solid color-mix(in srgb, currentColor 22%, transparent); }
.xk-phases__num { font-size: 12px; opacity: .5; font-variant-numeric: tabular-nums; }
.xk-phases__title { font-size: clamp(18px, 1.4vw, 26px); font-weight: 500; letter-spacing: -.025em; }
.xk-phases__body { font-size: 15px; line-height: 1.55; opacity: .7; }
@media (max-width: 800px) { .xk-includes, .xk-phases { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ Testimonials */
.xk-quotes { --xk-quotes-cols: 2; display: grid; grid-template-columns: repeat(var(--xk-quotes-cols), minmax(0, 1fr)); gap: clamp(28px, 3vw, 64px) var(--sa-gap); margin: 0; padding: 0; list-style: none; }
.xk-quote { display: flex; flex-direction: column; gap: 16px; margin: 0; padding-top: 20px; border-top: 1px solid color-mix(in srgb, currentColor 22%, transparent); }
.xk-quote__logo { height: 26px; }
.xk-quote__logo img { height: 100%; width: auto; object-fit: contain; filter: grayscale(1); opacity: .7; }
.xk-quote__text { margin: 0; font-size: clamp(18px, 1.5vw, 28px); line-height: 1.35; letter-spacing: -.02em; text-wrap: pretty; }
.xk-quote__text::before { content: "“"; }
.xk-quote__text::after { content: "”"; }
.xk-quote__result { margin: 0; font-size: 14px; font-weight: 500; letter-spacing: .01em; }
.xk-quote__who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 4px; }
.xk-quote__face { display: block; width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex: none; background: color-mix(in srgb, currentColor 8%, transparent); }
.xk-quote__face img { width: 100%; height: 100%; object-fit: cover; }
.xk-quote__meta { display: flex; flex-direction: column; min-width: 0; }
.xk-quote__person { font-size: 14.5px; font-weight: 500; }
.xk-quote__role { font-size: 13px; opacity: .6; }
.xk-quote__project { align-self: flex-start; font-size: 13px; color: inherit; text-decoration: none; opacity: .6; background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat; transition: opacity .3s; }
.xk-quote__project:hover { opacity: 1; }
@media (max-width: 800px) { .xk-quotes { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ Service page (fallback template) */
.xk-service-page { padding-bottom: var(--sa-section); }
.xk-service-page__hero { padding: clamp(48px, 9vw, 160px) 0 clamp(28px, 4vw, 72px); }
.xk-service-page__title { margin: 0; font-size: clamp(38px, 6vw, 118px); font-weight: 500; letter-spacing: -.05em; line-height: .95; text-wrap: balance; }
.xk-service-page__promise { margin: clamp(18px, 2.2vw, 36px) 0 0; max-width: 46ch; font-size: clamp(17px, 1.3vw, 26px); line-height: 1.4; opacity: .7; text-wrap: pretty; }
.xk-service-page__intro { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(24px, 4vw, 90px); padding-top: clamp(32px, 5vw, 90px); border-top: 1px solid color-mix(in srgb, currentColor 16%, transparent); }
.xk-service-page__aside h2 { margin: 0 0 10px; }
.xk-service-page__aside p { margin: 0; font-size: 15px; line-height: 1.55; opacity: .75; max-width: 34ch; }
.xk-service-page__block { padding-top: var(--sa-section); }
.xk-service-page__block > .sa-eyebrow { margin-bottom: clamp(18px, 2vw, 36px); }
.xk-service-page__cta { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 20px; padding-top: var(--sa-section); }
.xk-service-page__cta-text { margin: 0; font-size: clamp(24px, 3.4vw, 60px); font-weight: 500; letter-spacing: -.035em; }
@media (max-width: 800px) { .xk-service-page__intro { grid-template-columns: 1fr; } }

/* Elementor Pro's page-transition overlay ships with an orange default (#FFBC7D) that is not
   exposed as a kit setting under any name we could find. The site is monochrome; this is the
   one place it is corrected. */
e-page-transition { background-color: var(--sa-bg, #f4f4f2) !important; }

/* The plugin's own full-page templates must not depend on the theme or the Elementor kit for
   their base colours: they take them from Dashboard → Appearance, like everything else. */
body.sa-site { background-color: var(--sa-bg); color: var(--sa-text); }

/* Habeas Data: la casilla de autorización va en todo formulario que recoja datos personales.
   Pequeña, legible y con un área de toque de 24 px, no un adorno escondido. */
.sa-consent-check { display: flex; align-items: flex-start; gap: 10px; margin: 14px 0 0; font-size: 12.5px; line-height: 1.45; opacity: .75; cursor: pointer; }
.sa-consent-check input { flex: none; width: 18px; height: 18px; margin: 1px 0 0; accent-color: currentColor; cursor: pointer; }
.sa-consent-check a { color: inherit; text-underline-offset: .2em; text-decoration: underline; }
.sa-consent-check:has(input:focus-visible) { outline: 1px solid currentColor; outline-offset: 4px; }

/* ------------------------------------------------------------------ Header de XKLA */
/* El logotipo se pinta como máscara CSS sobre un color, así que su <img> es transparente y el
   contenedor necesita una caja propia o se queda a cero de alto. */
.sa-logo .sa-logo-mask { display: block; width: 96px; height: 40px; }
.sa-logo .sa-logo-mask img { display: block; width: 100%; height: 100%; opacity: 0 !important; }
@media (max-width: 767px) { .sa-logo .sa-logo-mask { width: 82px; height: 34px; } }
.sa-lang { display: flex; gap: 10px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.sa-lang a { color: inherit; text-decoration: none; opacity: .45; transition: opacity .3s var(--sa-ease-io); }
.sa-lang a:hover, .sa-lang a.is-active { opacity: 1; }
.xk-header__cta .elementor-button { font-size: 14px; padding: 11px 20px; }
header.elementor-location-header .elementor-menu-toggle { width: 40px; height: 40px; }
@media (max-width: 1024px) { .xk-header__cta { display: none; } }

/* El antetítulo se marca con .sa-eyebrow en el widget de Elementor, así que la clase cae en el
   contenedor y no en el <p>. Vale para los dos casos. */
/* La clase cae en el contenedor del widget; el texto vive dentro. Si se le pone la opacidad a los
   dos, se multiplica (0,6 × 0,6 = 0,36) y el contraste se cae al 2,4:1. Solo al de dentro. */
.sa-eyebrow, .sa-eyebrow .elementor-heading-title {
	margin: 0; font-size: 12px; font-weight: 500; letter-spacing: .12em;
	text-transform: uppercase; line-height: 1.4;
}
.sa-eyebrow { opacity: 1; }
.sa-eyebrow .elementor-heading-title, p.sa-eyebrow { opacity: .6; }
/* Entradilla y titular de página compuestos con widgets nativos. */
.xk-lead .elementor-widget-container > p:last-child { margin-bottom: 0; }
.xk-lead { max-width: 58ch; }
.xk-h1 .elementor-heading-title { text-wrap: balance; }
/* Botón secundario: mismo tamaño, sin relleno. */
.xk-btn--quiet .elementor-button { background: transparent; color: inherit; border-color: color-mix(in srgb, currentColor 35%, transparent); }
.xk-btn--quiet .elementor-button:hover { background: color-mix(in srgb, currentColor 8%, transparent); border-color: currentColor; color: inherit; }
/* Lista de puntos del bloque «Por qué importa». */
.xk-points .elementor-icon-list-text { font-size: 15px; opacity: .8; }
.xk-points .elementor-icon-list-item { border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent); padding-top: 10px; }

/* Header en móvil: logotipo a la izquierda, hamburguesa e idioma a la derecha, en una sola línea.
   Sin esto los contenedores de Elementor pasan a 100 % de ancho y el header mide 170 px. */
/* Header, por estructura y no por clase: Elementor no aplica _css_classes a los contenedores en
   esta versión, y por debajo de la tableta los pone en columna. El header es una fila a cualquier
   ancho, con el logotipo a un lado y la navegación al otro. */
header.elementor-location-header > .e-con {
	flex-direction: row !important; flex-wrap: nowrap !important;
	align-items: center !important; justify-content: space-between !important;
}
header.elementor-location-header > .e-con > .e-con { width: auto !important; flex: 0 0 auto; }
header.elementor-location-header .elementor-widget-image { flex: 0 0 auto; width: auto; }
@media (max-width: 767px) {
	header.elementor-location-header > .e-con > .e-con { gap: 14px !important; }
	header.elementor-location-header .elementor-nav-menu--dropdown { text-align: left; }
}
/* La hamburguesa es un icono, no un botón con caja. */
.elementor-menu-toggle { background: transparent !important; border: 0 !important; padding: 4px !important; box-shadow: none !important; }
.elementor-menu-toggle:hover { background: transparent !important; }
/* El menú desplegado tapa el efecto difference del header: mientras está abierto, se desactiva. */
.xk-header .elementor-nav-menu--dropdown a { font-size: 22px; font-weight: 500; letter-spacing: -.02em; }

/* El lanzador del chat no puede quedar encima de los botones del aviso de cookies. */
.sa-consent { z-index: 9500; }
body:has(.sa-consent:not([hidden])) .sa-chat { opacity: 0; pointer-events: none; }
@media (max-width: 600px) { .sa-chat { bottom: 14px; right: 14px; } }
/* El desplegable del menú ocupa sitio en el flujo aunque esté cerrado y estira el header. */
header.elementor-location-header .elementor-nav-menu--dropdown { position: absolute; left: 0; right: 0; top: 100%; }
header.elementor-location-header .elementor-nav-menu__container { margin: 0 !important; }
header.elementor-location-header .elementor-widget-nav-menu { display: flex; align-items: center; }

/* Un titular partido en palabras no puede desbordar: cada palabra es un inline-block y una
   palabra larga a 40 px se sale de la pantalla en un móvil. */
.sa-split-o { max-width: 100%; }
.sa-doc__title, .xk-h1 .elementor-heading-title, h1, h2 { overflow-wrap: break-word; }
@media (max-width: 480px) { .sa-doc__title { font-size: clamp(30px, 9vw, 44px); } }
.sa-brief__check { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0 0; font-size: 13px; line-height: 1.45; opacity: .78; cursor: pointer; }
.sa-brief__check input { flex: none; width: 18px; height: 18px; margin: 1px 0 0; accent-color: currentColor; }
.sa-brief__check a { color: inherit; text-decoration: underline; text-underline-offset: .2em; }
.sa-brief__check--required { opacity: 1; }
.sa-chat__consent { display: flex; align-items: flex-start; gap: 8px; margin: 10px 0 0; font-size: 12px; line-height: 1.4; opacity: .8; cursor: pointer; }
.sa-chat__consent input { flex: none; width: 16px; height: 16px; margin: 1px 0 0; accent-color: currentColor; }
.sa-chat__consent a { color: inherit; text-decoration: underline; }

/* ------------------------------------------------------------------ Migas de pan */
.xk-crumbs { padding-top: clamp(84px, 9vw, 130px); font-size: 12px; letter-spacing: .04em; }
.xk-crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.xk-crumbs li + li::before { content: "/"; margin-right: 8px; opacity: .35; }
.xk-crumbs a { color: inherit; text-decoration: none; opacity: .55; }
.xk-crumbs a:hover, .xk-crumbs a:focus-visible { opacity: 1; }
.xk-crumbs [aria-current] { opacity: .85; }
.xk-service-page__hero { padding-top: clamp(20px, 2.5vw, 40px); }

/* ------------------------------------------------------------------ Accesibilidad
   Lo mínimo que hace navegable un sitio con teclado: un atajo al contenido y un foco que se ve.
   El foco no se dibuja con color (la web es monocroma), sino con un contorno de la propia tinta. */
.sa-skip { position: fixed; left: 12px; top: -80px; z-index: 10000; padding: 12px 18px; border-radius: 999px;
	background: var(--sa-text, #0a0a0a); color: var(--sa-bg, #f4f4f2); font-size: 14px; font-weight: 500;
	text-decoration: none; transition: top .2s var(--sa-ease-io); }
.sa-skip:focus { top: 12px; }
.sa-site :is(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline: 2px solid currentColor; outline-offset: 3px; border-radius: 2px;
}
.sa-site :focus:not(:focus-visible) { outline: none; }
/* Un enlace dentro de un párrafo tiene que distinguirse sin depender del color. */
.sa-prose a, .xk-foot__contact a, .sa-doc__body a { text-decoration: underline; text-underline-offset: .18em; }
@media (prefers-reduced-motion: reduce) {
	.sa-site *, .sa-site *::before, .sa-site *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* WhatsApp y credenciales: enlaces, no botones de color. En una web monocroma el verde de WhatsApp
   sería la única excepción, y no la vale: el icono basta para reconocerlo. */
.xk-wa { display: inline-flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; font-size: 15px; font-weight: 500; }
.xk-wa__icon { display: block; width: 20px; height: 20px; }
.xk-wa__icon svg { display: block; width: 100%; height: 100%; }
.xk-wa span:last-child { background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat; }
.xk-wa:hover span:last-child { background-size: 0 1px; background-position: 100% 100%; transition: background-size .5s var(--sa-ease); }
.xk-creds { display: inline-flex; align-items: baseline; gap: .5em; color: inherit; text-decoration: none; font-size: 15px; font-weight: 500; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.xk-creds:hover { opacity: .65; }
/* Los marcadores [FALTA: …] se ven, a propósito, para que nadie los olvide antes de publicar. */
.xk-falta, p:has(> :only-child) { }
.xk-falta { font-size: 13px; opacity: .5; }

/* ------------------------------------------------------------------ Contraste AA
   Con tinta #0a0a0a sobre papel #f4f4f2, una opacidad de 0.50 deja el texto en 3,5:1 y no llega al
   4,5:1 que exige la AA. A partir de 0.58 sí. Estos son los sitios donde había texto por debajo.
   Los puntos, viñetas y estados de hover no son texto y se quedan como están. */
.sa-index__num, .xk-service__num, .xk-phases__num,
.sa-brief .sa-brief__sum dt, .sa-brief .sa-brief__enter,
.sa-cv__list span, .sa-cv__n, .sa-msg time, .sa-msg__state,
.sa-talk__n, .sa-tl__axis, .sa-pd__price s, .sa-lang a { opacity: .6; }
.sa-brief .sa-brief__input::placeholder { opacity: .45; }
/* 0,55 tampoco llega (4,31:1). Todo el texto secundario sube a 0,6 → 5,07:1. */
.sa-p-facts dt, .sa-next__label, .sa-brief__kicker, .sa-pd__crumb,
.sa-msg.is-pending, .sa-credit__link, .xk-logo__sector, .xk-empty,
.xk-crumbs a, .sa-doc__meta, .sa-index__cats, .sa-index__year,
.sa-work__meta, .sa-work__year, .sa-filter button sup { opacity: .6; }
/* El crédito del pie: el brief pide ~0,55; 0,6 es lo más cerca que llega cumpliendo la AA. */
.sa-credit__link:hover, .sa-credit__link:focus-visible { opacity: 1; }
