:root {
    --bg: #101014;
    --bg-soft: #19191f;
    --text: #ffffff;
    --muted: #b9b7c1;
    --line: rgba(255,255,255,.12);
    --lilac: #a970ff;
    --header-h: 100px;
    --ease-smooth: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: "Poppins", Arial, sans-serif; overflow-x: hidden; }
body { animation: page-fade .65s ease both; }
@keyframes page-fade { from { opacity: 0; } to { opacity: 1; } }
body.is-leaving { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--lilac); outline-offset: 4px; }

.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; padding: 12px 18px; color: #101014; background: #fff; border-radius: 8px; transition: top .25s ease; }
.skip-link:focus { top: 16px; }

.site-header { height: var(--header-h); position: absolute; inset: 0 0 auto; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(16,16,20,.78); backdrop-filter: blur(18px); }
.site-header.is-inner { position: fixed; }
.site-header.is-scrolled { position: fixed; background: rgba(12,12,16,.94); box-shadow: 0 12px 38px rgba(0,0,0,.18); animation: header-in .4s ease both; }
@keyframes header-in { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.header-shell { width: min(1720px, calc(100% - 8vw)); height: 100%; margin: auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 48px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-image { overflow: visible; }
.brand-logo { display: block; width: clamp(190px, 13vw, 250px); height: auto; transition: transform .55s var(--ease-smooth), filter .55s var(--ease-smooth); }
.brand-image:hover .brand-logo { transform: translateY(-2px) scale(1.018); filter: drop-shadow(0 9px 18px rgba(169,112,255,.2)); }
.main-menu { justify-self: center; display: flex; align-items: center; gap: clamp(18px, 2.1vw, 38px); }
.main-menu a { position: relative; color: #dedce3; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; padding: 10px 0; transition: color .3s ease; }
.main-menu a::after { content: ""; position: absolute; left: 0; bottom: 3px; width: 0; height: 2px; background: var(--lilac); transition: width .3s ease; }
.main-menu a:hover, .main-menu a:focus-visible, .main-menu a.active { color: #fff; }
.main-menu a:hover::after, .main-menu a:focus-visible::after, .main-menu a.active::after { width: 100%; }
.header-cta { display: inline-flex; align-items: center; gap: 12px; padding: 14px 18px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; transition: border-color .3s ease, background .3s ease, transform .3s ease; }
.header-cta:hover { border-color: var(--lilac); background: rgba(169,112,255,.12); transform: translateY(-2px); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; padding: 12px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; transition: transform .3s ease, opacity .3s ease; }

.hero { position: relative; min-height: 100svh; overflow: hidden; background: #111115; }
.hero-track { min-height: 100svh; position: relative; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: scale(1.025); transition: opacity .85s ease, visibility .85s ease, transform 1.4s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }
.hero-image { position: absolute; inset: 0; overflow: hidden; transform: scale(1.05); transition: transform 7s ease; }
.hero-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,13,17,.97) 0%, rgba(13,13,17,.82) 43%, rgba(13,13,17,.20) 100%); }
.hero-slide.is-active .hero-image { transform: scale(1); }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.18), transparent 35%, rgba(7,7,10,.4)); pointer-events: none; }
.hero-glow { position: absolute; width: 680px; height: 680px; left: 4%; top: 18%; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 28%, transparent), transparent 67%); filter: blur(20px); opacity: .9; }
.hero-content { position: relative; z-index: 3; width: min(1720px, calc(100% - 8vw)); margin: 0 auto; padding-top: clamp(190px, 22vh, 270px); }
.hero-slide .eyebrow, .hero-slide h1, .hero-slide .hero-description, .hero-slide .hero-actions, .hero-slide .hero-service-tag { opacity: 0; transform: translateY(28px); transition: opacity .85s var(--ease-smooth), transform .85s var(--ease-smooth); }
.hero-slide h1 { transition-delay: .08s; }
.hero-slide .hero-description { transition-delay: .16s; }
.hero-slide .hero-actions { transition-delay: .24s; }
.hero-slide .hero-service-tag { transition-delay: .32s; }
.hero-slide.is-active .eyebrow, .hero-slide.is-active h1, .hero-slide.is-active .hero-description, .hero-slide.is-active .hero-actions, .hero-slide.is-active .hero-service-tag { opacity: 1; transform: translateY(0); }
.hero-slide .hero-service-tag { transform: rotate(180deg) translateY(-28px); }
.hero-slide.is-active .hero-service-tag { transform: rotate(180deg) translateY(0); }
.eyebrow { margin: 0 0 26px; display: flex; align-items: center; gap: 14px; color: #d4d1da; font-size: 12px; font-weight: 600; letter-spacing: .17em; }
.eyebrow span { color: var(--accent); }
.eyebrow::before { content: ""; width: 54px; height: 1px; background: var(--accent); }
.hero h1 { max-width: 950px; margin: 0; font-size: clamp(3rem, 5.5vw, 6.6rem); line-height: .98; letter-spacing: -.055em; font-weight: 700; }
.hero h1 em { color: var(--accent); font-style: normal; font-weight: 700; }
.hero-description { max-width: 610px; color: #d2d0d7; font-size: clamp(1rem, 1.15vw, 1.2rem); line-height: 1.75; margin: 32px 0 0; }
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 56px; padding: 0 25px; border-radius: 6px; font-size: 14px; font-weight: 600; transition: transform .5s var(--ease-smooth), box-shadow .5s var(--ease-smooth), background .5s var(--ease-smooth), border-color .5s var(--ease-smooth); }
.button-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 40px color-mix(in srgb, var(--accent) 25%, transparent); }
.button-primary:hover { transform: translateY(-4px); box-shadow: 0 18px 46px color-mix(in srgb, var(--accent) 38%, transparent); }
.button-primary i { transition: transform .3s ease; }
.button-primary:hover i { transform: translateX(5px); }
.text-link { font-size: 13px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.3); padding: 8px 0; }
.text-link i { margin-left: 8px; transition: transform .3s ease; }
.text-link:hover i { transform: translateY(4px); }
.hero-service-tag { position: absolute; z-index: 3; right: 5vw; top: 52%; display: flex; align-items: center; gap: 16px; writing-mode: vertical-rl; transform: rotate(180deg); color: rgba(255,255,255,.78); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.hero-service-tag i { color: var(--accent); font-size: 16px; transform: rotate(90deg); }

.hero-footer { position: absolute; z-index: 10; left: 4vw; right: 4vw; bottom: 34px; display: grid; grid-template-columns: 1fr auto; align-items: center; }
.slider-controls { display: flex; align-items: center; gap: 14px; }
.slider-arrow { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.04); color: #fff; cursor: pointer; transition: border-color .3s ease, background .3s ease, transform .3s ease; }
.slider-arrow:hover { border-color: var(--lilac); background: var(--lilac); transform: scale(1.08); }
.slider-dots { display: flex; align-items: center; gap: 6px; }
.slider-dot { width: 42px; height: 30px; border: 0; background: transparent; cursor: pointer; padding: 14px 5px; }
.slider-dot span { display: block; height: 2px; background: rgba(255,255,255,.3); transition: background .3s ease, transform .3s ease; transform-origin: left; }
.slider-dot.is-active span { background: var(--lilac); transform: scaleX(1.2); }
.hero-counter { display: flex; align-items: baseline; gap: 8px; color: #7e7b86; font-size: 12px; }
.hero-counter { justify-self: end; }
.hero-counter strong { color: #fff; font-size: 24px; }

.section-shell { position: relative; z-index: 2; width: min(1560px, calc(100% - 8vw)); margin: 0 auto; }
.services-section { position: relative; overflow: hidden; padding: clamp(100px, 10vw, 170px) 0; color: #16151a; background: #f4f3f6; }
.section-watermark { position: absolute; top: 42px; left: 50%; transform: translateX(-50%); color: rgba(18,17,22,.028); font-size: clamp(8rem, 20vw, 25rem); font-weight: 800; letter-spacing: -.09em; line-height: .8; white-space: nowrap; pointer-events: none; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); align-items: end; gap: 9vw; margin-bottom: 74px; }
.section-kicker { display: flex; align-items: center; gap: 13px; margin: 0 0 20px; color: #6d6875; font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.section-kicker::before { content: ""; width: 44px; height: 1px; background: #8e5ae8; }
.section-kicker span { color: #8e5ae8; }
.section-heading h2 { margin: 0; font-size: clamp(3rem, 5.2vw, 6rem); line-height: 1.02; letter-spacing: -.06em; }
.section-heading h2 em { color: #8e5ae8; font-style: normal; }
.section-heading > p { max-width: 500px; margin: 0 0 8px; color: #68636f; font-size: 1rem; line-height: 1.8; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d8d5dc; border-left: 1px solid #d8d5dc; }
.service-card { position: relative; min-height: 340px; padding: clamp(28px, 3vw, 46px); border-right: 1px solid #d8d5dc; border-bottom: 1px solid #d8d5dc; background: rgba(255,255,255,.4); transition: color .58s var(--ease-smooth), background .58s var(--ease-smooth), transform .58s var(--ease-smooth), box-shadow .58s var(--ease-smooth); }
.service-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, #9d68f3, #7441c7); transform: scaleY(0); transform-origin: bottom; transition: transform .62s var(--ease-smooth); }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { color: #fff; transform: translateY(-10px); box-shadow: 0 28px 60px rgba(45,29,68,.2); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 46px; border: 1px solid #d5cedf; border-radius: 50%; color: #8e5ae8; font-size: 21px; transition: background .5s var(--ease-smooth), border-color .5s var(--ease-smooth), color .5s var(--ease-smooth), transform .5s var(--ease-smooth); }
.service-card:hover .service-icon { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.1); }
.service-card:hover .service-icon { transform: rotate(-7deg) scale(1.07); }
.service-number { position: absolute; top: 38px; right: 38px; color: #aaa5af; font-size: 12px; font-weight: 600; }
.service-card:hover .service-number { color: rgba(255,255,255,.6); }
.service-card h3 { margin: 0 0 16px; max-width: 320px; font-size: clamp(1.25rem, 1.5vw, 1.65rem); line-height: 1.2; letter-spacing: -.035em; }
.service-card p { margin: 0 0 26px; color: #6e6974; font-size: .94rem; line-height: 1.72; transition: color .35s ease; }
.service-card:hover p { color: rgba(255,255,255,.78); }
.service-more { position: absolute; left: clamp(28px, 3vw, 46px); bottom: 34px; display: inline-flex; align-items: center; gap: 12px; color: #6d3eb9; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; opacity: 0; transform: translateY(14px); transition: opacity .48s var(--ease-smooth), transform .48s var(--ease-smooth), color .48s var(--ease-smooth); }
.service-card:hover .service-more, .service-card:focus-visible .service-more { color: #fff; opacity: 1; transform: translateY(0); }
.service-more i { transition: transform .3s ease; }
.service-card:hover .service-more i { transform: translateX(5px); }

.cases-section { padding: clamp(100px, 10vw, 170px) 0; color: #fff; background: #121116; }
.section-heading-dark .section-kicker { color: #a9a5b1; }
.section-heading-dark > p { color: #aaa6b0; }
.cases-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 3vw, 54px); }
.case-card { display: block; min-width: 0; }
.case-image-wrap { position: relative; overflow: hidden; aspect-ratio: 1.58 / 1; border-radius: 3px; background: #232128; }
.case-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,9,12,.62)); transition: background .45s ease; }
.case-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.82); transition: transform .8s cubic-bezier(.2,.75,.25,1), filter .5s ease; }
.case-card:hover .case-image-wrap img { transform: scale(1.055); filter: saturate(1.08); }
.case-card:hover .case-image-wrap::after { background: linear-gradient(180deg, rgba(130,79,214,.08), rgba(10,9,12,.7)); }
.case-index { position: absolute; z-index: 2; left: 24px; bottom: 21px; font-size: 13px; font-weight: 600; letter-spacing: .12em; }
.case-open { position: absolute; z-index: 2; right: 22px; bottom: 18px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; transition: color .35s ease, background .35s ease, border-color .35s ease, transform .35s ease; }
.case-card:hover .case-open { border-color: #9d68f3; background: #9d68f3; transform: rotate(8deg); }
.case-copy { padding: 26px 0 0; }
.case-copy p { margin: 0 0 8px; color: #9d68f3; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
.case-copy h3, .case-copy h2 { margin: 0 0 12px; font-size: clamp(1.65rem, 2.5vw, 2.5rem); line-height: 1.1; letter-spacing: -.045em; }
.case-copy span { display: block; max-width: 580px; color: #a8a4ae; font-size: .95rem; line-height: 1.7; }
.cases-action { display: flex; justify-content: center; padding-top: 76px; }
.button-outline { border: 1px solid rgba(255,255,255,.3); color: #fff; background: rgba(255,255,255,.03); }
.button-outline:hover { border-color: #9d68f3; background: #9d68f3; transform: translateY(-4px); box-shadow: 0 18px 42px rgba(118,66,198,.24); }
.js .reveal { opacity: 0; filter: blur(7px); translate: 0 46px; scale: .985; transition: opacity .9s var(--ease-smooth) var(--delay, 0ms), translate .9s var(--ease-smooth) var(--delay, 0ms), scale .9s var(--ease-smooth) var(--delay, 0ms), filter .9s var(--ease-smooth) var(--delay, 0ms); will-change: opacity, translate, scale, filter; }
.js .reveal.is-visible { opacity: 1; filter: blur(0); translate: 0 0; scale: 1; }

.page-transition { position: fixed; z-index: 9999; inset: 0; background: #8e5ae8; transform: translateY(-102%); pointer-events: none; transition: transform .72s cubic-bezier(.76,0,.24,1); }
body.is-ready .page-transition { transform: translateY(-102%); }
body.is-leaving .page-transition { transform: translateY(0); }

.internal-hero { position: relative; overflow: hidden; min-height: 610px; padding: calc(var(--header-h) + 120px) 0 100px; display: flex; align-items: center; background: radial-gradient(circle at 78% 30%, rgba(151,93,235,.21), transparent 32%), #111015; }
.internal-orb { position: absolute; right: 8%; top: 24%; width: 360px; height: 360px; border: 1px solid rgba(169,112,255,.2); border-radius: 50%; box-shadow: 0 0 90px rgba(146,83,233,.15), inset 0 0 70px rgba(146,83,233,.08); }
.internal-orb::before, .internal-orb::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.internal-orb::before { inset: 52px; }
.internal-orb::after { inset: 105px; background: rgba(153,96,238,.14); }
.internal-title-row { display: flex; align-items: center; gap: 28px; }
.internal-service-icon { flex: 0 0 74px; width: 74px; height: 74px; display: grid; place-items: center; border: 1px solid rgba(169,112,255,.5); border-radius: 50%; color: #a970ff; font-size: 26px; }
.internal-hero h1 { max-width: 1080px; margin: 0; font-size: clamp(3.3rem, 6.4vw, 7.3rem); line-height: .98; letter-spacing: -.065em; }
.internal-hero h1 em { color: #a970ff; font-style: normal; }
.internal-hero .section-shell > p:last-child { max-width: 720px; margin: 32px 0 0; color: #c0bbc8; font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.7; }

.service-overview { padding: clamp(100px, 10vw, 160px) 0; color: #17151b; background: #f4f3f6; }
.overview-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: start; gap: clamp(48px, 9vw, 150px); }
.overview-main h2, .deliverables-grid h2 { max-width: 780px; margin: 0 0 30px; font-size: clamp(2.6rem, 4.6vw, 5.3rem); line-height: 1.03; letter-spacing: -.06em; }
.overview-main > p:last-child, .deliverables-grid > div > p:last-child { max-width: 720px; margin: 0; color: #68636f; font-size: 1.05rem; line-height: 1.85; }
.ideal-card { padding: 42px; border-radius: 3px; color: #fff; background: linear-gradient(145deg, #9d68f3, #6e3ebd); box-shadow: 0 28px 70px rgba(65,38,105,.2); }
.ideal-card i { font-size: 24px; margin-bottom: 48px; }
.ideal-card span { display: block; margin-bottom: 14px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; opacity: .7; }
.ideal-card p { margin: 0; font-size: 1.05rem; line-height: 1.75; }
.authorship-section { padding: 0 0 clamp(95px, 9vw, 145px); color: #17151b; background: #f4f3f6; }
.authorship-card { display: grid; grid-template-columns: 92px minmax(0, 1fr); align-items: center; gap: clamp(28px, 4vw, 64px); padding: clamp(34px, 5vw, 72px); border: 1px solid rgba(142,90,232,.2); border-radius: 5px; background: linear-gradient(135deg, #fff, #f2edf9); box-shadow: 0 24px 70px rgba(44,30,65,.08); transition: transform .6s var(--ease-smooth), box-shadow .6s var(--ease-smooth), border-color .6s var(--ease-smooth); }
.authorship-card:hover { transform: translateY(-7px); border-color: rgba(142,90,232,.48); box-shadow: 0 34px 90px rgba(69,42,105,.14); }
.authorship-icon { width: 92px; height: 92px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(145deg, #a970ff, #7441c7); box-shadow: 0 16px 38px rgba(116,65,199,.25); font-size: 31px; transition: transform .55s var(--ease-smooth); }
.authorship-card:hover .authorship-icon { transform: rotate(-7deg) scale(1.06); }
.authorship-card h2 { margin: 0 0 17px; font-size: clamp(2rem, 3.2vw, 4rem); line-height: 1.08; letter-spacing: -.05em; }
.authorship-card > div:last-child > p:last-child { max-width: 850px; margin: 0; color: #625d68; font-size: 1rem; line-height: 1.8; }

.process-section { padding: clamp(100px, 10vw, 160px) 0; background: #121116; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.process-card { position: relative; min-height: 320px; padding: 38px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); transition: background .4s ease, transform .4s ease; }
.process-card:hover { z-index: 2; background: #1d1a23; transform: translateY(-6px); }
.process-card > span { color: #9d68f3; font-size: 13px; font-weight: 700; letter-spacing: .12em; }
.process-card > i { position: absolute; right: 36px; top: 38px; color: #55515c; transform: rotate(-45deg); transition: color .3s ease, transform .3s ease; }
.process-card:hover > i { color: #a970ff; transform: rotate(-45deg) translateY(5px); }
.process-card h3 { margin: 70px 0 16px; font-size: 1.5rem; letter-spacing: -.035em; }
.process-card p { margin: 0; color: #aaa5af; font-size: .95rem; line-height: 1.75; }

.deliverables-section { padding: clamp(100px, 10vw, 160px) 0; color: #17151b; background: #f4f3f6; }
.deliverables-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 10vw, 160px); align-items: start; }
.deliverables-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid #d7d3dc; }
.deliverables-list li { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px; min-height: 76px; border-bottom: 1px solid #d7d3dc; font-size: 1rem; }
.deliverables-list li span { color: #8e5ae8; font-size: 12px; font-weight: 700; }
.deliverables-list li i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: #7c49cc; background: rgba(142,90,232,.1); font-size: 11px; }

.internal-cta { padding: clamp(100px, 10vw, 150px) 0; text-align: center; background: radial-gradient(circle at center, rgba(151,93,235,.24), transparent 47%), #111015; }
.internal-cta p { color: #a970ff; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.internal-cta h2 { margin: 14px auto 38px; font-size: clamp(2.7rem, 5vw, 5.4rem); line-height: 1.05; letter-spacing: -.06em; }
.back-link { display: inline-flex; align-items: center; gap: 11px; margin: 32px 24px 0; color: #aaa5af; font-size: 13px; transition: color .3s ease, transform .3s ease; }
.back-link:hover { color: #fff; transform: translateX(-4px); }

.projects-hero { min-height: 560px; }
.all-projects-section { padding: clamp(80px, 9vw, 140px) 0; background: #121116; }
.projects-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.projects-back { display: flex; justify-content: center; padding-top: 80px; }
.regions-content { padding: clamp(90px, 9vw, 150px) 0; color: #17151b; background: #f4f3f6; }
.regions-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid #d8d5dc; border-left: 1px solid #d8d5dc; }
.region-card { min-height: 290px; display: flex; flex-direction: column; padding: 34px; border-right: 1px solid #d8d5dc; border-bottom: 1px solid #d8d5dc; background: rgba(255,255,255,.45); transition: transform .5s var(--ease-smooth), background .5s var(--ease-smooth), box-shadow .5s var(--ease-smooth); scroll-margin-top: 120px; }
.region-card:hover { z-index: 2; transform: translateY(-7px); background: #fff; box-shadow: 0 24px 55px rgba(45,29,68,.13); }
.region-card > span { color: #8e5ae8; font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.region-card h2 { margin: 48px 0 14px; font-size: clamp(1.4rem, 2vw, 2rem); letter-spacing: -.04em; }
.region-card p { margin: 0 0 24px; color: #68636f; line-height: 1.7; }
.region-card a { margin-top: auto; color: #7441c7; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.region-card a i { margin-left: 8px; transition: transform .3s ease; }
.region-card a:hover i { transform: translateX(5px); }
.error-page { min-height: 100svh; }

.about-section { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); min-height: 760px; color: #17151b; background: #f4f3f6; }
.about-art { position: relative; min-height: 760px; overflow: hidden; background: #dcd8e0; }
.about-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(18,16,22,.08), rgba(126,73,208,.28)); }
.about-art img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.1s cubic-bezier(.2,.75,.25,1); }
.about-art:hover img { transform: scale(1.045); }
.about-art > span { position: absolute; z-index: 2; right: 6%; bottom: -8%; color: rgba(255,255,255,.78); font-size: clamp(9rem, 18vw, 20rem); font-weight: 800; letter-spacing: -.1em; line-height: .8; }
.about-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 8vw, 150px); }
.about-copy h2 { max-width: 720px; margin: 0 0 34px; font-size: clamp(2.8rem, 4.5vw, 5.2rem); line-height: 1.02; letter-spacing: -.06em; }
.about-copy > p:not(.section-kicker) { max-width: 710px; margin: 0 0 20px; color: #68636f; font-size: 1rem; line-height: 1.85; }
.about-signature { display: flex; align-items: center; gap: 17px; margin-top: 28px; padding-top: 28px; border-top: 1px solid #d4d0d8; }
.about-signature > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #8e5ae8; font-size: 13px; font-weight: 800; }
.about-signature p { margin: 0; display: grid; color: #77717e; font-size: 12px; line-height: 1.5; }
.about-signature strong { color: #17151b; font-size: 14px; }
.testimonials-section { position: relative; overflow: hidden; padding: clamp(100px, 10vw, 170px) 0; color: #fff; background: #121116; }
.testimonials-glow { position: absolute; right: -180px; top: -220px; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(151,93,235,.22), transparent 68%); filter: blur(10px); pointer-events: none; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.testimonial-card { min-height: 330px; display: flex; flex-direction: column; padding: clamp(28px, 3vw, 44px); border: 1px solid rgba(255,255,255,.12); border-radius: 4px; background: rgba(255,255,255,.035); transition: transform .6s var(--ease-smooth), border-color .6s var(--ease-smooth), background .6s var(--ease-smooth), box-shadow .6s var(--ease-smooth); }
.testimonial-card:hover { transform: translateY(-9px); border-color: rgba(169,112,255,.6); background: rgba(169,112,255,.09); box-shadow: 0 28px 65px rgba(0,0,0,.22); }
.testimonial-quote { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 34px; border: 1px solid rgba(169,112,255,.38); border-radius: 50%; color: #a970ff; font-size: 18px; transition: transform .5s var(--ease-smooth), color .5s var(--ease-smooth), background .5s var(--ease-smooth); }
.testimonial-card:hover .testimonial-quote { transform: rotate(-8deg) scale(1.07); color: #fff; background: #8e5ae8; }
.testimonial-card blockquote { flex: 1; margin: 0 0 34px; color: #d0ccd5; font-size: 1rem; line-height: 1.8; }
.testimonial-card footer { display: grid; gap: 5px; }
.testimonial-card strong { font-size: .96rem; }
.testimonial-card footer span { color: #8f8997; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }

.blog-section { padding: clamp(100px, 10vw, 160px) 0; color: #17151b; background: #ecebef; }
.blog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.blog-card { overflow: hidden; min-width: 0; border-radius: 4px; background: #fff; transition: transform .45s ease, box-shadow .45s ease; }
.blog-card:hover { transform: translateY(-9px); box-shadow: 0 28px 65px rgba(39,31,50,.14); }
.blog-cover { position: relative; overflow: hidden; aspect-ratio: 1.6 / 1; background: #dcd8e1; }
.blog-cover img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .8s cubic-bezier(.2,.75,.25,1), filter .5s ease; }
.blog-card:hover .blog-cover img { transform: scale(1.055); filter: saturate(1.08); }
.blog-cover > span { position: absolute; left: 22px; bottom: 20px; padding: 9px 13px; border-radius: 999px; color: #fff; background: rgba(17,15,21,.82); backdrop-filter: blur(10px); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.blog-card-copy { position: relative; min-height: 245px; padding: 30px 32px 34px; }
.blog-card-copy > p { margin: 0 0 17px; color: #85808a; font-size: 12px; }
.blog-card-copy > p span { margin: 0 6px; color: #9d68f3; }
.blog-card-copy h3, .blog-card-copy h2 { margin: 0; max-width: 660px; font-size: clamp(1.25rem, 1.7vw, 1.7rem); line-height: 1.35; letter-spacing: -.035em; }
.blog-more { position: absolute; left: 32px; bottom: 30px; display: inline-flex; align-items: center; gap: 12px; color: #7d48ce; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.blog-more i { transition: transform .3s ease; }
.blog-card:hover .blog-more i { transform: translateX(6px); }
.blog-action { display: flex; justify-content: flex-end; padding-top: 55px; }
.button-dark { color: #fff; background: #17151b; }
.button-dark:hover { background: #8e5ae8; transform: translateY(-4px); box-shadow: 0 18px 42px rgba(85,48,142,.22); }

.site-footer { position: relative; overflow: hidden; padding: clamp(90px, 9vw, 145px) 0 36px; background: #0e0d11; }
.footer-orb { position: absolute; right: -180px; top: -240px; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle, rgba(150,89,236,.28), transparent 68%); filter: blur(8px); }
.footer-main { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; padding-bottom: 90px; }
.footer-main h2 { margin: 0; font-size: clamp(3.4rem, 6.3vw, 7.2rem); line-height: .98; letter-spacing: -.07em; }
.footer-main h2 em { color: #a970ff; font-style: normal; }
.whatsapp-card { min-width: 365px; display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 18px; padding: 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 4px; background: rgba(255,255,255,.04); transition: background .4s ease, border-color .4s ease, transform .4s ease; }
.whatsapp-card:hover { border-color: #a970ff; background: rgba(169,112,255,.13); transform: translateY(-6px); }
.whatsapp-card > i:first-child { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #25d366; font-size: 26px; }
.whatsapp-card > i:last-child { color: #a970ff; }
.whatsapp-card span { display: grid; font-size: 1rem; font-weight: 600; }
.whatsapp-card small { margin-bottom: 4px; color: #98939f; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom nav { display: flex; align-items: center; gap: 28px; }
.footer-bottom nav a { color: #aaa5af; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; transition: color .3s ease; }
.footer-bottom nav a:hover { color: #a970ff; }
.footer-bottom nav a i { margin-right: 5px; }
.footer-bottom > p { justify-self: end; margin: 0; color: #77727d; font-size: 11px; }
.footer-locations { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; margin-bottom: 34px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-locations > span { color: #77727d; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.footer-locations nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-locations a { color: #aaa5af; font-size: 12px; transition: color .35s ease; }
.footer-locations a:hover { color: #a970ff; }
.footer-bottom .brand-logo { width: clamp(165px, 12vw, 220px); }

.floating-whatsapp { position: fixed; right: 26px; bottom: 26px; z-index: 120; width: 66px; height: 66px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; color: #fff; background: linear-gradient(145deg, #ad78ff, #7441c7); box-shadow: 0 16px 38px rgba(116,65,199,.42); animation: whatsapp-float 3s ease-in-out infinite; transition: transform .5s var(--ease-smooth), box-shadow .5s var(--ease-smooth), background .5s var(--ease-smooth); isolation: isolate; }
.floating-whatsapp::before { content: ""; position: absolute; z-index: -1; inset: -2px; border: 2px solid rgba(169,112,255,.6); border-radius: inherit; animation: whatsapp-pulse 2.4s ease-out infinite; }
.floating-whatsapp i { font-size: 30px; }
.floating-whatsapp span { position: absolute; right: 78px; width: max-content; padding: 10px 14px; border: 1px solid rgba(169,112,255,.3); border-radius: 8px; color: #fff; background: rgba(16,16,20,.94); box-shadow: 0 12px 30px rgba(0,0,0,.22); font-size: 12px; font-weight: 600; opacity: 0; pointer-events: none; transform: translateX(10px); transition: opacity .4s var(--ease-smooth), transform .4s var(--ease-smooth); }
.floating-whatsapp:hover, .floating-whatsapp:focus-visible { transform: translateY(-5px) scale(1.08); background: linear-gradient(145deg, #b985ff, #8050d4); box-shadow: 0 22px 48px rgba(116,65,199,.55); }
.floating-whatsapp:hover span, .floating-whatsapp:focus-visible span { opacity: 1; transform: translateX(0); }
@keyframes whatsapp-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -5px; } }
@keyframes whatsapp-pulse { 0% { opacity: .75; transform: scale(.94); } 72%, 100% { opacity: 0; transform: scale(1.48); } }

.cookie-consent { position: fixed; z-index: 180; left: 24px; bottom: 24px; width: min(520px, calc(100% - 48px)); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 22px; padding: 20px 22px; border: 1px solid rgba(169,112,255,.32); border-radius: 12px; color: #fff; background: rgba(17,16,21,.97); box-shadow: 0 24px 70px rgba(0,0,0,.35); backdrop-filter: blur(16px); animation: cookie-enter .55s var(--ease-smooth) both; }
.cookie-consent[hidden] { display: none; }
.cookie-consent strong { display: block; margin-bottom: 5px; font-size: .9rem; }
.cookie-consent p { margin: 0; color: #aaa5af; font-size: .75rem; line-height: 1.55; }
.cookie-consent p a { color: #c9a9ff; text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { min-height: 42px; padding: 0 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 7px; color: #fff; background: transparent; font: inherit; font-size: .72rem; font-weight: 700; cursor: pointer; transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.cookie-actions button:hover { transform: translateY(-2px); border-color: #a970ff; }
.cookie-actions .cookie-accept { border-color: #a970ff; background: #8e5ae8; }
@keyframes cookie-enter { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.privacy-hero { min-height: 620px; }
.privacy-content { padding: clamp(80px, 9vw, 140px) 0; color: #242128; background: #f4f3f6; }
.privacy-content .section-shell { width: min(860px, calc(100% - 40px)); }
.privacy-content section { margin-bottom: 54px; }
.privacy-content h2 { margin: 0 0 18px; font-size: clamp(1.7rem, 3vw, 2.6rem); letter-spacing: -.04em; }
.privacy-content p { margin: 0; color: #625e67; font-size: 1rem; line-height: 1.85; }
.privacy-content a { color: #7441c7; font-weight: 600; }
.privacy-updated { padding-top: 28px; border-top: 1px solid #d9d5df; font-size: .82rem !important; }

.project-detail-hero { position: relative; min-height: 88svh; display: flex; align-items: flex-end; overflow: hidden; }
.project-detail-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,12,.25), rgba(10,9,12,.9)); }
.project-detail-hero .section-shell { padding-bottom: clamp(70px, 8vw, 130px); }
.project-detail-hero p { margin: 0 0 20px; color: #c3bec9; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; }
.project-detail-hero p span { margin: 0 8px; color: #a970ff; }
.project-detail-hero h1 { max-width: 1100px; margin: 0; font-size: clamp(3.4rem, 7vw, 8rem); line-height: .94; letter-spacing: -.07em; }
.project-intro { padding: clamp(90px, 9vw, 150px) 0; color: #18161c; background: #f4f3f6; }
.project-intro-grid { display: grid; grid-template-columns: .35fr 1fr; gap: 7vw; align-items: start; }
.project-intro-grid h2 { max-width: 900px; margin: 0 0 30px; font-size: clamp(2.2rem, 3.9vw, 4.5rem); line-height: 1.08; letter-spacing: -.055em; }
.project-intro-grid > div > p { max-width: 760px; margin: 0; color: #67626d; font-size: 1.05rem; line-height: 1.85; }
.project-gallery { padding: clamp(45px, 6vw, 90px) 4vw; background: #e6e3e9; }
.project-gallery-item { width: min(1500px, 100%); margin: 0 auto clamp(28px, 4vw, 64px); padding: clamp(15px, 2vw, 30px); background: #f8f7f9; box-shadow: 0 20px 65px rgba(34,28,42,.09); }
.project-gallery-item:last-child { margin-bottom: 0; }
.project-gallery-item img { width: 100%; height: auto; max-height: 1050px; object-fit: contain; display: block; }
.project-gallery-item figcaption, .post-cover figcaption { padding: 12px 4px 0; color: #817b87; font-size: .78rem; }
.next-project, .next-post { padding: clamp(80px, 8vw, 130px) 0; background: #111015; }
.next-project p, .next-post p { margin: 0 0 20px; color: #8f8996; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.next-project a, .next-post a { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.16); transition: color .35s ease, border-color .35s ease; }
.next-project a:hover, .next-post a:hover { color: #a970ff; border-color: #a970ff; }
.next-project a span, .next-post a span { max-width: 1100px; font-size: clamp(2rem, 4.5vw, 5rem); line-height: 1.08; letter-spacing: -.055em; }
.next-project a i, .next-post a i { font-size: 24px; transition: transform .35s ease; }
.next-project a:hover i, .next-post a:hover i { transform: translateX(8px); }

.blog-hero { min-height: 620px; }
.all-posts-section { padding: clamp(90px, 9vw, 145px) 0; color: #17151b; background: #ecebef; }
.post-header { padding: calc(var(--header-h) + 105px) 5vw 80px; color: #17151b; text-align: center; background: #f4f3f6; }
.post-header-content { width: min(1100px, 100%); margin: 0 auto; }
.post-header p { margin: 0 0 28px; color: #7c48cd; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.post-header p span { margin: 0 8px; }
.post-header h1 { margin: 0 auto 30px; font-size: clamp(2.7rem, 5.6vw, 6.4rem); line-height: 1.02; letter-spacing: -.065em; }
.post-header-content > div { color: #827d87; font-size: 12px; }
.post-cover { width: min(1460px, calc(100% - 8vw)); margin: -1px auto 0; padding: 0; background: #ddd9e1; }
.post-cover img { width: 100%; max-height: 820px; display: block; object-fit: cover; }
.post-content { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: clamp(80px, 9vw, 140px) 0; color: #242128; }
.post-lead { margin: 0 0 68px; padding-left: 30px; border-left: 3px solid #9d68f3; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.65; font-weight: 500; }
.post-content section { margin-top: 64px; }
.post-content h2 { margin: 0 0 22px; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.2; letter-spacing: -.045em; }
.post-content section p { margin: 0 0 20px; color: #625e67; font-size: 1.05rem; line-height: 1.9; }
.post-detail-page main { background: #f4f3f6; }

@media (max-width: 1020px) {
    :root { --header-h: 82px; }
    .header-shell { width: calc(100% - 40px); grid-template-columns: 1fr auto; gap: 16px; }
    .header-cta { display: none; }
    .menu-toggle { display: block; z-index: 3; }
    .main-menu { position: fixed; inset: 0; height: 100svh; display: flex; flex-direction: column; justify-content: center; gap: 24px; background: rgba(13,13,17,.98); opacity: 0; visibility: hidden; transform: translateY(-20px); transition: all .35s ease; }
    .main-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .main-menu a { font-size: 22px; }
    .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
    .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hero-content { width: calc(100% - 48px); padding-top: clamp(155px, 20vh, 210px); }
    .hero h1 { font-size: clamp(3rem, 8vw, 5rem); }
    .hero-image { background-position: 64% center; }
    .hero-service-tag { display: none; }
    .section-heading { grid-template-columns: 1fr; gap: 28px; }
    .section-heading > p { max-width: 640px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .overview-grid, .deliverables-grid { grid-template-columns: 1fr; }
    .ideal-card { max-width: 650px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .about-section { grid-template-columns: 1fr; }
    .about-art { min-height: 580px; }
    .about-copy { padding: 90px 6vw; }
    .footer-main { grid-template-columns: 1fr; align-items: start; }
    .footer-bottom { grid-template-columns: 1fr auto; }
    .footer-bottom nav { grid-column: 1 / -1; grid-row: 1; }
    .footer-bottom .brand { grid-row: 2; }
    .footer-bottom > p { grid-row: 2; }
    .project-intro-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 640px) {
    .brand-logo { width: 168px; }
    .hero { min-height: 780px; }
    .hero-track { min-height: 780px; }
    .hero-image { background-position: 68% center; }
    .hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,17,.30) 0%, rgba(13,13,17,.30) 34%, rgba(13,13,17,.80) 72%, rgba(13,13,17,.96) 100%); }
    .hero-content { width: calc(100% - 40px); padding-top: 158px; }
    .eyebrow { font-size: 10px; margin-bottom: 20px; }
    .eyebrow::before { width: 30px; }
    .hero h1 { font-size: clamp(2.55rem, 12vw, 4.1rem); line-height: 1.02; }
    .hero-description { font-size: .95rem; line-height: 1.65; margin-top: 24px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; margin-top: 28px; }
    .button { min-height: 52px; width: 100%; }
    .hero-footer { left: 20px; right: 20px; bottom: 22px; grid-template-columns: 1fr auto; }
    .slider-arrow { display: none; }
    .hero-counter { justify-self: end; }
    .section-shell { width: calc(100% - 40px); }
    .services-section, .cases-section { padding: 88px 0; }
    .section-heading { margin-bottom: 46px; }
    .section-heading h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
    .services-grid, .cases-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-height: 290px; }
    .service-card { min-height: 315px; }
    .authorship-card { grid-template-columns: 1fr; padding: 32px 26px; }
    .authorship-icon { width: 68px; height: 68px; font-size: 24px; }
    .service-more { opacity: 1; transform: none; }
    .case-image-wrap { aspect-ratio: 1.3 / 1; }
    .cases-action { padding-top: 52px; }
    .internal-hero { min-height: 560px; padding: calc(var(--header-h) + 80px) 0 70px; }
    .internal-title-row { align-items: flex-start; flex-direction: column; gap: 22px; }
    .internal-service-icon { width: 62px; height: 62px; flex-basis: 62px; }
    .internal-hero h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
    .internal-orb { width: 240px; height: 240px; right: -90px; top: 20%; }
    .process-grid, .projects-page-grid { grid-template-columns: 1fr; }
    .regions-grid { grid-template-columns: 1fr; }
    .process-card { min-height: 285px; }
    .ideal-card { padding: 34px; }
    .deliverables-list li { grid-template-columns: 36px 1fr auto; min-height: 82px; }
    .about-art { min-height: 430px; }
    .about-copy { padding: 76px 20px; }
    .about-copy h2 { font-size: clamp(2.6rem, 12vw, 4rem); }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card-copy { min-height: 260px; padding: 26px 24px 32px; }
    .blog-more { left: 24px; }
    .blog-action { justify-content: stretch; }
    .whatsapp-card { min-width: 0; width: 100%; grid-template-columns: 52px 1fr auto; }
    .whatsapp-card > i:first-child { width: 52px; height: 52px; }
    .footer-main { padding-bottom: 68px; }
    .footer-locations { grid-template-columns: 1fr; gap: 14px; }
    .footer-bottom { grid-template-columns: 1fr; }
    .footer-bottom nav { grid-column: auto; grid-row: auto; flex-wrap: wrap; gap: 18px 24px; }
    .footer-bottom .brand, .footer-bottom > p { grid-row: auto; }
    .footer-bottom > p { justify-self: start; }
    .project-detail-hero { min-height: 720px; }
    .project-detail-hero .section-shell { padding-bottom: 70px; }
    .project-detail-hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
    .project-gallery { padding-left: 12px; padding-right: 12px; }
    .project-gallery-item { padding: 10px; margin-bottom: 20px; }
    .next-project a, .next-post a { align-items: flex-end; }
    .post-header { padding-left: 20px; padding-right: 20px; }
    .post-cover { width: 100%; }
    .post-lead { padding-left: 20px; }
    .floating-whatsapp { right: 18px; bottom: 18px; width: 58px; height: 58px; }
    .floating-whatsapp i { font-size: 27px; }
    .floating-whatsapp span { display: none; }
    .cookie-consent { left: 14px; bottom: 14px; width: calc(100% - 28px); grid-template-columns: 1fr; gap: 15px; padding: 18px; }
    .cookie-actions { justify-content: flex-end; }
}

@media (hover: none) {
    .service-more { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-image, .hero-slide { transition-duration: .01ms !important; }
    .js .reveal { filter: none; translate: none; scale: 1; transition: opacity .28s ease var(--delay, 0ms); }
    .page-transition { display: none; }
    .floating-whatsapp { animation: none; }
    .floating-whatsapp::before { display: none; }
}
