@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; }
@media (max-width: 800px){.page-header::before{background-image:url('/assets/headers/work-960.webp')}.page-header.contact-header::before{background-image:url('/assets/headers/contact-960.webp')}}


  /* TEAM GRID */
  .team-section { padding: 100px 0; border-top: 1px solid var(--line); }
  .team-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    margin-top: 56px;
  }
  .team-card {
    background: var(--ink-2);
    border: 1px solid var(--line-2);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color .3s ease, transform .3s ease;
  }
  .team-card:hover { border-color: var(--brand); transform: translateY(-6px); }

  .team-portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(145deg, var(--ink-3), var(--ink));
    display: grid; place-items: center;
    overflow: hidden;
  }
  .team-portrait::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 30%, rgba(41, 175, 204, 0.18), transparent 60%),
      radial-gradient(ellipse 60% 50% at 80% 90%, rgba(41, 175, 204, 0.08), transparent 50%);
  }
  .team-portrait img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    z-index: 1;
  }

  .team-info { padding: 28px; }
  .team-info .name {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text); margin-bottom: 4px;
  }
  .team-info .role {
    font-size: 12px; letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-bright); margin-bottom: 16px;
  }
  .team-info p {
    color: var(--text-muted); font-size: 14px;
    line-height: 1.6;
  }

  /* Founder intro - smaller, integrated */
  .founder-intro { padding: 100px 0 60px; }
  .founder-intro-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
    align-items: center;
  }
  .founder-intro-copy 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;
  }
  .founder-intro-copy h2 em { font-style: normal; color: var(--brand); font-weight: 300; }
  .founder-intro-copy p {
    color: var(--text-muted); font-size: 17px; line-height: 1.65;
    margin-bottom: 16px;
  }
  .founder-intro-copy p strong { color: var(--text); font-weight: 500; }
  .founder-intro-stats {
    display: flex; gap: 32px;
    margin-top: 28px; padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .fis .stat-n {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 700;
    color: var(--brand); letter-spacing: -0.03em;
    line-height: 1; margin-bottom: 4px;
  }
  .fis p {
    font-size: 12px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin: 0;
  }

  /* Values section */
  .values {
    padding: 100px 0; background: var(--ink-2);
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  }
  /* ===== WHAT WE STAND FOR — unified card pattern (matches .process-card) ===== */
  .values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 56px;
  }
  .value-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;
  }
  .value-card:hover,
  .value-card:active { border-color: var(--brand); transform: translateY(-6px); }
  .value-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;
  }
  .value-card:hover::before,
  .value-card:active::before { opacity: 1; }
  .value-num {
    font-family: var(--font-display); font-size: 12px;
    color: var(--brand); letter-spacing: 0.18em;
    margin-bottom: 18px; font-weight: 500; position: relative;
    text-transform: uppercase;
  }
  .value-card h3 {
    font-family: var(--font-display); font-size: 22px; font-weight: 600;
    letter-spacing: -0.025em; margin-bottom: 12px;
    position: relative;
  }
  .value-card p {
    color: var(--text-muted); font-size: 15px; line-height: 1.55;
    position: relative;
  }

  /* Capabilities */
  .capabilities { padding: 100px 0; }
  .cap-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 56px;
  }
  .cap-block h3 {
    font-family: var(--font-display); font-size: 20px; font-weight: 600;
    letter-spacing: -0.025em; margin-bottom: 20px;
    padding-bottom: 14px; border-bottom: 1px solid var(--line-2);
    display: flex; align-items: center; gap: 12px;
  }
  .cap-block h3 svg { width: 20px; height: 20px; color: var(--brand); }
  .cap-list { list-style: none; }
  .cap-list li {
    padding: 12px 0;
    color: var(--text); font-size: 14.5px; line-height: 1.55;
    border-bottom: 1px solid var(--line);
  }
  .cap-list li:last-child { border-bottom: none; }

  /* ===== SECTION HEAD (matches the service-section heading rhythm) =====
     Eyebrow → h2 → lead paragraph stacked. Same visual structure used by
     the six service categories on the services page. */
  .team-section-head {
    max-width: 820px;
    margin-bottom: 56px;
  }
  .team-section-head 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;
  }
  .team-section-head h2 em {
    font-style: normal; color: var(--brand); font-weight: 300;
  }
  .team-section-head .lead {
    color: var(--text-muted); font-size: 17px; line-height: 1.65;
    max-width: 720px;
  }

  @media (max-width: 1024px) {
    .team-grid { grid-template-columns: 1fr; gap: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
    .founder-intro-grid, .cap-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 700px) {
    .founder-intro, .team-section, .values, .capabilities { padding: 56px 0; }

    /* ============= FOUNDER STATS =============
       User: stack vertically like the work page page-stats. */
    .founder-intro-stats {
      flex-direction: column;
      gap: 16px;
      align-items: stretch;
    }
    .fis {
      padding: 16px 18px;
      border: 1px solid var(--line-2);
      border-radius: 12px;
      background: var(--ink-2);
    }
    .fis .stat-n { font-size: 30px; }
    .fis p { font-size: 12px; }

    /* Founder intro typography */
    .founder-intro h2 {
      font-size: clamp(26px, 7vw, 34px);
      line-height: 1.1;
    }
    .founder-intro p { font-size: 14.5px; line-height: 1.6; }

    /* ============= VALUES (Three Principles) =============
       Was: 3-col grid with internal 1px borders = table feel.
       Fix: distinct bordered cards stacked. */
    .values-grid {
      grid-template-columns: 1fr;
      gap: 14px;
      background: transparent;
      border: 0;
      border-radius: 0;
      overflow: visible;
      margin-top: 36px;
    }
    .value-card {
      border: 1px solid var(--line-2);
      border-radius: 14px;
      padding: 24px 22px;
    }
    .value-num { margin-bottom: 12px; font-size: 11px; }
    .value-card h3 { font-size: 17px; margin-bottom: 8px; }
    .value-card p { font-size: 13.5px; line-height: 1.55; }

    /* ============= CAPABILITIES (360° — what we bring) =============
       Same fix: stacked cards, not a grid. */
    .cap-grid {
      grid-template-columns: 1fr;
      gap: 14px;
      margin-top: 36px;
    }
    .cap-block {
      border: 1px solid var(--line-2);
      border-radius: 14px;
      padding: 22px 22px 12px;
      background: var(--ink-2);
    }
    .cap-block h3 {
      font-size: 16px;
      margin-bottom: 14px;
      padding-bottom: 12px;
    }
    .cap-list li {
      padding: 10px 0;
      font-size: 13.5px;
    }

    /* Section heads stacked cleanly (shared pattern) */
    .section-head {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 28px;
    }
    .section-head .section-intro { max-width: 100%; font-size: 15px; }
    .section-title { font-size: clamp(26px, 7vw, 34px); line-height: 1.1; }

    /* Team cards */
    .team-card { padding: 20px; }
    .team-info .name { font-size: 22px; }
    .team-info .role { font-size: 12px; }
    .team-info p { font-size: 14.5px; line-height: 1.6; }
  }


/* service-page FAQ as accordion*/
/* 2 or 4 films: two columns so no film sits alone in a row [v202609-v4] */
@media (min-width: 701px){.lp-grid:has(> :nth-child(2):last-child),.lp-grid:has(> :nth-child(4):last-child){grid-template-columns:repeat(2,1fr)}}
/*, same look as the contact page [v202609-v4] */
.faq-list{display:flex;flex-direction:column;gap:12px}
.faq-item{border:1px solid var(--line-2);border-radius:14px;background:linear-gradient(145deg,var(--ink-2),transparent);transition:border-color .25s ease,background .25s ease;overflow:hidden}
.faq-item:hover{border-color:var(--brand)}
.faq-item[open]{border-color:var(--brand);background:linear-gradient(145deg,rgba(41,175,204,.06),transparent)}
.faq-item summary{list-style:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:20px;padding:22px 26px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary:focus-visible{outline:2px solid var(--brand);outline-offset:-2px;border-radius:14px}
.faq-q{font-family:var(--font-display);font-size:16px;font-weight:600;letter-spacing:-.015em;color:var(--text);margin:0}
.faq-icon{flex-shrink:0;width:24px;height:24px;border-radius:50%;background:rgba(41,175,204,.12);color:var(--brand);display:grid;place-items:center;transition:background .25s ease}
.faq-icon svg{width:14px;height:14px;transition:transform .3s ease}
.faq-item[open] .faq-icon{background:var(--brand);color:#041014}
.faq-item[open] .faq-icon svg{transform:rotate(45deg)}
.faq-answer{color:var(--text-muted);font-size:15px;line-height:1.65;padding:14px 26px 22px;border-top:1px solid var(--line)}

picture{display:contents}