@font-face { font-family: 'Geist'; font-style: normal; font-weight: 300; font-display: swap; src: url('/assets/fonts/geist-300-l.woff2') format('woff2'); } @font-face { font-family: 'Geist'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/geist-500-l.woff2') format('woff2'); } @font-face { font-family: 'Geist'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/geist-600-l.woff2') format('woff2'); } @font-face { font-family: 'Geist'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/geist-700-l.woff2') format('woff2'); } @font-face { font-family: 'Geist'; font-style: normal; font-weight: 800; font-display: swap; src: url('/assets/fonts/geist-800-l.woff2') format('woff2'); }

:root {
--brand: #29afcc;
--brand-bright: #3dd6f5;
--brand-deep: #1a7a8f;
--cta: #ff6b4a;
--cta-bright: #ff8866;
--cta-deep: #e04a28;
--ink: #0a0d10;
--ink-2: #12171c;
--ink-3: #1a2127;
--line: rgba(255, 255, 255, 0.08);
--line-2: rgba(255, 255, 255, 0.14);
--text: #e8ecef;
--text-muted: #8a949c;
--text-dim: #7d8891;
--font-display: 'Geist', -apple-system, 'Segoe UI', sans-serif;
--font-body: 'Geist', -apple-system, 'Segoe UI', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: var(--font-body);
background: var(--ink);
color: var(--text);
line-height: 1.55;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 1024px) and (min-width: 701px) {
.container { padding: 0 56px; }
.page-header h1 { max-width: 720px; }
.page-header p { max-width: 580px; }
.section-head { gap: 40px; }
.section-title { max-width: 600px; }
}
.nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
padding: 20px 0;
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
background: rgba(10, 13, 16, 0.85);
border-bottom: 1px solid var(--line);
transition: border-color .3s ease, background .3s ease;
}
.nav.home-nav {
background: rgba(10, 13, 16, 0.6);
border-bottom-color: transparent;
}
.nav.home-nav.scrolled {
background: rgba(10, 13, 16, 0.85);
border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 36px; margin-left: auto; }
.nav-links a {
font-size: 14px; font-weight: 500; color: var(--text-muted);
transition: color .2s ease; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a::after {
content: ''; position: absolute; left: 0; bottom: -6px;
width: 0; height: 2px; background: var(--brand);
transition: width .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right {
display: flex; align-items: center; gap: 14px;
}
.lang-switch {
display: inline-flex; align-items: center;
border: 1px solid var(--line-2);
border-radius: 100px;
padding: 4px;
background: rgba(255, 255, 255, 0.02);
}
.lang-switch button,
.lang-switch a {
padding: 6px 12px;
font-size: 12px; font-weight: 600;
letter-spacing: 0.08em;
color: var(--text-muted);
border-radius: 100px;
transition: color .2s ease, background .2s ease;
cursor: pointer;
text-decoration: none;
display: inline-block;
background: transparent;
border: none;
font-family: inherit;
}
.lang-switch button:hover,
.lang-switch a:hover { color: var(--text); }
.lang-switch button.active,
.lang-switch a.active {
background: var(--brand);
color: #041014;
}
.mobile-toggle {
display: none; width: 42px; height: 42px; border-radius: 10px;
border: 1px solid var(--line-2); align-items: center; justify-content: center;
}
.mobile-toggle span { display: block; width: 18px; height: 2px; background: var(--text); position: relative; }
.mobile-toggle span::before, .mobile-toggle span::after {
content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text);
}
.mobile-toggle span::before { top: -6px; }
.mobile-toggle span::after { top: 6px; }
.btn {
display: inline-flex; align-items: center; gap: 10px;
padding: 12px 22px; border-radius: 100px;
font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
white-space: nowrap;
}
.btn-primary {
background: var(--cta); color: #1a0a05;
box-shadow: 0 8px 24px rgba(255, 107, 74, .3), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover {
transform: translateY(-2px);
background: var(--cta-bright);
box-shadow: 0 14px 34px rgba(255, 107, 74, .5), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-brand {
background: var(--brand); color: #041014;
box-shadow: 0 8px 24px rgba(41, 175, 204, .25), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-brand:hover {
transform: translateY(-2px);
background: var(--brand-bright);
box-shadow: 0 12px 30px rgba(41, 175, 204, .45), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: rgba(255,255,255,.06); border-color: var(--brand); }
.btn-lg { padding: 16px 30px; font-size: 15px; }
.page-header {
padding: 200px 0 80px;
position: relative;
border-bottom: 1px solid var(--line);
overflow: hidden;
}
.page-header::before {
content: ''; position: absolute; inset: 0; z-index: 0;
background-image: url('/assets/headers/work.webp');
background-size: cover;
background-position: center;
opacity: 0.25;
filter: saturate(0.85);
}
.page-header::after {
content: ''; position: absolute; inset: 0; z-index: 0;
background:
radial-gradient(ellipse 60% 80% at 80% 30%, rgba(41, 175, 204, 0.2), transparent 60%),
radial-gradient(ellipse 50% 60% at 10% 80%, rgba(41, 175, 204, 0.1), transparent 50%),
linear-gradient(180deg, rgba(10, 13, 16, 0.75) 0%, rgba(10, 13, 16, 0.95) 100%);
}
.page-header.contact-header::before {
background-image: url('/assets/headers/contact.webp');
}
.page-header .container { position: relative; z-index: 1; }
.page-eyebrow {
display: inline-flex; align-items: center; gap: 10px;
padding: 8px 16px; border-radius: 100px;
background: rgba(41, 175, 204, .1);
border: 1px solid rgba(41, 175, 204, .25);
color: var(--brand-bright);
font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
text-transform: uppercase; margin-bottom: 28px;
}
.page-header h1 {
font-family: var(--font-display);
font-weight: 800;
font-size: clamp(36px, 5vw, 72px);
line-height: 0.98;
letter-spacing: -0.035em;
max-width: 900px;
margin-bottom: 24px;
}
.page-header h1 em { font-style: normal; color: var(--brand); font-weight: 300; }
.page-header p {
font-size: clamp(17px, 1.4vw, 19px);
color: var(--text-muted);
max-width: 640px;
line-height: 1.55;
}
.page-stats {
display: flex; gap: 48px; margin-top: 56px; padding-top: 32px;
border-top: 1px solid var(--line); max-width: 700px;
}
.page-stat .stat-n {
font-family: var(--font-display);
font-size: 36px; font-weight: 700; color: var(--brand);
letter-spacing: -0.03em; margin-bottom: 4px;
}
.page-stat p {
font-size: 13px; color: var(--text-muted);
text-transform: uppercase; letter-spacing: 0.08em;
}
section { padding: 120px 0; position: relative; }
.section-label {
font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
color: var(--brand); margin-bottom: 16px;
display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--brand); }
.section-title {
font-family: var(--font-display);
font-weight: 700;
font-size: clamp(30px, 3.6vw, 52px);
line-height: 1.02;
letter-spacing: -0.035em;
max-width: 750px;
}
.section-title em { font-style: normal; color: var(--brand); font-weight: 300; }
.cta-section {
padding: 120px 0;
position: relative;
overflow: hidden;
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
}
.cta-section::before {
content: ''; position: absolute; inset: 0;
background:
radial-gradient(ellipse 60% 80% at 50% 50%, rgba(41, 175, 204, 0.18), transparent 70%),
var(--ink);
}
.cta-inner { position: relative; text-align: center; max-width: 820px; margin: 0 auto; }
.cta-inner h2 {
font-family: var(--font-display);
font-weight: 800;
font-size: clamp(30px, 3.6vw, 52px);
line-height: 1.02;
letter-spacing: -0.035em;
margin-bottom: 24px;
}
.cta-inner h2 em { font-style: normal; color: var(--brand); font-weight: 300; }
.cta-inner p { color: var(--text-muted); font-size: 18px; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.video-modal {
position: fixed; inset: 0;
background: rgba(5, 8, 10, 0.92);
backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
z-index: 1000;
display: none; align-items: center; justify-content: center;
padding: 40px; opacity: 0;
transition: opacity .3s ease;
}
.video-modal.active { display: flex; opacity: 1; }
.video-modal-inner { position: relative; width: 100%; max-width: 1200px; aspect-ratio: 16 / 9; }
.video-modal iframe { width: 100%; height: 100%; border: 0; border-radius: 12px; box-shadow: 0 40px 100px rgba(0,0,0,.6); }
.video-modal-close {
position: absolute; top: -50px; right: 0;
width: 42px; height: 42px; border-radius: 50%;
background: rgba(255,255,255,.08);
border: 1px solid var(--line-2);
color: var(--text);
display: grid; place-items: center; cursor: pointer;
transition: background .2s ease, transform .2s ease;
}
.video-modal-close:hover { background: var(--brand); color: #041014; transform: rotate(90deg); }
footer { padding: 80px 0 40px; background: var(--ink); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 60px; }
.footer-brand .logo { margin-bottom: 24px; display: inline-flex; }
.footer-brand .logo img { height: 44px; }
.footer-brand p {
color: var(--text-muted); font-size: 14px; line-height: 1.6;
max-width: 320px; margin-bottom: 24px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
width: 40px; height: 40px; border-radius: 10px;
border: 1px solid var(--line-2);
display: grid; place-items: center;
color: var(--text-muted);
transition: all .25s ease;
}
.social-links a:hover {
border-color: var(--brand); color: var(--brand);
background: rgba(41, 175, 204, .08); transform: translateY(-2px);
}
.social-links svg { width: 18px; height: 18px; }
.footer-col h3 {
font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
color: var(--text); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 14px; transition: color .2s ease; }
.footer-col a:hover { color: var(--brand); }
.footer-col address {
color: var(--text-muted); font-size: 14px; line-height: 1.7; font-style: normal;
}
.footer-bottom {
padding-top: 32px; border-top: 1px solid var(--line);
display: flex; justify-content: space-between; align-items: center;
flex-wrap: wrap; gap: 20px; font-size: 13px; color: var(--text-dim);
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom a { color: var(--text-dim); transition: color .2s ease; }
.footer-bottom a:hover { color: var(--brand); }
.whatsapp-float {
position: fixed; bottom: 24px; right: 24px;
display: inline-flex; align-items: center; justify-content: center;
width: 56px; height: 56px;
padding: 0;
border-radius: 50%;
background: #25d366;
color: #fff;
text-decoration: none;
box-shadow: 0 10px 30px rgba(37, 211, 102, .35), 0 2px 8px rgba(0,0,0,.25);
z-index: 99;
transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background .3s ease;
}
.whatsapp-float svg {
width: 28px; height: 28px;
flex-shrink: 0;
}
.whatsapp-float span { display: none; }
.whatsapp-float:hover {
transform: translateY(-3px) scale(1.05);
background: #1ebe57;
box-shadow: 0 16px 40px rgba(37, 211, 102, .55), 0 4px 12px rgba(0,0,0,.3);
}
.whatsapp-float:active {
transform: translateY(-1px) scale(1.02);
}
@media (max-width: 700px) {
.whatsapp-float {
bottom: 16px; right: 16px;
}
}
.portfolio-item img,
.work-item img,
.service-example img {
filter: saturate(.95);
transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .4s ease;
}
.portfolio-item:hover img,
.work-item:hover img,
.service-example:hover img {
filter: saturate(1.05);
}
.portfolio-item::after,
.work-item::after,
.service-example::after {
content: '';
position: absolute; inset: 0; z-index: 2;
pointer-events: none;
border: 1px solid transparent;
border-radius: inherit;
transition: border-color .3s ease, box-shadow .3s ease;
}
.portfolio-item:hover::after,
.work-item:hover::after,
.service-example:hover::after {
border-color: rgba(41, 175, 204, 0.4);
box-shadow: inset 0 0 0 1px rgba(41, 175, 204, 0.2), 0 0 40px rgba(41, 175, 204, 0.12);
}
.portfolio-overlay, .work-overlay, .service-example-overlay,
.portfolio-item .play-btn, .work-item .play-btn, .service-example .play-btn { z-index: 3; }
.reveal {
opacity: 0; transform: translateY(30px);
transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1024px) {
.footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 700px) {
.container { padding: 0 20px; }
.nav { z-index: 1000; }
.nav-links {
position: fixed;
top: 0; right: 0;
width: min(82vw, 320px);
height: 100vh; height: 100dvh;
background: rgba(10, 13, 16, 0.98);
backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
border-left: 1px solid var(--line-2);
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
gap: 0;
padding: 100px 32px 32px;
transform: translateX(100%);
transition: transform .35s cubic-bezier(.2,.8,.2,1);
margin-left: 0;
}
.nav-links a {
font-family: var(--font-display);
font-size: 22px; font-weight: 600;
letter-spacing: -0.02em;
width: 100%;
padding: 16px 0;
border-bottom: 1px solid var(--line);
color: var(--text);
}
.nav-links a::after { display: none; }
body.nav-open .nav-links { transform: translateX(0); }
body.nav-open::before {
content: '';
position: fixed; inset: 0;
background: rgba(0,0,0,0.5);
z-index: 999;
animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.mobile-toggle {
display: flex;
position: relative;
cursor: pointer;
}
.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
transition: transform .3s ease, top .3s ease, opacity .2s ease;
}
body.nav-open .mobile-toggle span { background: transparent; }
body.nav-open .mobile-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .mobile-toggle span::after  { top: 0; transform: rotate(-45deg); }
body.nav-open { overflow: hidden; }
.nav-right {
display: flex;
margin-left: auto;
margin-right: 10px;
}
.lang-switch {
padding: 3px;
}
.lang-switch a,
.lang-switch button {
padding: 5px 10px;
font-size: 11px;
}
.nav .btn-primary { display: none; }
section { padding: 80px 0; }
.page-header { padding: 140px 0 60px; }
.page-stats { flex-direction: column; gap: 20px; }
.footer-grid { grid-template-columns: 1fr; gap: 32px; }
.footer-bottom { flex-direction: column; text-align: center; }
}
select.styled-select {
appearance: none; -webkit-appearance: none; -moz-appearance: none;
background-image: url("data:image/svg+xml;utf8,<svg aria-hidden="true" xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%238a949c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
background-repeat: no-repeat;
background-position: right 16px center;
padding-right: 42px;
color-scheme: dark;
}
select.styled-select option {
background: #12171c;
color: #e8ecef;
padding: 10px;
}
select.styled-select option:checked,
select.styled-select option:hover {
background: #1a2127;
}
.checkbox-lg {
display: flex; align-items: flex-start; gap: 12px;
font-size: 14px; color: var(--text-muted); line-height: 1.55;
}
.checkbox-lg input[type="checkbox"] {
width: 20px; height: 20px;
margin: 1px 0 0 0;
accent-color: var(--brand);
flex-shrink: 0;
cursor: pointer;
}
.checkbox-lg label { cursor: pointer; margin: 0; font-size: 14px; color: var(--text-muted); text-transform: none; letter-spacing: 0; }
.checkbox-lg a { color: var(--brand); text-decoration: underline; }
.cookie-banner {
position: fixed; bottom: 96px; right: 20px;
max-width: 420px;
width: calc(100% - 40px);
background: rgba(18, 23, 28, 0.98);
backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
border: 1px solid var(--line-2);
border-radius: 18px;
padding: 24px 28px;
z-index: 2000;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
transform: translateY(calc(100% + 96px));
transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}
@media (max-width: 700px) {
.cookie-banner {
bottom: 84px;
right: 16px;
width: calc(100% - 32px);
}
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner h4 {
font-family: var(--font-display);
font-size: 16px; font-weight: 600;
letter-spacing: -0.015em;
color: var(--text);
margin-bottom: 8px;
display: flex; align-items: center; gap: 8px;
}
.cookie-banner h4 svg { width: 18px; height: 18px; color: var(--brand); }
.cookie-banner p {
color: var(--text-muted); font-size: 13px;
line-height: 1.55; margin-bottom: 18px;
}
.cookie-banner p a { color: var(--brand); text-decoration: underline; }
.cookie-actions {
display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.cookie-actions .btn {
padding: 10px 20px; font-size: 13px;
}
.cookie-link {
font-size: 12px; color: var(--text-dim);
text-decoration: underline; cursor: pointer;
padding: 0 4px;
}
.cookie-link:hover { color: var(--brand); }
@keyframes cookieWiggle {
0%, 70%, 100% { transform: rotate(0deg); }
76% { transform: rotate(-3deg); }
82% { transform: rotate(2.5deg); }
88% { transform: rotate(-2deg); }
94% { transform: rotate(1deg); }
}
.cookie-banner.visible .cookie-actions .btn-primary {
animation: cookieWiggle 3.2s ease-in-out 1.2s infinite;
transform-origin: center;
}
.cookie-banner.visible .cookie-actions .btn-primary:hover {
animation: none;
}
@media (prefers-reduced-motion: reduce) {
.cookie-banner.visible .cookie-actions .btn-primary { animation: none; }
}
.cookie-modal {
position: fixed; inset: 0;
background: rgba(5, 8, 10, 0.85);
backdrop-filter: blur(8px);
z-index: 2100;
display: none;
align-items: center; justify-content: center;
padding: 24px;
opacity: 0;
transition: opacity .3s ease;
}
.cookie-modal.active { display: flex; opacity: 1; }
.cookie-modal-card {
background: var(--ink-2);
border: 1px solid var(--line-2);
border-radius: 18px;
padding: 36px;
max-width: 520px; width: 100%;
max-height: 85vh; overflow-y: auto;
}
.cookie-modal-card h3 {
font-family: var(--font-display);
font-size: 24px; font-weight: 700;
letter-spacing: -0.025em;
margin-bottom: 10px;
}
.cookie-modal-card > p {
color: var(--text-muted); font-size: 14px;
line-height: 1.55; margin-bottom: 24px;
}
.cookie-category {
padding: 20px 0;
border-top: 1px solid var(--line);
display: flex; justify-content: space-between;
align-items: flex-start; gap: 18px;
}
.cookie-category:first-of-type { border-top: none; padding-top: 8px; }
.cookie-category-info h5 {
font-family: var(--font-display);
font-size: 15px; font-weight: 600;
color: var(--text); margin-bottom: 4px;
}
.cookie-category-info p { color: var(--text-muted); font-size: 13px; line-height: 1.5; }
.toggle {
position: relative; flex-shrink: 0;
width: 40px; height: 22px;
background: var(--ink-3);
border: 1px solid var(--line-2);
border-radius: 100px;
cursor: pointer;
transition: background .25s ease, border-color .25s ease;
}
.toggle::after {
content: ''; position: absolute;
top: 2px; left: 2px;
width: 16px; height: 16px;
border-radius: 50%;
background: var(--text-muted);
transition: left .25s ease, background .25s ease;
}
.toggle.on { background: var(--brand); border-color: var(--brand); }
.toggle.on::after { left: 20px; background: #041014; }
.toggle.locked {
background: var(--brand-deep); border-color: var(--brand-deep);
cursor: not-allowed; opacity: 0.85;
}
.toggle.locked::after { left: 20px; background: rgba(255,255,255,0.7); }
.cookie-modal-actions {
display: flex; gap: 10px; margin-top: 28px;
padding-top: 20px; border-top: 1px solid var(--line);
flex-wrap: wrap;
}
@media (max-width: 860px) {
.nav-links { gap: 24px; }
}
@media (max-width: 760px) {
.cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
.cookie-actions { flex-direction: column; align-items: stretch; }
.cookie-actions .btn { width: 100%; justify-content: center; }
}
.suedtirol-badge {
display: inline-block;
margin-top: 20px;
padding: 10px 14px;
background: #ffffff;
border-radius: 6px;
max-width: 160px;
}
.suedtirol-badge img {
width: 100%; height: auto; display: block;
}
.cs-section { padding: 80px 0 110px; }
.container.cs-narrow { max-width: 880px; }
.cs-video { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 14px;
overflow: hidden; background: var(--ink-2); border: 1px solid var(--line); margin: 0 0 48px; }
.cs-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.cs-facts-h { font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
color: var(--brand-bright); margin: 0 0 16px; font-weight: 600; }
.cs-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
background: var(--line); border: 1px solid var(--line); border-radius: 14px;
overflow: hidden; margin: 0 0 48px; }
.cs-facts > div { background: var(--ink); padding: 18px 20px; }
.cs-facts dt { font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
color: var(--text-dim); margin-bottom: 6px; }
.cs-facts dd { margin: 0; font-size: 16px; color: var(--text); font-weight: 500; }
.cs-block { margin: 0 0 40px; }
.cs-block h2 { font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
color: var(--brand-bright); margin: 0 0 14px; font-weight: 600; }
.cs-block p { font-size: 18px; line-height: 1.75; color: var(--text-muted); max-width: 64ch; margin: 0 0 16px; }
.cs-block p:last-child { margin-bottom: 0; }
.cs-back { font-size: 15px; color: var(--text-dim); margin: 8px 0 0; }
.cs-back a { color: var(--brand); font-weight: 500; }
.cs-back a:hover { color: var(--brand-bright); }
.lp-work { padding: 0 0 110px; }
.lp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.lp-item { display: block; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
background: var(--ink-2); transition: border-color .25s ease, transform .5s cubic-bezier(.2,.8,.2,1); }
.lp-item img { width: 100%; height: auto; display: block; }
a.lp-item:hover { border-color: var(--brand); transform: translateY(-4px); }
.lp-meta { padding: 16px 18px 18px; }
.lp-meta span { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
color: var(--text-dim); margin-bottom: 6px; }
.lp-meta b { display: block; font-size: 17px; color: var(--text); font-weight: 600; letter-spacing: -.01em; }
.lp-meta em { display: block; font-style: normal; font-size: 13px; color: var(--brand); margin-top: 10px; font-weight: 500; }
@media (max-width: 900px) {
.cs-facts { grid-template-columns: repeat(2, 1fr); }
.lp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
.cs-section { padding: 56px 0 80px; }
.cs-block p { font-size: 16px; }
.cs-facts { grid-template-columns: 1fr; }
.lp-grid { grid-template-columns: 1fr; }
}
.cs-faq { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line);
border-radius: 14px; overflow: hidden; margin-top: 22px; }
.cs-faq-i { background: var(--ink); padding: 22px 24px; }
.cs-faq-i h3 { font-size: 17px; color: var(--text); margin: 0 0 8px; font-weight: 600; letter-spacing: -.01em; }
.cs-faq-i p { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin: 0; max-width: 66ch; }


  /* ===== HERO (home-only) ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 140px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--ink);
  }
  .hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
  .hero-poster {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    filter: saturate(1.05) contrast(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
    z-index: 2;
    /* When the YouTube video is ready, JS adds .video-loaded to the section
       and we fade the poster out smoothly. */
    transition: opacity .8s ease;
  }
  .hero.video-loaded .hero-poster { opacity: 0; }
  @keyframes heroZoom {
    0% { transform: scale(1.0); } 100% { transform: scale(1.08); }
  }

  /* YouTube hero video iframe — desktop only.
     The iframe is scaled larger than its container to crop YouTube's
     thin letterbox border + suggested-content bands at end. */
  .hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: 1; /* below poster (poster fades to reveal video) */
    pointer-events: none;
    /* Iframe is visible from the moment it's added — we fade the poster OUT
       instead of fading the video IN. Some browsers refuse to autoplay
       videos that are at opacity:0 when the autoplay attempt happens. */
  }
  .hero-video iframe {
    position: absolute;
    /* Scale up 200% and center to crop UI overlays + safe-frame the content.
       16:9 video, viewport may be wider/narrower → use the bigger of cover-w/cover-h. */
    top: 50%; left: 50%;
    width: 100vw; height: 56.25vw;          /* 16:9 baseline */
    min-width: 177.78vh; min-height: 100vh;  /* fill on tall viewports */
    transform: translate(-50%, -50%) scale(1.35); /* crop YT chrome */
    border: 0;
  }
  /* Hide the YouTube video on mobile/tablet — keep poster image only.
     Saves data, dodges autoplay restrictions, looks better on cellular. */
  @media (max-width: 900px) {
    .hero-video { display: none !important; }
  }
  /* Reduced-motion users: also keep the poster (no autoplay video) */
  @media (prefers-reduced-motion: reduce) {
    .hero-video { display: none !important; }
  }
  /* Hero overlay — Option C: hybrid treatment.
     - Subtle cyan tint in the upper-left quadrant (brand presence)
     - Light dimming on the top half (video stays vivid)
     - Strong dark gradient at the bottom (anchors headline + CTAs)
     - Faint grid texture (decorative, brand element)
     The overlay stays present when the video loads — the gradient is
     light enough on top that the video still reads, and the bottom
     anchor keeps text consistently legible. */
  .hero-overlay {
    position: absolute; inset: 0; z-index: 3;
    pointer-events: none;
    background:
      radial-gradient(ellipse 80% 50% at 70% 15%, rgba(41, 175, 204, 0.16), transparent 55%),
      linear-gradient(180deg,
        rgba(10, 13, 16, 0.20) 0%,
        rgba(10, 13, 16, 0.30) 40%,
        rgba(10, 13, 16, 0.75) 95%,
        rgba(10, 13, 16, 0.90) 100%);
  }
  .hero-overlay::after {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 80%);
    opacity: .14;
  }
  .hero-content { position: relative; z-index: 4; max-width: 980px; }
  .hero-eyebrow {
    /* Match the page-eyebrow pill style used on every other page —
       rounded chip, cyan-tinted background, 1px cyan border, uppercase. */
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px; border-radius: 100px;
    background: rgba(41, 175, 204, .1);
    border: 1px solid rgba(41, 175, 204, .25);
    color: var(--brand-bright);
    font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 32px;
    /* Subtle blur background so the chip stays crisp against bright video */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    /* Reduced from clamp(40px, 7.4vw, 104px) — was dominating the imagery.
       Now the headline is a label for the video, not a competitor. */
    font-size: clamp(38px, 5.6vw, 80px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-bottom: 28px;
  }
  .hero h1 em { font-style: normal; font-weight: 300; color: var(--brand); letter-spacing: -0.04em; }
  .hero-sub {
    font-size: clamp(16px, 1.5vw, 19px);
    color: var(--text-muted);
    max-width: 620px; margin-bottom: 44px; line-height: 1.55;
    /* Subtle blurred text shadow keeps the muted gray readable on the
       moving video without making it feel "stamped on". */
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 0.55),
      0 2px 14px rgba(0, 0, 0, 0.45);
  }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

  /* ===== SCROLL INDICATOR (desktop only) ===== */
  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase;
    text-decoration: none;
    transition: color .25s ease, opacity .4s ease, transform .4s ease;
    opacity: 0;
    animation: scrollFadeIn 1s ease-out 1.5s forwards;
  }
  .hero-scroll:hover { color: var(--brand-bright); }
  .hero-scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(180deg, transparent 0%, currentColor 100%);
    position: relative; overflow: hidden;
  }
  .hero-scroll-line::after {
    content: '';
    position: absolute; left: 0; top: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--brand-bright) 100%);
    animation: scrollLine 2.4s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%   { top: -100%; }
    60%  { top: 100%; }
    100% { top: 100%; }
  }
  @keyframes scrollFadeIn {
    to { opacity: 1; }
  }
  .hero-scroll.hide {
    opacity: 0 !important; transform: translateX(-50%) translateY(20px);
    pointer-events: none;
  }
  @media (max-width: 900px) {
    .hero-scroll { display: none; }
  }

  /* ===== SECTION HEAD ===== */
  .section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 40px; margin-bottom: 64px; flex-wrap: wrap;
  }
  .section-intro { max-width: 420px; color: var(--text-muted); font-size: 17px; line-height: 1.6; }

  /* ===== ABOUT ===== */
  .about { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-text h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(32px, 4vw, 52px); line-height: 1.05;
    letter-spacing: -0.035em; margin-bottom: 28px;
  }
  .about-text h2 em { font-style: normal; color: var(--brand); font-weight: 300; }
  .about-text p { color: var(--text-muted); font-size: 17px; line-height: 1.65; margin-bottom: 20px; }
  .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
  .stat-card {
    padding: 28px; border: 1px solid var(--line-2); border-radius: 16px;
    background: linear-gradient(145deg, rgba(41, 175, 204, 0.06), transparent);
    transition: border-color .3s ease, transform .3s ease;
  }
  .stat-card:hover { border-color: var(--brand); transform: translateY(-4px); }
  .stat-number {
    font-family: var(--font-display); font-size: 52px; font-weight: 700;
    color: var(--brand); letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px;
  }
  .stat-label { font-size: 14px; color: var(--text-muted); }

  /* ===== PORTFOLIO (home preview) ===== */
  .portfolio-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
  .portfolio-item {
    position: relative; border-radius: 14px; overflow: hidden;
    background: var(--ink-3); aspect-ratio: 16 / 9; cursor: pointer;
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
  }
  .portfolio-item:hover { transform: translateY(-6px); }
  .portfolio-item.span-3 { grid-column: span 3; }
  .portfolio-item.span-2 { grid-column: span 2; }
  .portfolio-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .4s ease;
    filter: saturate(.9);
  }
  .portfolio-item:hover img { transform: scale(1.06); filter: saturate(1.1); }
  .portfolio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 13, 16, 0.95) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px;
    transition: background .4s ease;
  }
  .portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(180deg, rgba(10, 13, 16, 0.3) 0%, rgba(10, 13, 16, 0.95) 100%);
  }
  .portfolio-category {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--brand-bright); margin-bottom: 8px;
  }
  .portfolio-title {
    font-family: var(--font-display); font-size: 22px; font-weight: 600;
    letter-spacing: -0.025em; color: #fff;
  }
  .play-btn {
    position: absolute; top: 20px; right: 20px;
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(10, 13, 16, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line-2);
    display: grid; place-items: center; color: #fff;
    opacity: 0; transform: scale(.8);
    transition: opacity .3s ease, transform .3s ease, background .3s ease;
  }
  .portfolio-item:hover .play-btn { opacity: 1; transform: scale(1); background: var(--brand); color: #041014; }
  .portfolio-cta { text-align: center; margin-top: 56px; }

  /* ===== SERVICES GRID (numbered, 6 categories) ===== */
  .services { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  /* ===== WHAT WE CREATE — unified card pattern =====
     Matches the .process-card style: individual outlined cards with gap
     and lift-on-hover. Touch devices get the same treatment via :active. */
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .service-card {
    padding: 36px 32px; border: 1px solid var(--line-2); border-radius: 20px;
    background: linear-gradient(160deg, var(--ink-2), var(--ink));
    position: relative; overflow: hidden;
    transition: border-color .3s ease, transform .3s ease;
    text-decoration: none;
    cursor: pointer;
  }
  .service-card:hover,
  .service-card:active { border-color: var(--brand); transform: translateY(-6px); }
  .service-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(145deg, rgba(41, 175, 204, 0.08), transparent 60%);
    opacity: 0; transition: opacity .4s ease;
    pointer-events: none;
  }
  .service-card:hover::before,
  .service-card:active::before { opacity: 1; }
  .service-num {
    font-family: var(--font-display);
    font-size: 13px; font-weight: 500;
    color: var(--brand);
    letter-spacing: 0.18em;
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
  }
  .service-num::after {
    content: ''; display: inline-block;
    width: 28px; height: 1px; background: var(--brand);
    margin-left: 12px; vertical-align: middle;
    transition: width .4s cubic-bezier(.2,.8,.2,1);
  }
  .service-card:hover .service-num::after,
  .service-card:active .service-num::after { width: 96px; }
  .service-card h3 {
    font-family: var(--font-display); font-size: 22px; font-weight: 600;
    letter-spacing: -0.025em; margin-bottom: 12px; position: relative;
  }
  .service-card p { color: var(--text-muted); font-size: 15px; line-height: 1.55; position: relative; }

  /* ===== CLIENTS MARQUEE ===== */
  .clients-marquee {
    overflow: hidden; position: relative; padding: 40px 0;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  }
  .clients-track { display: flex; gap: 60px; animation: marquee 40s linear infinite; width: max-content; }
  @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  .client-logo {
    flex-shrink: 0; font-family: var(--font-display);
    font-weight: 600; font-size: 20px; color: var(--text-dim);
    letter-spacing: -0.015em; white-space: nowrap;
    padding: 12px 28px; border: 1px solid var(--line-2);
    border-radius: 100px;
    transition: color .3s ease, border-color .3s ease;
  }
  .client-logo:hover { color: var(--brand); border-color: var(--brand); }

  /* ===== PROCESS ===== */
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .process-card {
    padding: 32px; border: 1px solid var(--line-2); border-radius: 20px;
    background: linear-gradient(160deg, var(--ink-2), var(--ink));
    position: relative; overflow: hidden;
    transition: border-color .3s ease, transform .3s ease;
  }
  .process-card:hover,
  .process-card:active { border-color: var(--brand); transform: translateY(-6px); }
  .process-num {
    font-family: var(--font-display); font-size: 64px; font-weight: 300;
    color: var(--brand); line-height: 1; margin-bottom: 20px; letter-spacing: -0.05em;
  }
  .process-card h3 {
    font-family: var(--font-display); font-size: 22px; font-weight: 600;
    letter-spacing: -0.025em; margin-bottom: 12px;
  }
  .process-card p { color: var(--text-muted); line-height: 1.55; font-size: 15px; }

  /* ===== CONTACT ===== */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
  .contact-info h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(30px, 3.6vw, 52px); line-height: 1.02;
    letter-spacing: -0.035em; margin-bottom: 24px;
  }
  .contact-info h2 em { font-style: normal; color: var(--brand); font-weight: 300; }
  .contact-info p { color: var(--text-muted); margin-bottom: 40px; font-size: 17px; line-height: 1.6; max-width: 460px; }
  .contact-method {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 0; border-bottom: 1px solid var(--line);
    transition: padding-left .3s ease;
  }
  .contact-method:hover { padding-left: 8px; }
  .contact-method-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(41, 175, 204, .1); color: var(--brand);
    display: grid; place-items: center; flex-shrink: 0;
  }
  .contact-method-icon svg { width: 20px; height: 20px; }
  .contact-method-text small {
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-dim); display: block; margin-bottom: 2px;
  }
  .contact-method-text span { font-size: 16px; color: var(--text); font-weight: 500; }
  .contact-form {
    padding: 44px; background: var(--ink-2);
    border: 1px solid var(--line); border-radius: 20px;
  }
  .contact-form h3 {
    font-family: var(--font-display); font-size: 28px; font-weight: 600;
    letter-spacing: -0.025em; margin-bottom: 8px;
  }
  .contact-form > p { color: var(--text-muted); margin-bottom: 28px; font-size: 14px; }
  .form-group { margin-bottom: 18px; }
  .form-group label {
    display: block; font-size: 12px; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
  }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 16px;
    background: var(--ink); border: 1px solid var(--line-2);
    border-radius: 10px; color: var(--text);
    font-family: inherit; font-size: 15px;
    transition: border-color .25s ease, background .25s ease;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--brand); background: rgba(41, 175, 204, .04);
  }
  .form-group textarea { resize: vertical; min-height: 110px; }
  /* Select: custom chevron + dark-themed options */
  .form-group select {
    appearance: none; -webkit-appearance: none; -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg aria-hidden="true" xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%238a949c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
    color-scheme: dark;
  }
  .form-group select option {
    background: #12171c;
    color: #e8ecef;
    padding: 10px;
  }
  .form-group select option:hover,
  .form-group select option:checked {
    background: #1a2127;
  }
  .checkbox-group {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 24px; font-size: 13px; color: var(--text-muted); line-height: 1.5;
  }
  /* EXO-styled checkbox — same pattern as contact page */
  .checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    margin: 0; flex-shrink: 0;
    width: 20px; height: 20px;
    border: 1px solid var(--line-2);
    border-radius: 5px;
    background: var(--ink);
    cursor: pointer;
    position: relative;
    transition: border-color .2s ease, background .2s ease;
    margin-top: 1px;
  }
  .checkbox-group input[type="checkbox"]:hover { border-color: var(--brand); }
  .checkbox-group input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
  }
  .checkbox-group input[type="checkbox"]:checked {
    background: var(--brand);
    border-color: var(--brand);
  }
  .checkbox-group input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px; top: 2px;
    width: 6px; height: 11px;
    border: solid #041014;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .checkbox-group label { cursor: pointer; }
  .checkbox-group a { color: var(--brand); text-decoration: underline; }

  @media (max-width: 1024px) {
    .portfolio-grid { grid-template-columns: repeat(4, 1fr); }
    .portfolio-item.span-3, .portfolio-item.span-2 { grid-column: span 2; }
    /* Inline `style="grid-column: span 6;"` was forcing 2 implicit
       zero-width columns and breaking the 4-col layout. Override here. */
    .portfolio-item[style*="span 6"] { grid-column: span 4 !important; }
    /* Hide the 5th small item on tablet so we have a clean 4 small + 1 big
       grid (5 total). Mobile shows it again because we go to single-col there. */
    .portfolio-item.tablet-hide { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
  }
  /* Restore Bioland visibility on mobile (single-col, no asymmetry concern) */
  @media (max-width: 700px) {
    .portfolio-item.tablet-hide { display: block; }
  }
  @media (max-width: 700px) {
    /* ============= HERO ============= */
    /* Full-bleed cinematic hero. Less text, image first. */
    .hero {
      min-height: 88vh; min-height: 88dvh;
      padding: 0;
      align-items: flex-end;
    }
    .hero-poster {
      /* Move focal point higher so headline + image overlap better */
      object-position: center 30%;
    }
    .hero-overlay {
      /* Lighter overlay than before — image was reading too abstract.
         Top half nearly clear, only the bottom is dimmed enough to anchor the headline + CTAs. */
      background:
        radial-gradient(ellipse 90% 50% at 70% 20%, rgba(41, 175, 204, 0.14), transparent 60%),
        linear-gradient(180deg, rgba(10, 13, 16, 0.15) 0%, rgba(10, 13, 16, 0.55) 50%, rgba(10, 13, 16, 0.85) 100%);
    }
    .hero-overlay::after { display: none; } /* drop the grid texture on mobile */
    .hero-content {
      padding: 0 20px 56px;
      max-width: 100%;
    }
    /* Eyebrow: shorter, balanced, can wrap to 2 lines if needed */
    .hero-eyebrow {
      font-size: 10.5px; letter-spacing: 0.16em;
      margin-bottom: 14px;
      max-width: 320px;
      line-height: 1.4;
    }
    .hero h1 {
      font-size: clamp(38px, 11vw, 56px);
      line-height: 0.98;
      margin-bottom: 16px;
    }
    /* Drop the verbose hero-sub on mobile entirely — image carries the message */
    .hero-sub { display: none; }
    .hero-ctas { gap: 10px; flex-wrap: wrap; }
    .hero-ctas .btn { padding: 12px 18px; font-size: 13px; }
    .hero-ctas .btn-lg { padding: 14px 22px; font-size: 14px; }
    /* The scroll indicator hides itself <900px already; no override needed */

    /* ============= ABOUT ============= */
    /* User feedback: "We scrolled far and still didn't see anything meaningful"
       Fix: tighter padding, smaller copy, 2x2 stats so something grabs attention fast. */
    .about { padding: 56px 0 40px; }
    .about-grid { gap: 24px; }
    .about-text h2 { font-size: clamp(28px, 7vw, 36px); line-height: 1.1; margin-bottom: 14px; }
    .about-text p { font-size: 15px; line-height: 1.6; margin-bottom: 14px; }
    .about-text p:last-of-type { margin-bottom: 24px; }

    /* Stats: 2x2 grid, smaller numbers */
    .about-stats {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 28px;
    }
    .stat-card { padding: 18px 14px; }
    .stat-number { font-size: 30px; }
    .stat-label { font-size: 11px; line-height: 1.3; }

    /* ============= SECTION HEADS (shared) ============= */
    /* Was: title left + intro right floating awkwardly. Stack cleanly. */
    .section-head {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 36px;
    }
    .section-head .section-intro {
      max-width: 100%;
      font-size: 15px;
    }
    .section-title { font-size: clamp(28px, 7.5vw, 38px); line-height: 1.05; }

    /* ============= PORTFOLIO (Featured Work) ============= */
    /* Always show overlay + play button on mobile (no hover state) */
    .portfolio-grid { grid-template-columns: 1fr; gap: 14px; }
    .portfolio-item.span-3,
    .portfolio-item.span-2,
    .portfolio-item[style*="span 6"] { grid-column: span 1 !important; }
    .portfolio-item img { aspect-ratio: 16 / 10; object-fit: cover; }
    .portfolio-overlay {
      opacity: 1 !important;
      transform: none !important;
      background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
      padding: 20px;
    }
    .portfolio-category { font-size: 11px; letter-spacing: 0.18em; }
    .portfolio-title { font-size: 17px; line-height: 1.2; }
    .play-btn {
      opacity: 1 !important;
      transform: scale(1) !important;
      width: 44px; height: 44px;
      top: 16px; right: 16px;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      color: #fff;
    }
    .portfolio-cta { margin-top: 28px; }

    /* ============= SERVICES (numbered cards) ============= */
    /* Single column on mobile so each card has room to breathe.
       16px gap between cards (matches process-grid mobile gap). */
    .services-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .service-card {
      padding: 24px 22px;
    }
    .service-num { margin-bottom: 18px; font-size: 11px; }
    .service-num::after { width: 18px; margin-left: 8px; }
    .service-card h3 { font-size: 18px; line-height: 1.2; margin-bottom: 8px; }
    .service-card p { font-size: 14px; line-height: 1.5; }

    /* ============= PROCESS ============= */
    /* The user said the layout here is fine - just stack on mobile. */
    .process-grid { grid-template-columns: 1fr; gap: 16px; }

    /* ============= CLIENTS — HIDDEN ON MOBILE FOR NOW =============
       TODO: Bring this back later with a better mobile pattern.
       Options to revisit: slow auto-fader, "Trusted by X, Y, Z + 12 more" 
       inline callout, or a static grid (current grid felt too list-y). */
    #clients { display: none; }

    /* ============= CTA SECTION ============= */
    .cta-section { padding: 72px 20px; }

    /* ============= CONTACT ============= */
    .contact-form { padding: 28px; }
  }

  /* ===== FORM STATUS STATES (home form) ===== */
  .form-status {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid;
    font-size: 14px;
    line-height: 1.55;
  }
  .form-status strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
  }
  .form-status p { margin: 0; color: var(--text-muted); }
  .form-status a { color: var(--brand); text-decoration: underline; }
  .form-status-success {
    background: rgba(41, 175, 204, 0.08);
    border-color: rgba(41, 175, 204, 0.4);
  }
  .form-status-success strong { color: var(--brand); }
  .form-status-error {
    background: rgba(255, 107, 74, 0.08);
    border-color: rgba(255, 107, 74, 0.4);
  }
  .form-status-error strong { color: var(--cta); }

  .contact-form.is-success > :not(.form-status-success),
  .contact-form.is-success h3,
  .contact-form.is-success > p {
    display: none !important;
  }

  #contact-submit[disabled] { opacity: 0.6; cursor: wait; }
  #contact-submit[disabled] .btn-label::after { content: '…'; }

picture{display:contents}