@view-transition {
navigation: auto;
} ::view-transition-old(root) {
animation: vt-fade-out 0.22s var(--ease-out-expo, cubic-bezier(0.16,1,0.3,1)) both;
}
::view-transition-new(root) {
animation: vt-fade-in 0.32s var(--ease-out-expo, cubic-bezier(0.16,1,0.3,1)) both;
}
@keyframes vt-fade-out {
from { opacity: 1; transform: translateY(0); }
to   { opacity: 0; transform: translateY(-8px); }
}
@keyframes vt-fade-in {
from { opacity: 0; transform: translateY(10px); }
to   { opacity: 1; transform: translateY(0); }
} @media (prefers-reduced-motion: reduce) {
::view-transition-old(root),
::view-transition-new(root) {
animation: none;
}
} *,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
} .screen-reader-text {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
} .empty-state {
color: rgba(255, 255, 255, 0.5);
}
.section-insights--light .empty-state {
color: rgba(0, 0, 0, 0.58);
}
:root { --color-black: #111111;
--color-white: #e0dfdc;
--color-gray: #878787;
--color-gray-light: #cbc9c4;
--color-gray-dark: #1b1b1b;
--color-cream: #f5f5f3;
--color-mid-gray: #aaaaaa; --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
--ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
--ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
html {
font-size: 17px;
-webkit-text-size-adjust: 100%;
} .skip-to-content {
position: absolute;
top: -100%;
left: 16px;
z-index: 10000;
padding: 12px 24px;
background: var(--color-white);
color: var(--color-black);
font-size: 0.85rem;
font-weight: 500;
border-radius: 0 0 6px 6px;
text-decoration: none;
opacity: 0;
transition: top 0.3s ease, opacity 0.3s ease;
}
.skip-to-content:focus {
top: 0;
opacity: 1;
} html.smooth-scroll {
scroll-behavior: auto;
} html.smooth-scroll::-webkit-scrollbar {
display: none;
}
html.smooth-scroll {
-ms-overflow-style: none;
scrollbar-width: none;
}
body {
font-family:
"Inter",
-apple-system,
BlinkMacSystemFont,
sans-serif;
font-weight: 300;
font-size: 1rem;
line-height: 1.6;
color: var(--color-white);
background-color: var(--color-black);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
::selection {
background: var(--color-gray-light);
color: var(--color-black);
}
a {
color: inherit;
text-decoration: none;
transition: opacity 0.4s var(--ease-out-expo);
}
a:hover {
opacity: 0.6;
} a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
outline: 2px solid currentColor;
outline-offset: 4px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
outline: none;
}
img {
max-width: 100%;
height: auto;
display: block;
}
ul,
ol {
list-style: none;
}
p {
text-wrap: pretty;
} h1,
h2,
h3,
h4 {
font-weight: 300;
letter-spacing: -0.03em;
line-height: 1.1;
text-wrap: balance;
}
h1 {
font-size: clamp(2.2rem, 5vw, 4.8rem);
color: var(--color-white);
}
h2 {
font-size: clamp(1.8rem, 4vw, 3.8rem);
color: var(--color-white);
}
h3 {
font-size: clamp(1.1rem, 2.2vw, 1.8rem);
line-height: 1.3;
}
.label {
display: block;
font-size: 0.75rem;
font-weight: 400;
color: var(--color-gray);
letter-spacing: 0.08em;
text-transform: uppercase;
}
.text-stack > * + * {
margin-top: clamp(14px, 2vh, 26px);
} .container {
width: 100%;
max-width: 1400px;
margin: 0 auto;
padding: 0 clamp(20px, 5vw, 80px);
}
.container-wide {
width: 100%;
max-width: 1600px;
margin: 0 auto;
padding: 0 clamp(20px, 4vw, 60px);
}
section {
padding: clamp(110px, 14vh, 190px) 0;
position: relative;
} header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: 25px clamp(20px, 5vw, 80px);
display: flex;
justify-content: space-between;
align-items: center;
--header-fg: var(--color-white);
--header-border: rgba(224, 224, 220, 0.25);
--header-hover-bg: var(--color-white);
--header-hover-fg: var(--color-black);
color: var(--header-fg);
transition:
padding 0.5s var(--ease-out-expo),
color 0.4s var(--ease-out-expo),
transform 0.6s var(--ease-out-expo),
opacity 0.4s var(--ease-out-expo);
will-change: transform, opacity;
}
header.is-light {
--header-fg: var(--color-black);
--header-border: rgba(0, 0, 0, 0.2);
--header-hover-bg: var(--color-black);
--header-hover-fg: var(--color-white);
}
header.is-nav-open {
--header-fg: var(--color-white);
--header-border: rgba(224, 224, 220, 0.3);
--header-hover-bg: var(--color-white);
--header-hover-fg: var(--color-black);
}
header.is-hidden {
transform: translateY(-110%);
opacity: 0;
pointer-events: none;
}
.header-wrap {
display: flex;
align-items: center;
gap: 30px;
transition:
transform 0.5s var(--ease-out-expo),
opacity 0.4s var(--ease-out-expo);
}
.header-cta {
font-size: 0.8rem;
font-weight: 400;
letter-spacing: 0.02em;
padding: 12px 24px;
border: 1px solid var(--header-border);
border-radius: 100px;
color: var(--header-fg);
background-color: transparent;
transition:
color 0.5s var(--ease-out-expo),
background-color 0.5s var(--ease-out-expo),
border-color 0.5s var(--ease-out-expo),
transform 0.4s var(--ease-out-expo);
}
.header-cta:hover {
background: var(--header-hover-bg);
color: var(--header-hover-fg);
opacity: 1;
}
.logo {
display: flex;
align-items: center;
gap: 12px;
color: inherit;
transition: color 0.5s var(--ease-out-expo);
}
.logo svg {
width: clamp(50px, 5.5vw, 74px);
height: auto;
transition:
transform 0.5s var(--ease-out-expo),
color 0.5s var(--ease-out-expo);
}
.menu-toggle {
display: flex;
flex-direction: column;
gap: 6px;
cursor: pointer;
padding: 10px;
position: relative;
color: inherit;
border: none;
background: none;
font: inherit;
transition: color 0.5s var(--ease-out-expo);
}
.menu-toggle span {
display: block;
width: 28px;
height: 2px;
background-color: currentColor;
transition:
transform 0.5s var(--ease-out-expo),
width 0.5s var(--ease-out-expo),
opacity 0.4s var(--ease-out-expo),
background-color 0.5s var(--ease-out-expo);
transform-origin: center;
}
.menu-toggle span:nth-child(1) {
width: 30px;
}
.menu-toggle span:nth-child(2) {
width: 20px;
}
.menu-toggle span:nth-child(3) {
width: 26px;
}
.menu-toggle span:nth-child(4) {
width: 16px;
}
.menu-toggle:hover span {
width: 30px;
}
.menu-toggle.active span:nth-child(1),
.menu-toggle.active span:nth-child(4) {
opacity: 0;
transform: translateX(-6px);
}
.menu-toggle.active span:nth-child(2) {
width: 28px;
transform: translateY(4px) rotate(45deg);
}
.menu-toggle.active span:nth-child(3) {
width: 28px;
transform: translateY(-4px) rotate(-45deg);
} .nav-menu {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
height: 100dvh;
background: var(--color-gray-dark);
z-index: 999;
display: flex;
align-items: center;
padding: 0 clamp(20px, 5vw, 80px);
clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
transition: clip-path 0.8s var(--ease-in-out-expo);
}
.nav-menu.active {
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.nav-menu-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
width: 100%;
max-width: 1400px;
margin: 0 auto;
}
.nav-links {
display: flex;
flex-direction: column;
gap: 8px;
}
.nav-links li {
overflow: hidden;
padding-bottom: 0.1em;
margin-bottom: -0.1em;
}
.nav-links a {
font-size: clamp(2rem, 5vw, 4rem);
font-weight: 300;
letter-spacing: -0.03em;
display: inline-block;
transform: translateY(100%);
color: var(--color-white);
transition:
color 0.5s var(--ease-out-expo),
padding-left 0.5s var(--ease-out-expo);
}
.nav-menu.active .nav-links a {
animation: navLinkIn 0.6s var(--ease-out-expo) forwards;
}
.nav-menu.active .nav-links li:nth-child(1) a {
animation-delay: 0.08s;
}
.nav-menu.active .nav-links li:nth-child(2) a {
animation-delay: 0.14s;
}
.nav-menu.active .nav-links li:nth-child(3) a {
animation-delay: 0.2s;
}
.nav-menu.active .nav-links li:nth-child(4) a {
animation-delay: 0.26s;
}
.nav-menu.active .nav-links li:nth-child(5) a {
animation-delay: 0.32s;
}
.nav-menu.active .nav-links li:nth-child(6) a {
animation-delay: 0.38s;
}
@keyframes navLinkIn {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}
.nav-links .current-menu-item a {
color: var(--color-gray);
opacity: 0.6;
}
.nav-links a:hover {
color: var(--color-gray);
padding-left: 12px;
opacity: 1;
}
.nav-info {
display: flex;
flex-direction: column;
justify-content: flex-end;
gap: 40px;
padding-bottom: 40px;
}
.nav-info-block .col-title {
font-size: 0.75rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.1em;
line-height: 1.1;
margin-bottom: 15px;
color: var(--color-gray);
}
.nav-info-block p,
.nav-info-block a {
font-size: 1rem;
line-height: 1.8;
display: block;
} .hero {
min-height: 100vh;
min-height: 100dvh;
height: 100vh;
height: 100dvh;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: clamp(80px, 10vh, 120px) clamp(20px, 5vw, 80px) clamp(60px, 18vh, 200px);
position: sticky;
top: 0;
z-index: 1;
overflow: hidden;
} .hero ~ section {
position: relative;
z-index: 2;
}
.hero-content {
position: relative;
z-index: 10;
max-width: 1000px;
padding-right: clamp(40px, 8vw, 140px);
transform-origin: left bottom;
will-change: transform, opacity;
} h1.hero-label {
font-size: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
}
.hero-label {
overflow: hidden;
padding-bottom: 0.15em;
margin-bottom: calc(20px - 0.15em);
}
.hero-label span {
display: inline-block;
animation: slideUp 1s var(--ease-out-expo) 0.3s both;
}
.hero h2.hero-heading {
margin-bottom: 30px;
overflow: hidden;
font-size: clamp(2.6rem, 6.5vw, 5rem);
}
.hero h2.hero-heading .line {
display: block;
overflow: hidden;
padding-bottom: 0.15em;
margin-bottom: -0.15em;
}
.hero h2.hero-heading .line span {
display: block;
animation: slideUp 1.2s var(--ease-out-expo) both;
}
.hero h2.hero-heading .line:nth-child(1) span {
animation-delay: 0.4s;
}
.hero h2.hero-heading .line:nth-child(2) span {
animation-delay: 0.5s;
}
.hero h2.hero-heading .line:nth-child(3) span {
animation-delay: 0.6s;
}
@keyframes slideUp {
from {
transform: translateY(105%);
}
to {
transform: translateY(0);
}
}
.hero-description {
max-width: 480px;
font-size: clamp(0.9rem, 1.1vw, 1.05rem);
color: var(--color-gray);
line-height: 1.7;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
animation: fadeIn 1s var(--ease-out-expo) 0.8s both;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(14px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero-scroll {
position: absolute;
right: clamp(20px, 5vw, 80px);
bottom: clamp(60px, 10vh, 100px);
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
animation: fadeIn 1s var(--ease-out-expo) 1s both;
}
.hero-scroll-line {
width: 1px;
height: 56px;
overflow: hidden;
}
.hero-scroll-line span {
display: block;
width: 100%;
height: 100%;
background: linear-gradient(
to bottom,
var(--color-gray) 50%,
transparent 50%
);
background-size: 100% 200%;
background-position: 0 -56px;
animation: scrollLineSlide 2.4s cubic-bezier(0.76, 0, 0.3, 1) infinite;
}
.hero-scroll-label {
font-size: 0.7rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--color-gray);
writing-mode: vertical-rl;
} .hero-scroll-fade {
position: absolute;
inset: 0;
background: #000;
opacity: 0;
pointer-events: none;
z-index: 4; will-change: opacity;
} .hero .hero-content {
position: relative;
z-index: 5;
} .hero .hero-scroll {
z-index: 5;
}
@media (prefers-reduced-motion: reduce) {
.hero-scroll-fade { display: none; }
}
@keyframes scrollLineSlide {
0% {
background-position: 0 -56px;
}
75% {
background-position: 0 0;
}
100% {
background-position: 0 56px;
}
} .section-about {
background: var(--color-black);
color: var(--color-white);
padding: clamp(110px, 14vh, 180px) 0;
position: relative;
overflow: hidden;
box-shadow: 0 -20px 60px -8px rgba(0, 0, 0, 0.4);
}
.section-about .container {
display: flex;
flex-direction: column;
gap: 0;
} .about-label {
margin-bottom: 20px;
} .about-heading {
font-size: clamp(2.7rem, 6.8vw, 5rem);
line-height: 1.0;
letter-spacing: -0.04em;
font-weight: 300;
color: var(--color-white);
margin-bottom: 0;
} .about-body {
display: grid;
grid-template-columns: 1fr 1fr;
border-top: 1px solid rgba(255, 255, 255, 0.1);
margin-top: clamp(40px, 6vh, 70px);
padding-top: clamp(28px, 4vh, 48px);
}
.about-body p {
grid-column: 2;
font-size: clamp(1rem, 1.2vw, 1.18rem);
line-height: 1.85;
color: rgba(255, 255, 255, 0.55);
max-width: 480px;
} .section-approach {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: flex-end;
background: var(--color-black);
position: relative;
padding: 120px 5%;
overflow: hidden;
} .section-approach .image-placeholder {
position: absolute;
top: -20%;
left: 0;
width: 100%;
height: 140%; background: linear-gradient(135deg, #1b1b1b 0%, #111111 100%);
z-index: 0;
} .section-approach .image-placeholder.image-reveal::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--color-black);
z-index: 2;
transform: scaleX(1);
transform-origin: right;
transition: transform 1.5s var(--ease-in-out-expo);
}
.section-approach .image-placeholder.image-reveal.visible::before {
transform: scaleX(0);
}
.section-approach .image-placeholder .parallax-inner {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #1b1b1b 0%, #111111 100%);
transform: scale(1.1);
transition: transform 1.6s var(--ease-out-expo);
overflow: hidden;
}
.section-approach .image-placeholder .parallax-inner img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}
.section-approach .image-placeholder.visible .parallax-inner {
transform: scale(1);
} .section-approach::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
to right,
rgba(0, 0, 0, 0.3) 0%,
rgba(0, 0, 0, 0.5) 50%,
rgba(0, 0, 0, 0.7) 100%
);
z-index: 1;
pointer-events: none;
}
.section-approach .content {
position: relative;
z-index: 2;
max-width: 550px;
margin-left: auto;
}
.section-approach .label {
font-size: 0.75rem;
line-height: 1.6;
color: var(--color-gray);
margin-bottom: 20px;
}
.section-approach h2 {
margin-bottom: 30px;
}
.section-approach h2 span {
display: block;
}
.section-approach p {
font-size: clamp(1rem, 1.2vw, 1.18rem);
line-height: 1.85;
color: rgba(224, 224, 220, 0.7);
}
.section-approach .approach-cta {
display: inline-flex;
align-items: center;
gap: 12px;
margin-top: 30px;
font-size: 0.9rem;
font-weight: 400;
color: var(--color-white);
position: relative;
}
.section-approach .approach-cta::after {
content: "";
position: absolute;
bottom: -4px;
left: 0;
width: 100%;
height: 1px;
background: var(--color-white);
transform: scaleX(0);
transform-origin: right;
transition: transform 0.5s var(--ease-out-expo);
}
.section-approach .approach-cta:hover::after {
transform: scaleX(1);
transform-origin: left;
}
.section-approach .approach-cta svg {
width: 18px;
height: 18px;
transition: transform 0.3s var(--ease-out-expo);
}
.section-approach .approach-cta:hover svg {
transform: translateX(5px);
} .section-services {
background: var(--color-black);
padding: clamp(130px, 16vh, 210px) 0;
}
.services-header .label {
margin-bottom: 20px;
}
.services-header {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
margin-bottom: clamp(60px, 10vh, 100px);
}
.services-header p {
color: var(--color-gray);
line-height: 1.9;
max-width: 400px;
margin-left: auto;
}
.services-list {
display: flex;
flex-direction: column;
}
.service-item {
display: grid;
grid-template-columns: auto 1fr auto;
align-items: center;
gap: 30px;
padding: clamp(25px, 4vh, 40px) 0;
border-bottom: 1px solid rgba(224, 224, 220, 0.08);
cursor: pointer;
color: rgba(224, 224, 220, 0.4);
transition: color 0.5s var(--ease-out-expo);
}
.service-item:first-child {
border-top: 1px solid rgba(224, 224, 220, 0.08);
}
.service-item .number {
font-size: 0.75rem;
color: var(--color-gray);
font-weight: 400;
width: 30px;
}
.service-item .name {
font-size: clamp(1.2rem, 2.8vw, 2.4rem);
font-weight: 300;
letter-spacing: -0.02em;
line-height: 1.2;
color: inherit;
display: inline-block;
transform: translateX(0);
transition:
transform 0.6s var(--ease-out-expo),
color 0.5s var(--ease-out-expo);
}
.service-item .arrow {
font-size: 1.5rem;
opacity: 1;
transform: translateX(0);
transition:
transform 0.6s var(--ease-out-expo),
color 0.5s var(--ease-out-expo);
}
.service-item:hover {
color: var(--color-white);
}
.service-item:hover .name {
transform: translateX(14px);
}
.service-item:hover .arrow {
transform: translateX(6px);
}
.services-cta {
margin-top: clamp(40px, 6vh, 80px);
display: inline-flex;
align-items: center;
gap: 12px;
font-size: 0.9rem;
font-weight: 400;
position: relative;
}
.services-cta::after {
content: "";
position: absolute;
bottom: -4px;
left: 0;
width: 100%;
height: 1px;
background: var(--color-white);
transform: scaleX(0);
transform-origin: right;
transition: transform 0.5s var(--ease-out-expo);
}
.services-cta:hover::after {
transform: scaleX(1);
transform-origin: left;
}
.services-cta:hover {
opacity: 1;
}
.services-cta svg {
width: 16px;
height: 16px;
transition: transform 0.4s var(--ease-out-expo);
}
.services-cta:hover svg {
transform: translateX(5px);
} .section-why {
background: linear-gradient(180deg, #f5f4f1 0%, #efede8 100%);
color: var(--color-black);
padding: clamp(120px, 15vh, 190px) 0;
position: relative;
overflow: hidden;
border-top: 1px solid rgba(0, 0, 0, 0.09);
border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
.section-why .container {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
gap: clamp(46px, 7vh, 90px);
}
.why-header {
max-width: clamp(420px, 55vw, 760px);
}
.why-header .label {
margin-bottom: 20px;
}
.why-header h2 {
margin-top: 0;
color: var(--color-black);
font-size: clamp(2rem, 4.1vw, 4.2rem);
line-height: 1.08;
letter-spacing: -0.03em;
max-width: 15ch;
}
.why-layout {
display: grid;
grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
gap: clamp(34px, 5vw, 90px);
align-items: start;
}
.why-copy {
padding-right: clamp(12px, 2.4vw, 36px);
}
.why-copy p {
margin: 0;
max-width: none;
color: rgba(0, 0, 0, 0.64);
font-size: clamp(1.05rem, 1.35vw, 1.3rem);
line-height: 1.85;
}
.why-panel {
padding-left: 0;
}
.why-points {
display: flex;
flex-direction: column;
}
.why-point {
display: grid;
grid-template-columns: 44px 1fr;
gap: 16px;
align-items: start;
padding: 18px 0;
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.why-point:last-child {
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.why-point-index {
display: block;
font-size: 0.72rem;
letter-spacing: 0.12em;
color: rgba(0, 0, 0, 0.55);
padding-top: 4px;
}
.why-point-text {
margin: 0;
font-size: 0.94rem;
line-height: 1.7;
color: rgba(0, 0, 0, 0.8);
} .section-insights {
background: var(--color-gray-dark);
padding: clamp(130px, 16vh, 210px) 0;
}
.home .section-insights .container-wide,
.front-page .section-insights .container-wide {
max-width: none;
padding-inline: clamp(20px, 5vw, 80px);
}
.insights-header {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: clamp(50px, 8vh, 80px);
}
.insights-header .label {
margin-bottom: 20px;
}
.insights-header h2 {
margin-top: 0;
max-width: 14ch;
text-wrap: balance;
}
.insights-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: clamp(25px, 4vw, 50px);
} .insight-card {
display: block;
}
.insight-card-image {
aspect-ratio: 3/4;
background: linear-gradient(135deg, #1b1b1b 0%, #111111 100%);
margin-bottom: 25px;
overflow: hidden;
position: relative;
} .insight-card-image.image-reveal::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--color-black);
z-index: 2;
transform: scaleX(1);
transform-origin: right;
will-change: transform;
transition: transform 1.2s var(--ease-in-out-expo);
}
.insight-card-image.image-reveal.visible::before {
transform: scaleX(0);
}
.insight-card-image .placeholder-inner {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #1b1b1b 0%, #111111 100%);
transform: scale(1.15);
transition: transform 1.4s var(--ease-out-expo);
}
.insight-card-image.visible .placeholder-inner {
transform: scale(1);
}
.insight-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transform: scale(1);
transition: transform 0.9s var(--ease-out-expo);
}
.insight-card:hover .insight-card-image img {
transform: scale(1.06);
}
.insight-card h3 {
font-size: 1.15rem;
font-weight: 400;
margin-bottom: 12px;
line-height: 1.5;
transition: opacity 0.3s ease;
}
.insight-card:hover h3 {
opacity: 0.6;
}
.insight-card .meta {
font-size: 0.75rem;
color: var(--color-gray);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.insights-cta {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 0.85rem;
position: relative;
}
.insights-cta::after {
content: "";
position: absolute;
bottom: -4px;
left: 0;
width: 100%;
height: 1px;
background: var(--color-white);
transform: scaleX(0);
transform-origin: right;
transition: transform 0.5s var(--ease-out-expo);
}
.insights-cta:hover::after {
transform: scaleX(1);
transform-origin: left;
}
.insights-cta:hover {
color: var(--color-white);
}
.section-insights--light .insights-cta:hover {
color: var(--color-black);
} .section-insights--light {
background: var(--color-cream);
}
.section-insights--light .insights-header .label {
color: rgba(0, 0, 0, 0.58);
}
.section-insights--light .insights-header h2 {
color: var(--color-black);
}
.section-insights--light .insights-cta {
color: var(--color-black);
}
.section-insights--light .insights-cta::after {
background: var(--color-black);
}
.section-insights--light .insight-card-image {
background: linear-gradient(135deg, #e0e0de 0%, #d0d0ce 100%);
}
.section-insights--light .insight-card-image.image-reveal::before {
background: var(--color-cream);
}
.section-insights--light .insight-card-image .placeholder-inner {
background: linear-gradient(135deg, #e0e0de 0%, #d0d0ce 100%);
}
.section-insights--light .insight-card h3 {
color: var(--color-black);
}
.section-insights--light .insight-card:hover h3 {
opacity: 0.45;
}
.section-insights--light .insight-card .meta {
color: rgba(0, 0, 0, 0.58);
} footer {
background: var(--color-cream);
color: var(--color-black);
padding: clamp(80px, 12vh, 120px) clamp(20px, 5vw, 80px) 0;
position: relative;
z-index: 2;
overflow: hidden;
}
.footer-content {
position: relative;
z-index: 1;
}
.footer-cta {
font-size: clamp(3rem, 10vw, 9rem);
font-weight: 300;
letter-spacing: -0.04em;
margin-bottom: clamp(80px, 13vh, 140px);
display: inline-block;
line-height: 1;
position: relative;
padding-bottom: 0.14em;
transition: opacity 0.5s var(--ease-out-expo);
}
.footer-cta::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 5px;
background: currentColor;
transform: scaleX(1);
transform-origin: left;
transition: transform 0.7s var(--ease-out-expo);
}
.footer-cta:hover {
opacity: 0.75;
}
.footer-cta:hover::after {
transform: scaleX(0);
transform-origin: right;
}
.footer-grid {
display: grid;
grid-template-columns: 1fr 1fr 1.6fr 1.6fr;
gap: clamp(30px, 5vw, 60px);
}
.footer-col .col-title {
font-size: 0.7rem;
font-weight: 500;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 0.1em;
line-height: 1.1;
color: rgba(0, 0, 0, 0.52);
}
.footer-col p,
.footer-col a {
font-size: 0.9rem;
line-height: 2;
color: rgba(0, 0, 0, 0.68);
display: block;
transition: color 0.3s ease;
}
.footer-col a:hover {
color: var(--color-black);
opacity: 1;
}
.footer-bar {
margin-top: clamp(60px, 10vh, 100px);
margin-left: calc(-1 * clamp(20px, 5vw, 80px));
margin-right: calc(-1 * clamp(20px, 5vw, 80px));
padding: 14px clamp(20px, 5vw, 80px);
background: rgba(0, 0, 0, 0.07);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 12px;
}
.footer-bar-legal {
font-size: 0.72rem;
color: rgba(0, 0, 0, 0.58);
line-height: 1.4;
}
.footer-bar-links {
display: flex;
gap: 24px;
}
.footer-bar-links a {
font-size: 0.72rem;
color: rgba(0, 0, 0, 0.58);
transition: color 0.3s ease;
}
.footer-bar-links a:hover {
color: var(--color-black);
} .page-hero {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
overflow: visible;
z-index: 2;
padding: 150px clamp(20px, 5vw, 80px) 100px;
}
.page-hero .content {
position: relative;
z-index: 10;
max-width: 1000px;
padding-right: clamp(40px, 8vw, 140px);
}
.page-hero .label {
overflow: hidden;
padding-bottom: 0.15em;
margin-bottom: calc(20px - 0.15em);
}
.page-hero .label span {
display: inline-block;
font: inherit;
margin: 0;
animation: slideUp 1s var(--ease-out-expo) 0.3s both;
}
.page-hero h1 {
margin-bottom: 30px;
font-size: clamp(1.8rem, 4.1vw, 3.8rem);
}
.page-hero h1 .line {
display: block;
overflow: hidden;
padding-bottom: 0.15em;
margin-bottom: -0.15em;
}
.page-hero h1 .line span {
display: block;
animation: slideUp 1.2s var(--ease-out-expo) both;
}
.page-hero h1 .line:nth-child(1) span {
animation-delay: 0.4s;
}
.page-hero h1 .line:nth-child(2) span {
animation-delay: 0.5s;
}
.page-hero h1 .line:nth-child(3) span {
animation-delay: 0.6s;
}
.page-hero .description {
max-width: 500px;
font-size: clamp(1rem, 1.25vw, 1.2rem);
color: var(--color-gray);
line-height: 1.75;
animation: fadeIn 1s var(--ease-out-expo) 0.8s both;
} .hero-image {
position: absolute;
top: 78%;
right: 0;
width: 44%;
height: 100%;
overflow: hidden;
z-index: 5;
clip-path: inset(0 0 0 100%);
transition: clip-path 1.2s var(--ease-in-out-expo) 0.5s;
}
.hero-image .image-placeholder {
width: 100%;
height: 120%;
background: linear-gradient(135deg, #1b1b1b 0%, #111111 100%);
transform: scale(1.1);
transition: transform 1.5s var(--ease-smooth);
}
.hero-image.visible .image-placeholder {
transform: scale(1);
}
.hero-image.visible {
clip-path: inset(0);
} .intro-section {
background: var(--color-cream);
color: var(--color-black);
padding: clamp(130px, 16vh, 210px) 0;
}
.intro-grid {
display: flex;
flex-direction: column;
gap: clamp(30px, 4vh, 50px);
}
.intro-left {
position: relative;
}
.intro-right {
position: relative;
}
.intro-content {
position: relative;
z-index: 1;
}
.intro-content h2 {
color: var(--color-black);
margin-bottom: 0;
font-size: clamp(1.8rem, 3.8vw, 3.4rem);
}
.intro-right p {
font-size: 1.1rem;
line-height: 2;
color: rgba(0, 0, 0, 0.68);
max-width: 450px;
}
.intro-right .intro-cta {
display: inline-flex;
align-items: center;
gap: 12px;
margin-top: 30px;
font-size: 0.9rem;
font-weight: 500;
color: var(--color-black);
position: relative;
}
.intro-right .intro-cta::after {
content: "";
position: absolute;
bottom: -4px;
left: 0;
width: 100%;
height: 1px;
background: var(--color-black);
transform: scaleX(0);
transform-origin: right;
transition: transform 0.5s var(--ease-out-expo);
}
.intro-right .intro-cta:hover::after {
transform: scaleX(1);
transform-origin: left;
}
.intro-right .intro-cta:hover {
color: var(--color-black);
}
.intro-right .intro-cta svg {
width: 18px;
height: 18px;
transition: transform 0.3s var(--ease-out-expo);
}
.intro-right .intro-cta:hover svg {
transform: translateX(5px);
} .expertise-section {
background: var(--color-black);
padding: clamp(130px, 16vh, 210px) 0;
}
.expertise-header {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
margin-bottom: clamp(60px, 10vh, 100px);
}
.expertise-header h2 {
margin-top: 10px;
}
.expertise-header p {
color: var(--color-gray);
line-height: 1.9;
max-width: 400px;
margin-left: auto;
align-self: end;
}
.expertise-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: clamp(40px, 6vw, 80px) clamp(40px, 8vw, 120px);
}   .section-detail-services {
background: var(--color-black);
padding: clamp(130px, 16vh, 210px) 0;
}
.detail-services-header {
margin-bottom: clamp(60px, 10vh, 100px);
}
.detail-services-header .label {
margin-bottom: 20px;
}
.detail-services-header h2 {
max-width: 600px;
}
.detail-services-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: clamp(40px, 6vw, 80px) clamp(60px, 10vw, 140px);
}
.detail-service-card {
position: relative;
padding-left: clamp(20px, 3vw, 35px);
border-left: 1px solid rgba(224, 224, 220, 0.08);
transition: border-color 0.5s var(--ease-out-expo);
}
.detail-service-card:hover {
border-color: rgba(224, 224, 220, 0.25);
}
.detail-service-card .card-number {
font-size: 0.7rem;
color: var(--color-gray);
margin-bottom: 18px;
letter-spacing: 0.08em;
}
.detail-service-card h3 {
font-size: clamp(1.3rem, 2.2vw, 1.8rem);
font-weight: 300;
color: var(--color-white);
margin-bottom: 18px;
letter-spacing: -0.02em;
line-height: 1.25;
}
.detail-service-card p {
font-size: 0.9rem;
line-height: 1.9;
color: var(--color-gray);
} .section-journal-link {
background: var(--color-black);
padding: clamp(130px, 16vh, 210px) 0;
}
.journal-link-wrapper {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: clamp(50px, 8vw, 100px);
align-items: center;
}
.journal-link-image {
aspect-ratio: 3/4;
background: linear-gradient(135deg, #1b1b1b 0%, #111111 100%);
overflow: hidden;
position: relative;
}
.journal-link-image .placeholder-inner {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #1b1b1b 0%, #111111 100%);
transform: scale(1.1);
transition: transform 1.4s var(--ease-out-expo);
}
.journal-link-image.visible .placeholder-inner {
transform: scale(1);
}
.journal-link-content .label {
margin-bottom: 25px;
}
.journal-link-content h3 {
font-size: clamp(1.5rem, 2.8vw, 2.2rem);
font-weight: 300;
color: var(--color-white);
margin-bottom: 22px;
line-height: 1.3;
}
.journal-link-content p {
font-size: 1rem;
line-height: 1.9;
color: var(--color-gray);
margin-bottom: 35px;
}
.journal-link-cta {
display: inline-flex;
align-items: center;
gap: 12px;
font-size: 0.9rem;
font-weight: 400;
position: relative;
}
.journal-link-cta::after {
content: "";
position: absolute;
bottom: -4px;
left: 0;
width: 100%;
height: 1px;
background: var(--color-white);
transform: scaleX(0);
transform-origin: right;
transition: transform 0.5s var(--ease-out-expo);
}
.journal-link-cta:hover::after {
transform: scaleX(1);
transform-origin: left;
}
.journal-link-cta:hover {
opacity: 1;
}
.journal-link-cta svg {
width: 16px;
height: 16px;
transition: transform 0.3s var(--ease-out-expo);
}
.journal-link-cta:hover svg {
transform: translateX(5px);
} .section-faq {
background: var(--color-cream);
color: var(--color-black);
padding: clamp(130px, 16vh, 210px) 0;
}
.faq-grid {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: clamp(60px, 10vw, 140px);
align-items: start;
}
.faq-header .label {
color: var(--color-gray);
margin-bottom: 20px;
}
.faq-header h2 {
color: var(--color-black);
font-size: clamp(2rem, 4vw, 3.2rem);
}
.faq-list {
display: flex;
flex-direction: column;
}
.faq-item {
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.faq-item:first-child {
border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.faq-question {
display: flex;
justify-content: space-between;
align-items: center;
padding: clamp(22px, 3vw, 32px) 0;
cursor: pointer;
transition: opacity 0.4s var(--ease-out-expo);
border: none;
background: none;
font: inherit;
color: inherit;
width: 100%;
text-align: left;
}
.faq-question:hover {
opacity: 0.6;
}
.faq-question:focus-visible {
outline: 2px solid var(--color-black);
outline-offset: 4px;
}
.faq-question h3 {
font-size: clamp(0.88rem, 1vw, 0.98rem);
font-weight: 400;
color: var(--color-black);
padding-right: 40px;
line-height: 1.5;
}
.faq-toggle {
width: 20px;
height: 20px;
position: relative;
flex-shrink: 0;
}
.faq-toggle::before,
.faq-toggle::after {
content: "";
position: absolute;
background: var(--color-black);
transition: transform 0.5s var(--ease-out-expo);
}
.faq-toggle::before {
width: 20px;
height: 1.5px;
top: 50%;
left: 0;
transform: translateY(-50%);
}
.faq-toggle::after {
width: 1.5px;
height: 20px;
left: 50%;
top: 0;
transform: translateX(-50%);
}
.faq-item.active .faq-toggle::after {
transform: translateX(-50%) rotate(90deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition:
max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
padding 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer {
padding-bottom: 52px;
}
.faq-answer p {
font-size: 0.92rem;
line-height: 1.9;
color: rgba(0, 0, 0, 0.68);
} .section-faq .faq-item[itemscope] {
position: relative;
} .service-item.is-current {
opacity: 0.25;
pointer-events: none;
}  .page-hero--compact {
min-height: 70vh;
} .about-hello-hero {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
padding: clamp(120px, 16vh, 180px) clamp(20px, 5vw, 80px) clamp(60px, 8vh, 90px);
}
.about-hello-label {
margin-bottom: 20px;
color: var(--color-gray);
}
.about-hello-title {
font-size: clamp(4rem, 22vw, 14rem);
line-height: 1;
letter-spacing: -0.06em;
text-align: center;
font-weight: 300;
}
.about-hello-subtitle {
margin-top: clamp(20px, 4vh, 36px);
max-width: 720px;
text-align: center;
font-size: clamp(0.95rem, 1.15vw, 1.1rem);
line-height: 1.85;
color: rgba(224, 224, 220, 0.72);
} .section-featured {
background: var(--color-cream);
color: var(--color-black);
padding: clamp(130px, 16vh, 210px) 0;
}
.featured-grid {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: clamp(50px, 8vw, 100px);
align-items: center;
}
.featured-image {
aspect-ratio: 3/4;
background: linear-gradient(135deg, #e0e0de 0%, #d0d0ce 100%);
overflow: hidden;
position: relative;
}
.featured-image .placeholder-inner {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #e0e0de 0%, #d0d0ce 100%);
transform: scale(1.1);
transition: transform 1.4s var(--ease-out-expo);
}
.featured-image.visible .placeholder-inner {
transform: scale(1);
}
.featured-content .label {
color: var(--color-gray);
margin-bottom: 20px;
}
.featured-content h2 {
color: var(--color-black);
margin-bottom: 25px;
font-size: clamp(1.6rem, 3.2vw, 2.6rem);
line-height: 1.2;
}
.featured-content p {
font-size: clamp(1rem, 1.2vw, 1.18rem);
line-height: 1.85;
color: rgba(0, 0, 0, 0.68);
margin-bottom: 35px;
}
.featured-cta {
display: inline-flex;
align-items: center;
gap: 12px;
font-size: 0.9rem;
font-weight: 400;
color: var(--color-black);
position: relative;
}
.featured-cta::after {
content: "";
position: absolute;
bottom: -4px;
left: 0;
width: 100%;
height: 1px;
background: var(--color-black);
transform: scaleX(0);
transform-origin: right;
transition: transform 0.5s var(--ease-out-expo);
}
.featured-cta:hover::after {
transform: scaleX(1);
transform-origin: left;
}
.featured-cta:hover {
color: var(--color-black);
}
.featured-cta svg {
width: 16px;
height: 16px;
transition: transform 0.3s var(--ease-out-expo);
}
.featured-cta:hover svg {
transform: translateX(5px);
} .section-articles {
background: var(--color-black);
padding: clamp(130px, 16vh, 210px) 0;
}
.articles-header {
margin-bottom: clamp(60px, 8vh, 100px);
}
.articles-header .label {
margin-bottom: 20px;
}
.articles-header h2 {
font-size: clamp(2rem, 4vw, 3rem);
}
.articles-list {
display: flex;
flex-direction: column;
}
.article-item {
display: grid;
grid-template-columns: auto auto 1fr auto;
gap: clamp(20px, 3vw, 40px);
padding: clamp(30px, 4vw, 45px) 0;
border-bottom: 1px solid rgba(224, 224, 220, 0.08);
align-items: center;
transition: color 0.5s var(--ease-out-expo);
}
.article-item:first-child {
border-top: 1px solid rgba(224, 224, 220, 0.08);
}
.article-number {
font-size: 0.7rem;
color: var(--color-gray);
letter-spacing: 0.08em;
min-width: 30px;
}
.article-thumb {
width: clamp(70px, 8vw, 100px);
aspect-ratio: 3/4;
overflow: hidden;
position: relative;
flex-shrink: 0;
}
.article-thumb .placeholder-inner {
width: 100%;
height: 100%;
}
.article-content h3 {
color: var(--color-white);
margin-bottom: 12px;
font-size: clamp(1.15rem, 1.8vw, 1.5rem);
font-weight: 300;
line-height: 1.35;
transition: color 0.4s var(--ease-out-expo);
}
.article-item:hover .article-content h3 {
color: var(--color-cream);
}
.article-content .excerpt {
font-size: 0.9rem;
line-height: 1.8;
color: var(--color-gray);
max-width: 600px;
}
.article-meta {
font-size: 0.72rem;
color: var(--color-gray);
text-align: right;
min-width: 100px;
line-height: 1.8;
} .section-archives {
background: var(--color-cream);
color: var(--color-black);
padding: clamp(130px, 16vh, 210px) 0;
}
.archives-header {
margin-bottom: clamp(50px, 7vh, 80px);
}
.archives-header h2 {
color: var(--color-black);
font-size: clamp(2rem, 4vw, 3.2rem);
}
.archives-list {
display: flex;
flex-direction: column;
}
.archive-year {
font-size: 0.8rem;
font-weight: 500;
color: var(--color-gray);
padding: 25px 0 15px;
border-top: 1px solid rgba(0, 0, 0, 0.08);
letter-spacing: 0.05em;
}
.archive-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.archive-item .title {
font-size: 1rem;
font-weight: 300;
color: var(--color-black);
}
.archive-item .category {
font-size: 0.72rem;
color: var(--color-gray);
flex-shrink: 0;
margin-left: 30px;
} .section-about-intro {
background: var(--color-cream);
color: var(--color-black);
padding: clamp(130px, 16vh, 210px) 0;
}
.about-intro-header {
margin-bottom: clamp(50px, 8vh, 80px);
}
.about-intro-header .label {
color: var(--color-gray);
margin-bottom: 20px;
}
.about-intro-header h2 {
color: var(--color-black);
font-size: clamp(1.9rem, 3.8vw, 3.2rem);
}
.about-intro-body {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(40px, 6vw, 80px);
}
.about-intro-col p {
font-size: clamp(1rem, 1.2vw, 1.18rem);
line-height: 1.85;
color: rgba(0, 0, 0, 0.68);
}
.about-intro-col p + p {
margin-top: 24px;
}
.about-intro-lead {
font-size: clamp(1.2rem, 1.8vw, 1.55rem) !important;
line-height: 1.55 !important;
letter-spacing: -0.02em;
color: rgba(0, 0, 0, 0.84) !important;
} .section-about-values .detail-services-header h2 {
max-width: 560px;
}
.section-about-values .detail-services-grid {
grid-template-columns: repeat(3, 1fr);
gap: clamp(28px, 4vw, 50px);
}
.section-about-values .detail-service-card {
padding-left: 0;
padding-top: clamp(24px, 3vh, 34px);
border-left: none;
border-top: 1px solid rgba(224, 224, 220, 0.14);
}
.section-about-values .detail-service-card:hover {
border-color: rgba(224, 224, 220, 0.3);
} .section-about-numbers .numbers-grid {
grid-template-columns: repeat(3, 1fr);
} .section-numbers {
background: var(--color-cream);
color: var(--color-black);
padding: clamp(130px, 16vh, 210px) 0;
}
.numbers-header {
margin-bottom: clamp(60px, 10vh, 100px);
}
.numbers-header .label {
color: var(--color-gray);
margin-bottom: 20px;
}
.numbers-header h2 {
color: var(--color-black);
font-size: clamp(2rem, 4vw, 3.2rem);
}
.numbers-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: clamp(30px, 5vw, 60px);
}
.number-card {
position: relative;
padding-top: clamp(25px, 4vh, 35px);
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.number-value {
display: block;
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 300;
letter-spacing: -0.03em;
line-height: 1;
color: var(--color-black);
margin-bottom: 12px;
}
.number-label {
display: block;
font-size: 0.8rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--color-gray);
margin-bottom: 16px;
}
.number-card p {
font-size: 0.9rem;
line-height: 1.8;
color: rgba(0, 0, 0, 0.68);
}  .journal-hero-image {
position: relative;
width: calc(100% - clamp(20px, 5vw, 80px) * 2);
max-width: 1400px;
margin: 0 auto;
aspect-ratio: 16 / 9;
overflow: hidden;
border-radius: 4px;
opacity: 0;
transform: translateY(40px);
transition: opacity 1s var(--ease-out-expo) 0.2s, transform 1s var(--ease-out-expo) 0.2s;
}
.journal-hero-image.visible {
opacity: 1;
transform: translateY(0);
}
.journal-hero-image img {
width: 100%;
height: 130%;
object-fit: cover;
object-position: center;
will-change: transform;
display: block;
}
.journal-hero-image .image-placeholder {
width: 100%;
height: 130%;
background: linear-gradient(135deg, #1b1b1b 0%, #111111 100%);
} .section-article {
background: var(--color-cream);
color: var(--color-black);
padding: clamp(80px, 10vh, 130px) 0 clamp(130px, 16vh, 210px);
}
.article-body {
max-width: 720px;
margin: 0;
padding: 0;
} .article-heading {
font-size: clamp(1.5rem, 2.4vw, 1.85rem);
font-weight: 500;
color: var(--color-black);
line-height: 1.35;
letter-spacing: -0.02em;
margin-bottom: clamp(30px, 4vh, 50px);
} .article-subtitle {
font-size: clamp(1.1rem, 1.4vw, 1.25rem);
line-height: 1.9;
color: var(--color-gray);
margin-bottom: clamp(50px, 7vh, 80px);
} .article-section {
margin-top: clamp(50px, 7vh, 70px);
}
.article-section h3 {
font-size: clamp(1.3rem, 2vw, 1.5rem);
font-weight: 400;
color: var(--color-black);
margin-bottom: clamp(18px, 2.5vh, 28px);
letter-spacing: -0.02em;
line-height: 1.3;
}
.article-body p {
font-size: 1.05rem;
line-height: 1.9;
color: var(--color-black);
}
.article-section p + p {
margin-top: clamp(18px, 2.5vh, 28px);
} .scroll-progress {
position: fixed;
top: 0;
left: 0;
width: 0%;
height: 2px;
background: linear-gradient(
90deg,
var(--color-white) 0%,
rgba(224, 224, 220, 0.5) 100%
);
z-index: 9999;
transition: width 0.1s linear;
}  .agentai-modal {
position: fixed;
inset: 0;
z-index: 10000;
display: flex;
align-items: center;
justify-content: center;
padding: clamp(24px, 3vh, 48px) clamp(16px, 2vw, 32px);
background: #0a0a0a;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.agentai-modal.is-open {
opacity: 1;
visibility: visible;
pointer-events: auto;
} .agentai-toolbar {
position: fixed;
top: clamp(16px, 2.5vh, 28px);
right: clamp(16px, 2.5vw, 28px);
z-index: 10001;
display: flex;
gap: 8px;
}
.agentai-toolbar-btn {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: none;
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 50%;
color: rgba(255, 255, 255, 0.5);
cursor: pointer;
transition: color 0.2s, border-color 0.2s;
}
.agentai-toolbar-btn:hover {
color: #fff;
border-color: rgba(255, 255, 255, 0.35);
}
.agentai-toolbar-btn svg {
width: 16px;
height: 16px;
} #agentai_wrapper {
position: relative;
width: 100%;
max-width: 920px;
height: 100vh;
height: 100svh;
padding: 0;
display: flex;
flex-direction: column;
background: transparent;
border: none;
border-radius: 0;
overflow: hidden;
} .agent-hidden { display: none !important; }
.agent-visible { display: flex; flex-direction: column; width: 100%; height: 100%; } #agentai_bot { align-items: stretch; overflow: hidden; min-height: 0; } .chat-empty {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: clamp(16px, 2vh, 32px) clamp(24px, 4vw, 60px) clamp(40px, 6vh, 80px);
gap: clamp(16px, 2vh, 28px);
}
.chat-empty h2 {
font-size: clamp(1.6rem, 2.6vw, 2.4rem);
font-weight: 400;
line-height: 1.15;
letter-spacing: -0.025em;
color: #fff;
margin: 0;
}
.chat-empty p {
font-size: clamp(0.92rem, 1vw, 1.02rem);
line-height: 1.7;
color: rgba(255, 255, 255, 0.75);
max-width: 42ch;
margin: 0;
}
.chat-prompts {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-top: clamp(8px, 1.5vh, 16px);
}
.chat-prompt-pill {
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 100px;
color: rgba(255, 255, 255, 0.7);
font-family: "Inter", sans-serif;
font-size: 0.85rem;
font-weight: 300;
padding: 0.55em 1.2em;
cursor: pointer;
transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.chat-prompt-pill:hover {
background: rgba(255, 255, 255, 0.1);
color: #fff;
border-color: rgba(255, 255, 255, 0.2);
} .chat-messages-wrap {
flex: 1;
overflow-y: auto;
position: relative;
min-height: 0;
scroll-behavior: smooth;
}
.chat-messages-wrap::-webkit-scrollbar { width: 0; background: transparent; }
.chat-messages-wrap { scrollbar-width: none; }
.chat-messages {
padding: clamp(60px, 8vh, 80px) clamp(24px, 4vw, 60px) clamp(16px, 2vh, 28px);
display: flex;
flex-direction: column;
gap: clamp(16px, 2vh, 24px);
justify-content: flex-end;
min-height: 100%;
} .chat-scroll-arrow {
position: sticky;
bottom: 8px;
margin: -36px auto 0;
width: 32px;
height: 32px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.12);
border: 1px solid rgba(255, 255, 255, 0.15);
color: rgba(255, 255, 255, 0.6);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s;
z-index: 2;
}
.chat-scroll-arrow:hover { background: rgba(255, 255, 255, 0.22); }
.chat-scroll-arrow svg { width: 14px; height: 14px; } .chat-turn-user {
display: flex;
justify-content: flex-end;
}
.chat-turn-bubble {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px 16px 4px 16px;
padding: 0.7em 1.1em;
max-width: 75%;
color: #fff;
font-size: 0.94rem;
line-height: 1.6;
word-break: break-word;
} .chat-turn-bot {
display: flex;
flex-direction: column;
gap: 0;
max-width: 90%;
}
.chat-turn-text {
color: rgba(255, 255, 255, 0.85);
font-size: clamp(0.94rem, 1.02vw, 1.04rem);
font-weight: 300;
line-height: 1.78;
word-break: break-word;
overflow-wrap: break-word;
}
.chat-turn-text p { margin: 0 0 0.75em; }
.chat-turn-text p:last-child { margin-bottom: 0; }
.chat-turn-text p:empty { display: none; }
.chat-turn-text br + br { display: none; }
.chat-turn-text ul + p,
.chat-turn-text p + ul { margin-top: 0.1em; }
.chat-turn-text h3, .chat-turn-text h4 {
color: #fff;
font-weight: 400;
margin: 1em 0 0.4em;
font-size: 1.05em;
letter-spacing: -0.01em;
}
.chat-turn-text ul {
margin: 0.15em 0;
padding-left: 1.2em;
list-style: none;
}
.chat-turn-text li {
margin-bottom: 0;
padding: 0.1em 0;
}
.chat-turn-text li::before {
content: "–";
margin-right: 0.5em;
color: rgba(255, 255, 255, 0.3);
}
.chat-turn-text a {
color: rgba(255, 255, 255, 0.9);
text-decoration: underline;
text-underline-offset: 3px;
text-decoration-color: rgba(255, 255, 255, 0.25);
transition: text-decoration-color 0.2s;
}
.chat-turn-text a:hover {
text-decoration-color: rgba(255, 255, 255, 0.6);
}
.chat-turn-text strong { font-weight: 500; color: #fff; }
.chat-turn-text code {
background: rgba(255, 255, 255, 0.08);
padding: 0.15em 0.4em;
border-radius: 4px;
font-size: 0.9em;
} .chat-turn-bot.is-pending {
display: none;
}
.chat-turn-bot.is-revealed {
animation: chatReveal 0.35s ease both;
}
@keyframes chatReveal {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
} .chat-turn-extras {
display: flex;
flex-direction: column;
gap: 24px;
margin-top: 12px;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.06);
} .chat-suggestions + .chat-cards {
margin-top: 8px;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.06);
} .chat-cards {
display: flex;
flex-direction: column;
gap: 8px;
}
.chat-card {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 16px;
border-radius: 10px;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);
text-decoration: none;
transition: background 0.2s, border-color 0.2s;
}
.chat-card:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.15);
}
.chat-card-label {
font-size: 0.72rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.08em;
padding: 0.2em 0.6em;
border-radius: 4px;
flex-shrink: 0;
}
.chat-card--insight .chat-card-label,
.chat-card--servizio .chat-card-label,
.chat-card--progetto .chat-card-label {
color: var(--color-cream);
background: rgba(224, 223, 220, 0.1);
}
.chat-card-title {
flex: 1;
color: rgba(255, 255, 255, 0.85);
font-size: 0.9rem;
font-weight: 300;
line-height: 1.4;
}
.chat-card-arrow {
width: 16px;
height: 16px;
color: rgba(255, 255, 255, 0.3);
flex-shrink: 0;
} .chat-links-box {
padding: 12px 0 0;
}
.chat-links-title {
display: block;
font-size: 0.76rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.06em;
color: rgba(255, 255, 255, 0.35);
margin-bottom: 8px;
}
.chat-links-list {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.chat-link-chip {
font-size: 0.82rem;
color: rgba(255, 255, 255, 0.7);
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 100px;
padding: 0.35em 0.9em;
text-decoration: none;
transition: background 0.2s, color 0.2s;
}
.chat-link-chip:hover {
background: rgba(255, 255, 255, 0.12);
color: #fff;
} .chat-suggestions {
display: flex;
flex-direction: column;
gap: 8px;
}
.chat-suggestion-btn {
font-family: "Inter", sans-serif;
font-size: 0.88rem;
font-weight: 300;
color: rgba(255, 255, 255, 0.85);
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.14);
border-radius: 10px;
padding: 0.65em 1.2em;
cursor: pointer;
text-align: left;
transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.chat-suggestion-btn:hover {
background: rgba(255, 255, 255, 0.12);
color: #fff;
border-color: rgba(255, 255, 255, 0.25);
} .chat-escalation {
padding-top: 8px;
}
.chat-escalation-btn {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: "Inter", sans-serif;
font-size: 0.86rem;
font-weight: 400;
color: #fff;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 8px;
padding: 0.6em 1.2em;
cursor: pointer;
transition: background 0.2s, border-color 0.2s;
}
.chat-escalation-btn:hover {
background: rgba(255, 255, 255, 0.14);
border-color: rgba(255, 255, 255, 0.25);
}
.chat-escalation-btn svg {
width: 16px;
height: 16px;
} .chat-typing {
display: flex;
align-items: center;
gap: 10px;
}
.chat-typing-dots {
display: flex;
gap: 4px;
}
.chat-typing-dots span {
width: 6px;
height: 6px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.35);
animation: typingDot 1.2s ease infinite;
}
.chat-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
0%, 60%, 100% { opacity: 0.35; transform: scale(1); }
30% { opacity: 1; transform: scale(1.2); }
}
.chat-typing-status {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.35);
} .chat-error {
background: rgba(255, 59, 95, 0.08);
border: 1px solid rgba(255, 59, 95, 0.15);
border-radius: 10px;
padding: 12px 16px;
display: flex;
align-items: center;
gap: 12px;
}
.chat-error p {
margin: 0;
font-size: 0.88rem;
color: rgba(255, 255, 255, 0.7);
flex: 1;
}
.chat-retry-btn {
font-family: "Inter", sans-serif;
font-size: 0.82rem;
color: #fff;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 6px;
padding: 0.4em 0.9em;
cursor: pointer;
flex-shrink: 0;
transition: background 0.2s;
}
.chat-retry-btn:hover { background: rgba(255, 255, 255, 0.14); } .chat-inputbar {
flex-shrink: 0;
display: flex;
padding: clamp(10px, 1.2vh, 16px) clamp(24px, 4vw, 60px);
border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.chat-inputbar-inner {
flex: 1;
display: flex;
align-items: flex-end;
gap: 10px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 10px 14px;
transition: border-color 0.2s;
}
.chat-inputbar-inner:focus-within {
border-color: rgba(255, 255, 255, 0.22);
}
.chat-input {
flex: 1;
background: none;
border: none;
outline: none;
color: #fff;
font-family: "Inter", sans-serif;
font-size: 0.94rem;
font-weight: 300;
line-height: 1.5;
resize: none;
max-height: 120px;
padding: 4px 0;
}
.chat-input::placeholder {
color: rgba(255, 255, 255, 0.3);
}
.chat-btn-send {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.08);
border: none;
border-radius: 8px;
color: rgba(255, 255, 255, 0.5);
cursor: pointer;
flex-shrink: 0;
transition: background 0.2s, color 0.2s;
}
.chat-btn-send:hover:not(:disabled) {
background: rgba(255, 255, 255, 0.15);
color: #fff;
}
.chat-btn-send:disabled {
opacity: 0.3;
cursor: default;
}
.chat-btn-send svg { width: 16px; height: 16px; } #agentai_form {
align-items: center;
justify-content: center;
padding: clamp(16px, 2vh, 32px) clamp(24px, 4vw, 60px);
overflow-y: auto;
max-width: 920px;
margin: 0 auto;
width: 100%;
}
.agentai-back {
display: flex;
align-items: center;
gap: 8px;
background: none;
border: none;
color: rgba(255, 255, 255, 0.5);
font-family: "Inter", sans-serif;
font-size: 0.88rem;
cursor: pointer;
padding: 8px 0;
margin-bottom: clamp(16px, 2vh, 28px);
align-self: flex-start;
transition: color 0.2s;
}
.agentai-back:hover { color: #fff; }
.agentai-back svg { width: 18px; height: 18px; } #agentai_form .gform_wrapper {
width: 100%;
max-width: 620px;
}
#agentai_form .gform_wrapper .gform_body {
display: flex;
flex-direction: column;
gap: 6px;
}
#agentai_form .gform_wrapper .gfield {
margin: 0;
padding: 0;
}
#agentai_form .gform_wrapper .gfield_label,
#agentai_form .gform_wrapper label {
display: none;
}
#agentai_form .gform_wrapper .ginput_complex {
display: flex;
gap: 10px;
}
#agentai_form .gform_wrapper .ginput_complex > span {
flex: 1;
}
#agentai_form .gform_wrapper input[type="text"],
#agentai_form .gform_wrapper input[type="email"],
#agentai_form .gform_wrapper input[type="tel"],
#agentai_form .gform_wrapper select,
#agentai_form .gform_wrapper textarea {
width: 100%;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 10px;
color: #fff;
font-family: "Inter", sans-serif;
font-size: 0.9rem;
font-weight: 300;
padding: 0.75em 1em;
transition: border-color 0.2s;
}
#agentai_form .gform_wrapper select {
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 12px center;
padding-right: 32px;
}
#agentai_form .gform_wrapper select option {
background: #1b1b1b;
color: #fff;
}
#agentai_form .gform_wrapper textarea {
min-height: 100px;
resize: vertical;
}
#agentai_form .gform_wrapper input::placeholder,
#agentai_form .gform_wrapper textarea::placeholder {
color: rgba(255, 255, 255, 0.35);
}
#agentai_form .gform_wrapper input:focus,
#agentai_form .gform_wrapper select:focus,
#agentai_form .gform_wrapper textarea:focus {
border-color: rgba(255, 255, 255, 0.28);
outline: none;
} #agentai_form .gform_wrapper .gfield--type-consent,
#agentai_form .gform_wrapper .gfield--type-checkbox {
margin-top: 8px;
}
#agentai_form .gform_wrapper .gfield--type-consent label,
#agentai_form .gform_wrapper .gfield--type-checkbox label {
display: inline;
color: rgba(255, 255, 255, 0.5);
font-size: 0.8rem;
line-height: 1.5;
}
#agentai_form .gform_wrapper .ginput_container_consent {
display: flex;
align-items: flex-start;
gap: 10px;
}
#agentai_form .gform_wrapper input[type="checkbox"] {
accent-color: #fff;
margin-top: 3px;
flex-shrink: 0;
} #agentai_form .gform_wrapper .gfield--type-hidden,
#agentai_form .gform_wrapper .gfield_visibility_hidden {
display: none;
} #agentai_form .gform_wrapper .gform_footer,
#agentai_form .gform_wrapper .gform-footer {
margin-top: 12px;
padding: 0;
}
#agentai_form .gform_wrapper .gform_button,
#agentai_form .gform_wrapper input[type="submit"] {
background: #fff;
color: var(--color-black);
border: none;
border-radius: 10px;
padding: 0.75em 2.4em;
font-family: "Inter", sans-serif;
font-size: 0.9rem;
font-weight: 400;
cursor: pointer;
transition: opacity 0.2s;
}
#agentai_form .gform_wrapper .gform_button:hover { opacity: 0.85; } #agentai_form .gform_wrapper .gfield_error input,
#agentai_form .gform_wrapper .gfield_error textarea,
#agentai_form .gform_wrapper .gfield_error select {
border-color: rgba(255, 59, 95, 0.4);
}
#agentai_form .gform_wrapper .validation_message {
color: rgba(255, 59, 95, 0.8);
font-size: 0.78rem;
margin-top: 4px;
} @media (max-width: 768px) {
#agentai_wrapper {
max-width: 100%;
height: 100vh;
height: 100svh;
border-radius: 0;
border: none;
}
.agentai-toolbar { top: 12px; right: 12px; }
.chat-empty { padding: 32px 20px; }
.chat-prompts { gap: 8px; }
.chat-prompt-pill { font-size: 0.8rem; padding: 0.5em 1em; }
.chat-messages { padding: 20px 16px; }
.chat-inputbar { padding: 12px 12px; }
.chat-turn-bubble { max-width: 88%; }
.chat-turn-bot { max-width: 95%; }
.chat-card { padding: 10px 12px; }
} .fade-up {
opacity: 0;
transform: translateY(24px);
will-change: transform, opacity;
transition:
opacity 1s var(--ease-out-expo),
transform 1s var(--ease-out-expo);
}
.fade-up.visible {
opacity: 1;
transform: translateY(0);
} .page-journal .fade-up.visible,
.page-about .fade-up.visible,
.page-expertise .fade-up.visible,
.page-progetti .fade-up.visible,
.page-project-single .fade-up.visible,
.page-journal-single .fade-up.visible {
transform: translateY(0);
}
.fade-up-delay-1 {
transition-delay: 0.12s;
}
.fade-up-delay-2 {
transition-delay: 0.24s;
}
.fade-up-delay-3 {
transition-delay: 0.36s;
}
.fade-in-left {
opacity: 0;
transform: translateX(-24px);
will-change: transform, opacity;
transition:
opacity 1s var(--ease-out-expo),
transform 1s var(--ease-out-expo);
}
.fade-in-left.visible {
opacity: 1;
transform: translateX(0);
}
.fade-in-right {
opacity: 0;
transform: translateX(24px);
will-change: transform, opacity;
transition:
opacity 1s var(--ease-out-expo),
transform 1s var(--ease-out-expo);
}
.fade-in-right.visible {
opacity: 1;
transform: translateX(0);
}
.scale-up {
opacity: 0;
transform: scale(0.96);
will-change: transform, opacity;
transition:
opacity 1.2s var(--ease-out-expo),
transform 1.2s var(--ease-out-expo);
}
.scale-up.visible {
opacity: 1;
transform: scale(1);
} .image-reveal {
position: relative;
overflow: hidden;
}
.image-reveal::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--color-black);
z-index: 2;
transform: scaleX(1);
transform-origin: right;
will-change: transform;
transition: transform 1.2s var(--ease-in-out-expo);
}
.image-reveal.visible::before {
transform: scaleX(0);
} .split-lines .line {
overflow: hidden;
display: block;
padding-bottom: 0.15em;
margin-bottom: -0.15em;
}
.split-lines .line-inner {
display: block;
transform: translateY(105%);
will-change: transform;
transition: transform 0.9s var(--ease-out-expo);
}
.split-lines.visible .line-inner {
transform: translateY(0);
}
.split-lines .line:nth-child(1) .line-inner {
transition-delay: 0.08s;
}
.split-lines .line:nth-child(2) .line-inner {
transition-delay: 0.16s;
}
.split-lines .line:nth-child(3) .line-inner {
transition-delay: 0.24s;
}
.split-lines .line:nth-child(4) .line-inner {
transition-delay: 0.32s;
} .stagger-children > * {
opacity: 0;
transform: translateY(24px);
will-change: transform, opacity;
transition:
opacity 0.8s var(--ease-out-expo),
transform 0.8s var(--ease-out-expo);
}
.stagger-children.visible > *:nth-child(1) {
transition-delay: 0.06s;
opacity: 1;
transform: translateY(0);
}
.stagger-children.visible > *:nth-child(2) {
transition-delay: 0.12s;
opacity: 1;
transform: translateY(0);
}
.stagger-children.visible > *:nth-child(3) {
transition-delay: 0.18s;
opacity: 1;
transform: translateY(0);
}
.stagger-children.visible > *:nth-child(4) {
transition-delay: 0.24s;
opacity: 1;
transform: translateY(0);
}
.stagger-children.visible > *:nth-child(5) {
transition-delay: 0.3s;
opacity: 1;
transform: translateY(0);
}
.stagger-children.visible > *:nth-child(6) {
transition-delay: 0.36s;
opacity: 1;
transform: translateY(0);
}
.stagger-children.visible > *:nth-child(7) {
transition-delay: 0.42s;
opacity: 1;
transform: translateY(0);
}
.stagger-children.visible > *:nth-child(8) {
transition-delay: 0.48s;
opacity: 1;
transform: translateY(0);
}
.stagger-children.visible > *:nth-child(9) {
transition-delay: 0.54s;
opacity: 1;
transform: translateY(0);
}
.stagger-children.visible > *:nth-child(10) {
transition-delay: 0.6s;
opacity: 1;
transform: translateY(0);
}
.stagger-children.visible > *:nth-child(n+11) {
transition-delay: 0.66s;
opacity: 1;
transform: translateY(0);
} [data-parallax] {
will-change: transform;
} @media (max-width: 1024px) { .about-body {
grid-template-columns: 1fr;
}
.about-body p {
grid-column: 1;
max-width: 100%;
}
.section-approach {
padding: clamp(64px, 10vh, 100px) 5%;
min-height: auto;
}
.section-approach .content {
max-width: 100%;
} .section-approach .image-placeholder {
top: 0;
height: 100%;
}
.section-why .container {
gap: clamp(34px, 6vh, 58px);
}
.why-layout {
grid-template-columns: 1fr;
gap: 30px;
}
.why-copy p {
max-width: 100%;
}
.why-copy {
padding-right: 0;
border-right: 0;
}
.why-panel {
max-width: 100%;
padding-left: 0;
}
.services-header {
grid-template-columns: 1fr;
}
.services-header p {
margin-left: 0;
}
.insights-grid {
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.footer-grid {
grid-template-columns: repeat(2, 1fr);
}
.nav-menu-inner {
grid-template-columns: 1fr;
gap: 60px;
}
.nav-info {
padding-bottom: 0;
}
.nav-menu {
align-items: flex-start;
padding-top: 100px;
padding-bottom: 40px;
overflow-y: auto;
}
.intro-right {
max-width: 500px;
}
.expertise-header {
grid-template-columns: 1fr;
}
.expertise-header p {
margin-left: 0;
}
.expertise-grid {
grid-template-columns: 1fr;
gap: 60px;
} .hero-image {
width: 100%;
top: auto;
bottom: 0;
height: 35%;
} .detail-services-grid {
grid-template-columns: 1fr;
gap: 50px;
}
.section-about-values .detail-services-grid {
grid-template-columns: repeat(2, 1fr);
gap: 40px;
}
.journal-link-wrapper {
grid-template-columns: 1fr;
gap: 50px;
}
.faq-grid {
grid-template-columns: 1fr;
gap: 50px;
} .about-intro-body {
grid-template-columns: 1fr;
gap: 30px;
}
.numbers-grid {
grid-template-columns: repeat(2, 1fr);
}
.about-hello-subtitle {
max-width: 620px;
} .featured-grid {
grid-template-columns: 1fr;
gap: 50px;
}
.featured-image {
max-width: min(100%, 400px);
}
.article-item {
grid-template-columns: auto auto 1fr;
gap: 20px;
}
.article-meta {
display: none;
}
.article-thumb {
width: 70px;
} .article-body {
max-width: 68%;
}
}
@media (max-width: 768px) {
header {
padding: 18px 28px;
}
.header-cta {
display: none;
}
.hero {
padding-bottom: clamp(60px, 8vh, 90px);
}
.nav-links a {
font-size: clamp(1.8rem, 5vw, 2.8rem);
} [data-parallax],
[data-parallax-img] {
transform: none !important;
will-change: auto;
}
.hero-scroll {
display: none;
}
.service-item {
grid-template-columns: auto 1fr;
}
.service-item .arrow {
display: none;
}
.footer-grid {
grid-template-columns: 1fr;
gap: clamp(44px, 7vh, 60px); } .footer-col[aria-label="Insights (continua)"] {
margin-top: calc(-1 * clamp(44px, 7vh, 60px) + 6px);
}
.footer-col[aria-label="Insights (continua)"] .col-title {
display: none;
}
.footer-bar {
flex-direction: column;
align-items: flex-start;
gap: 8px;
}
.insights-header {
flex-direction: column;
align-items: flex-start;
gap: 20px;
}
.hero-content {
padding-right: 0;
}
.insights-grid {
grid-template-columns: 1fr;
}
.nav-menu {
flex-direction: column;
justify-content: flex-start;
align-items: stretch;
padding-top: 72px;
padding-bottom: 36px;
overflow-y: auto;
}
.nav-menu-inner {
display: flex;
flex-direction: column;
flex: 1;
min-height: 0;
height: 100%;
gap: 0;
} .nav-links {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
gap: 24px;
padding-block: 24px;
}
.nav-links a {
font-size: clamp(2.4rem, 9.5vw, 4rem);
letter-spacing: -0.03em;
line-height: 1;
} .nav-info {
display: flex;
flex-direction: column;
gap: 20px;
padding-top: 24px;
padding-bottom: 0;
border-top: 1px solid rgba(224, 224, 220, 0.1);
}
.nav-info-block .col-title {
font-size: 0.62rem;
margin-bottom: 8px;
}
.nav-info-block p,
.nav-info-block a {
font-size: 0.8rem;
line-height: 1.6;
} .page-hero {
padding-top: 120px;
}  .numbers-grid {
grid-template-columns: 1fr;
gap: 40px;
}
.section-about-values .detail-services-grid {
grid-template-columns: 1fr;
gap: 34px;
}
.why-header h2 {
font-size: clamp(1.9rem, 8.5vw, 3rem);
}
.why-point {
grid-template-columns: 36px 1fr;
gap: 12px;
padding: 16px 0;
}
.about-hello-title {
font-size: clamp(2.8rem, 15vw, 5.5rem);
}
.about-hello-subtitle {
max-width: 100%;
font-size: 0.95rem;
line-height: 1.75;
} .page-hero--compact {
min-height: 60vh;
}
.article-item {
grid-template-columns: auto 1fr;
gap: 15px;
}
.article-number {
display: none;
}
.article-thumb {
width: 60px;
} .journal-hero-image {
width: calc(100% - 40px);
aspect-ratio: 4 / 3;
}
.article-body {
max-width: 100%;
}
}
@media (max-width: 480px) {
h1 {
font-size: clamp(1.8rem, 8.5vw, 2.2rem);
}
h2 {
font-size: clamp(1.55rem, 7.5vw, 1.9rem);
}
h3 {
font-size: clamp(1.1rem, 5vw, 1.4rem);
}
.footer-cta {
font-size: clamp(1.6rem, 7vw, 2.2rem);
}
.footer-cta::after {
height: 2px;
}
.service-item {
gap: 16px;
padding: 20px 0;
}
.service-item .name {
font-size: 1.1rem;
} p {
line-height: 1.75;
}
} @media (hover: none) {
.insight-card:hover .insight-card-image img,
.page-progetti .project-card:hover .card-image img {
transform: scale(1);
}
.page-progetti .project-card:hover {
transform: translateY(0);
}
.nav-links a:hover {
padding-left: 0;
opacity: 1;
}
.insights-cta:hover::after,
.page-progetti .project-card:hover .card-cta::after {
transform: scaleX(0);
}
} @media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
.hero h2.hero-heading .line span,
.hero-label span,
.hero-description,
.page-hero .label span,
.page-hero h1 .line span,
.page-hero .description {
animation: none;
opacity: 1;
transform: none;
}
.fade-up,
.fade-in-left,
.fade-in-right,
.scale-up {
opacity: 1;
transform: none;
}
.split-lines .line-inner {
transform: none;
}
.stagger-children > * {
opacity: 1;
transform: none;
}
.image-reveal::before {
transform: scaleX(0);
}
.hero-image {
clip-path: inset(0);
}
.journal-hero-image {
opacity: 1;
transform: none;
}
[data-parallax] {
transform: none !important;
}
} .hero-video-bg {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
object-fit: cover;
z-index: 0;
pointer-events: none;
}
.hero-video-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0.45) 0%,
rgba(0, 0, 0, 0.25) 50%,
rgba(0, 0, 0, 0.55) 100%
);
z-index: 1;
pointer-events: none;
} .hero--has-video .hero-content {
position: relative;
z-index: 2;
} .hero--has-video .hero-scroll {
z-index: 2;
} @media (prefers-reduced-motion: reduce) {
.hero-video-bg {
display: none;
}
}    .page-404 {
--ct-grid-pad: clamp(20px, 5vw, 80px);
} .page-404 .page-hero {
min-height: 70vh;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
padding: clamp(160px, 22vh, 260px) clamp(20px, 5vw, 80px) clamp(80px, 10vh, 140px);
}
.page-404 .page-hero .content {
max-width: 760px;
padding-right: 0;
}
.page-404 .page-hero .error-code {
font-family: var(--font-body, sans-serif);
font-size: 0.78rem;
text-transform: uppercase;
letter-spacing: 0.12em;
color: rgba(224, 224, 220, 0.4);
margin-bottom: clamp(24px, 3vh, 40px);
display: block;
}
.page-404 .page-hero h1 {
font-size: clamp(2.4rem, 5vw, 4.4rem);
line-height: 1.06;
letter-spacing: -0.03em;
margin-bottom: clamp(20px, 3vh, 32px);
}
.page-404 .page-hero .description {
max-width: 480px;
font-size: clamp(0.98rem, 1vw, 1.08rem);
line-height: 1.88;
color: rgba(224, 224, 220, 0.6);
margin-bottom: clamp(36px, 5vh, 56px);
}
.page-404 .back-link {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 0.92rem;
color: rgba(224, 224, 220, 0.85);
text-decoration: none;
border-bottom: 1px solid rgba(224, 224, 220, 0.2);
padding-bottom: 4px;
transition: color 0.3s ease, border-color 0.3s ease;
}
.page-404 .back-link:hover {
color: rgba(224, 224, 220, 1);
border-color: rgba(224, 224, 220, 0.6);
}
.page-404 .back-link svg {
transition: transform 0.3s var(--ease-out-expo);
}
.page-404 .back-link:hover svg {
transform: translateX(-3px);
} .page-404 .section-insights {
background: var(--color-gray-dark);
padding: clamp(80px, 10vh, 140px) 0;
} @media (max-width: 1024px) {
.page-404 .page-hero {
min-height: 64vh;
padding-top: clamp(130px, 16vh, 180px);
}
.page-404 .page-hero h1 {
font-size: clamp(2rem, 4.5vw, 3.6rem);
}
}
@media (max-width: 768px) {
.page-404 .page-hero {
min-height: 56vh;
padding-top: 122px;
padding-bottom: 64px;
}
.page-404 .page-hero h1 {
font-size: clamp(1.85rem, 8.5vw, 2.8rem);
}
.page-404 .page-hero .description {
max-width: 100%;
}
} .page-journal {
--journal-space-section: clamp(112px, 14vh, 188px);
--journal-space-tight: clamp(74px, 10vh, 124px);
--journal-dark-soft: rgba(224, 224, 220, 0.66);
--journal-light-soft: rgba(15, 15, 15, 0.62);
--journal-grid-max: 1400px;
--journal-grid-pad: clamp(20px, 5vw, 80px);
}
.page-journal .page-hero.page-hero--compact {
min-height: 76vh;
padding: clamp(138px, 17vh, 204px) 0 clamp(96px, 11vh, 146px);
}
.page-journal .page-hero .content {
width: min(100%, var(--journal-grid-max));
margin: 0 auto;
padding-left: var(--journal-grid-pad);
padding-right: var(--journal-grid-pad);
max-width: none;
}
.page-journal .page-hero h1 {
font-size: clamp(2.2rem, 4.5vw, 4rem);
line-height: 1.06;
letter-spacing: -0.03em;
margin-bottom: clamp(52px, 7vh, 80px);
max-width: 14ch;
text-wrap: balance;
}
.page-journal .page-hero .description {
max-width: 560px;
font-size: clamp(0.98rem, 1vw, 1.08rem);
line-height: 1.88;
color: rgba(224, 224, 220, 0.74);
text-wrap: pretty;
}
.page-journal .section-featured {
padding: var(--journal-space-section) 0;
background: var(--color-cream);
}
.page-journal .featured-grid {
gap: clamp(58px, 8vw, 112px);
align-items: center;
}
.page-journal .featured-image {
aspect-ratio: 4/5;
max-width: 460px;
background: linear-gradient(135deg, #e0e0de 0%, #d0d0ce 100%);
overflow: hidden;
}
.page-journal .featured-image.image-reveal::before {
background: var(--color-cream);
}
.page-journal .featured-image .placeholder-inner {
background: linear-gradient(135deg, #e0e0de 0%, #d0d0ce 100%);
will-change: transform;
}
.page-journal .featured-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.9s var(--ease-out-expo);
will-change: transform;
}
.page-journal .featured-content h2 {
max-width: 16ch;
font-size: clamp(1.7rem, 3vw, 2.46rem);
line-height: 1.16;
margin-bottom: clamp(20px, 2.8vh, 30px);
text-wrap: balance;
}
.page-journal .featured-lead p {
max-width: 52ch;
font-size: clamp(1rem, 1.04vw, 1.12rem);
line-height: 1.88;
color: var(--journal-light-soft);
margin-bottom: clamp(28px, 4vh, 42px);
text-wrap: pretty;
}
.page-journal .section-articles {
padding: var(--journal-space-section) 0;
background: var(--color-gray-dark);
}
.page-journal .articles-header {
margin-bottom: clamp(64px, 8.6vh, 114px);
}
.page-journal .articles-header h2 {
font-size: clamp(2rem, 3.8vw, 3.08rem);
letter-spacing: -0.03em;
line-height: 1.08;
text-wrap: balance;
}
.page-journal .article-item {
gap: clamp(20px, 2.7vw, 38px);
padding: clamp(30px, 3.8vh, 44px) 0;
transition: opacity 0.4s var(--ease-out-expo);
}
.page-journal .article-item:hover {
opacity: 0.62;
} .page-journal .article-thumb.image-reveal::before {
background: var(--color-gray-dark);
}
.page-journal .article-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}
.page-journal .article-thumb {
width: clamp(76px, 8vw, 112px);
}
.page-journal .article-content h3 {
font-size: clamp(1.14rem, 1.65vw, 1.42rem);
line-height: 1.3;
text-wrap: balance;
}
.page-journal .article-content .excerpt {
max-width: 64ch;
line-height: 1.84;
color: var(--journal-dark-soft);
}
.page-journal .article-meta {
min-width: 108px;
line-height: 1.9;
letter-spacing: 0.03em;
color: rgba(224, 224, 220, 0.52);
}
.page-journal .section-archives {
padding: var(--journal-space-section) 0 var(--journal-space-tight);
background: var(--color-gray-dark);
color: var(--color-white);
}
.page-journal .archives-header {
margin-bottom: clamp(56px, 7.2vh, 96px);
}
.page-journal .archives-header h2 {
font-size: clamp(2.06rem, 3.8vw, 3.18rem);
line-height: 1.06;
letter-spacing: -0.03em;
text-wrap: balance;
}
.page-journal .archives-header h2,
.page-journal .archive-item .title {
color: var(--color-white);
}
.page-journal .archive-year {
padding: clamp(18px, 2.4vh, 28px) 0 clamp(14px, 1.8vh, 22px);
margin-top: clamp(48px, 6vh, 80px);
font-size: 0.76rem;
letter-spacing: 0.08em;
color: rgba(224, 224, 220, 0.52);
}
.page-journal .archive-year:first-child {
margin-top: 0;
}
.page-journal .archive-item {
padding: clamp(18px, 2.6vh, 30px) 0;
border-bottom: 1px solid rgba(224, 224, 220, 0.1);
transition:
opacity 0.35s var(--ease-out-expo),
transform 0.4s var(--ease-out-expo);
}
.page-journal .archive-item:hover {
transform: translateX(6px);
opacity: 0.7;
}
.page-journal .archive-item .title {
font-size: clamp(1rem, 1.3vw, 1.2rem);
line-height: 1.44;
letter-spacing: -0.01em;
}
.page-journal .archive-item .category {
font-size: 0.7rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(224, 224, 220, 0.44);
}
.page-journal .fade-up {
transform: translateY(28px);
transition-duration: 0.85s;
}
.page-journal .stagger-children > * {
transform: translateY(16px);
transition-duration: 0.72s;
}
@media (max-width: 1024px) {
.page-journal .page-hero.page-hero--compact {
min-height: 70vh;
}
.page-journal .featured-grid {
grid-template-columns: 1fr;
align-items: start;
gap: 50px;
}
.page-journal .featured-image {
max-width: min(100%, 480px);
}
.page-journal .article-item {
grid-template-columns: auto auto 1fr;
}
.page-journal .article-meta {
display: none;
}
}
@media (max-width: 768px) {
.page-journal .page-hero.page-hero--compact {
min-height: 64vh;
padding-top: 122px;
padding-bottom: 84px;
}
.page-journal .page-hero .content {
padding-left: 20px;
padding-right: 20px;
}
.page-journal .page-hero h1 {
font-size: clamp(1.85rem, 8.5vw, 2.8rem);
max-width: 100%;
}
.page-journal .section-featured,
.page-journal .section-articles,
.page-journal .section-archives {
padding: clamp(82px, 11vh, 118px) 0;
}
.page-journal .featured-content h2 {
max-width: 100%;
}
.page-journal .article-item {
grid-template-columns: auto 1fr;
gap: 16px;
}
.page-journal .article-number {
display: none;
}
.page-journal .archive-item {
flex-wrap: wrap;
gap: 4px 16px;
}
.page-journal .archive-item .title {
font-size: 1rem;
}
.page-journal .archive-year {
margin-top: clamp(36px, 5vh, 56px);
}
} .page-about {
--about-space-hero-top: clamp(120px, 15vh, 180px);
--about-space-hero-bottom: clamp(64px, 9vh, 104px);
--about-space-section: clamp(100px, 13vh, 160px);
--about-space-block: clamp(54px, 8vh, 86px);
}
.about-fv-hero {
min-height: 100vh;
background: var(--color-black);
color: var(--color-white);
display: flex;
align-items: center;
padding: var(--about-space-hero-top) 0 var(--about-space-hero-bottom);
position: relative;
}
.about-fv-wrap {
width: 100%;
max-width: 1400px;
margin: 0 auto;
padding: 0 clamp(20px, 5vw, 80px);
padding-top: clamp(44px, 8vh, 96px);
}
.about-fv-label {
margin-bottom: 20px;
}
.about-fv-title {
font-size: clamp(2rem, 4.6vw, 4.6rem);
letter-spacing: -0.035em;
line-height: 1.08;
max-width: 18ch;
}
.about-fv-bottom {
margin-top: clamp(56px, 9vh, 96px);
width: min(100%, 720px);
margin-left: auto;
}
.about-fv-summary {
font-size: clamp(1.16rem, 1.55vw, 1.8rem);
line-height: 1.5;
color: rgba(224, 224, 220, 0.9);
max-width: 32ch;
}
.about-fv-summary a {
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 4px;
}
.about-fv-image-section {
background: var(--color-black);
padding: 0;
}
.about-fv-image {
width: 100%;
height: clamp(480px, 75vh, 900px);
position: relative;
overflow: hidden;
}
.about-fv-image img,
.about-fv-image video {
width: 100%;
height: 115%;
object-fit: cover;
object-position: center;
transform: scale(1.06);
transition: transform 1.6s var(--ease-out-expo);
}
.about-fv-image.visible img,
.about-fv-image.visible video {
transform: scale(1);
}
.about-fv-image .placeholder-inner {
width: 100%;
height: 100%;
background: linear-gradient(120deg, #333 0%, #252525 35%, #1b1b1b 100%);
}
.about-fv-manifesto {
background: var(--color-gray-dark);
color: var(--color-white);
padding: var(--about-space-section) 0 clamp(168px, 23vh, 320px);
border-bottom: 1px solid rgba(224, 224, 220, 0.08);
}
.about-fv-manifesto-head .label {
margin-bottom: 20px;
}
.about-fv-manifesto-head h2 {
font-size: clamp(2rem, 5vw, 4.4rem);
line-height: 1.1;
margin-bottom: clamp(18px, 3vh, 28px);
max-width: 18ch;
}
.about-fv-manifesto-intro {
font-size: clamp(1rem, 1.08vw, 1.14rem);
line-height: 1.85;
color: rgba(224, 224, 220, 0.78);
max-width: 62ch;
}
.about-fv-principles-grid {
margin-top: clamp(96px, 12vh, 176px);
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: clamp(28px, 4.2vw, 52px) clamp(34px, 5vw, 68px);
align-items: start;
}
.about-fv-principle {
border-top: 1px solid rgba(224, 224, 220, 0.14);
padding-top: clamp(22px, 3vh, 30px);
}
.about-fv-principle .number {
display: block;
font-size: 0.72rem;
color: var(--color-gray);
margin-bottom: 14px;
letter-spacing: 0.08em;
}
.about-fv-principle h3 {
font-size: clamp(1.22rem, 1.8vw, 1.46rem);
font-weight: 300;
line-height: 1.28;
margin-bottom: 14px;
letter-spacing: -0.02em;
}
.about-fv-principle p {
font-size: 0.92rem;
line-height: 1.9;
color: rgba(224, 224, 220, 0.72);
} .about-ecosistema-inline {
margin-top: clamp(64px, 9vh, 110px);
max-width: 680px;
}
.about-ecosistema-inline p {
font-size: clamp(0.92rem, 1.05vw, 1.04rem);
line-height: 1.82;
color: rgba(0, 0, 0, 0.6);
}
.about-ecosistema-inline .about-eco-cta {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 0.9rem;
color: rgba(0, 0, 0, 0.6);
text-decoration: none;
border-bottom: 1px solid rgba(0, 0, 0, 0.18);
padding-bottom: 2px;
transition: color 0.3s ease, border-color 0.3s ease;
white-space: nowrap;
margin-top: clamp(20px, 3vh, 32px);
}
.about-ecosistema-inline .about-eco-cta:hover {
color: var(--color-black);
border-color: var(--color-black);
}
.page-about .section-numbers {
padding: clamp(128px, 16vh, 220px) 0;
background: var(--color-cream);
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
position: relative;
overflow: hidden;
}
.page-about .numbers-header {
margin-bottom: clamp(64px, 10vh, 110px);
max-width: 900px;
}
.page-about .numbers-header h2 {
font-size: clamp(2.25rem, 4.4vw, 3.8rem);
letter-spacing: -0.03em;
}
.page-about .about-numbers-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(28px, 4.6vw, 64px);
}
.page-about .number-card {
padding-top: clamp(28px, 4vh, 40px);
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.page-about .number-value {
font-size: clamp(2.45rem, 4.5vw, 3.9rem);
margin-bottom: 14px;
}
.page-about .number-label {
font-size: 0.74rem;
letter-spacing: 0.08em;
margin-bottom: 14px;
}
.page-about .number-card p {
font-size: 0.92rem;
line-height: 1.88;
color: rgba(0, 0, 0, 0.68);
}
.page-about .section-insights {
padding: var(--about-space-section) 0;
background: var(--color-gray-dark);
border-top: 1px solid rgba(224, 224, 220, 0.06);
}
.page-about .section-insights .container-wide {
max-width: none;
padding-inline: clamp(20px, 5vw, 80px);
}
.page-about .insights-header {
margin-bottom: clamp(48px, 7vh, 80px);
}
.page-about .insights-header h2 {
font-size: clamp(1.9rem, 3.6vw, 2.9rem);
letter-spacing: -0.025em;
}
.page-about .insight-card h3 {
font-size: clamp(1.08rem, 1.45vw, 1.36rem);
line-height: 1.42;
}
.page-about .fade-up {
transform: translateY(28px);
transition-duration: 0.9s;
}
.page-about .stagger-children > * {
transform: translateY(16px);
transition-duration: 0.72s;
}
@media (max-width: 1024px) {
.about-fv-principles-grid {
grid-template-columns: repeat(2, 1fr);
gap: 34px;
}
.about-fv-bottom {
width: min(100%, 920px);
}
}
@media (max-width: 768px) {
.about-fv-wrap {
padding-top: 20px;
}
.about-fv-title {
font-size: clamp(2rem, 9vw, 3.4rem);
max-width: 100%;
}
.about-fv-bottom {
width: 100%;
margin-top: 48px;
}
.about-fv-image-section {
height: auto;
}
.about-fv-image {
height: clamp(260px, 62vw, 420px);
} .about-fv-image img,
.about-fv-image video {
height: 100%;
}
.about-fv-manifesto-head h2 {
max-width: 100%;
}
.about-fv-principles-grid {
grid-template-columns: 1fr;
gap: 30px;
margin-top: 72px;
}
.page-about .section-numbers,
.page-about .section-insights {
padding: clamp(84px, 11vh, 120px) 0;
}
.about-fv-manifesto {
padding: clamp(72px, 9vh, 100px) 0 clamp(72px, 9vh, 100px);
}
.page-about .about-numbers-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.page-about .number-card {
padding: 24px 20px;
}
} .page-contatti {
--ct-grid-max: 1400px;
--ct-grid-pad: clamp(20px, 5vw, 80px);
--ct-space-section: clamp(112px, 14vh, 188px);
} .page-contatti .page-hero {
min-height: 60vh;
padding: clamp(160px, 20vh, 240px) clamp(20px, 5vw, 80px) clamp(60px, 8vh, 100px);
}
.page-contatti .page-hero .content {
max-width: 900px;
padding-right: 0;
}
.page-contatti .page-hero h1 {
font-size: clamp(2.2rem, 4.5vw, 4rem);
line-height: 1.06;
letter-spacing: -0.03em;
margin-bottom: clamp(18px, 3vh, 28px);
text-wrap: balance;
}
.page-contatti .page-hero .description {
max-width: 500px;
font-size: clamp(0.98rem, 1vw, 1.08rem);
line-height: 1.88;
color: rgba(224, 224, 220, 0.74);
text-wrap: pretty;
} .section-contact {
background: var(--color-cream);
color: var(--color-black);
padding: var(--ct-space-section) 0;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 2fr;
gap: clamp(60px, 8vw, 120px);
max-width: var(--ct-grid-max);
margin: 0 auto;
padding: 0 var(--ct-grid-pad);
align-items: start;
} .contact-info {
padding-top: 8px;
display: flex;
flex-direction: column;
}
.contact-info .label {
font-family: var(--font-body, sans-serif);
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #7e7e7c;
margin-bottom: clamp(36px, 6vh, 60px);
}
.contact-block {
margin-bottom: clamp(28px, 4vh, 40px);
padding-bottom: clamp(28px, 4vh, 40px);
border-bottom: 1px solid #e1e1df;
}
.contact-block:last-child {
border-bottom: none;
margin-bottom: 0;
}
.contact-block .block-title {
font-size: 0.68rem;
text-transform: uppercase;
letter-spacing: 0.14em;
color: #7e7e7c;
margin-bottom: 10px;
font-weight: 400;
}
.contact-block p {
font-size: 1rem;
line-height: 1.75;
color: #2c2c2a;
font-weight: 400;
}
.contact-block a {
color: #2c2c2a;
text-decoration: none;
transition: color 0.35s var(--ease-out-expo);
}
.contact-block a:hover {
color: #7e7e7c;
} .contact-form-wrapper {
background: #fff;
padding: clamp(34px, 5vh, 56px) clamp(24px, 4vw, 44px);
} .contact-form-wrapper .gform_wrapper {
margin: 0;
}
.contact-form-wrapper .gform_title,
.contact-form-wrapper .gform_description {
display: none !important;
} .contact-form-wrapper .gfield--type-honeypot,
.contact-form-wrapper .gform_validation_container,
.contact-form-wrapper .gfield_honeypot_field,
.contact-form-wrapper .gfield[aria-hidden="true"],
.contact-form-wrapper .gfield[style*="display:none"],
.contact-form-wrapper .gfield[style*="display: none"],
.contact-form-wrapper .gfield:has(> .ginput_container_honeypot) {
display: none !important;
visibility: hidden !important;
position: absolute !important;
left: -9999px !important;
pointer-events: none !important;
} .contact-form-wrapper .gform_wrapper,
.contact-form-wrapper .gform-theme {
--gf-color-primary: #111 !important;
--gf-color-primary-rgb: 17, 17, 17 !important;
--gf-color-primary-contrast: #fff !important;
--gf-color-primary-darker: #000 !important;
--gf-color-primary-lighter: #444 !important;
} .contact-form-wrapper .gform_fields {
row-gap: 0;
column-gap: clamp(16px, 2.4vw, 28px);
}
.contact-form-wrapper .gfield {
padding: 0;
margin: 0 !important;
position: relative;
} .contact-form-wrapper .gfield_label {
display: block;
font-size: 0.68rem !important;
letter-spacing: 0.14em !important;
text-transform: uppercase !important;
color: #555555 !important;
font-weight: 400 !important;
padding: 0;
margin-bottom: 10px !important;
} .contact-form-wrapper .gfield_required {
font-size: 0.68rem !important;
color: #aaaaaa !important;
font-weight: 400 !important;
letter-spacing: 0.1em !important;
} .contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"] {
width: 100% !important;
border: none !important;
border-bottom: 1px solid #c8c8c8 !important;
border-radius: 0 !important;
background: #f0f0f0 !important;
color: #111111 !important;
padding: 12px 14px !important;
font-size: 0.96rem !important;
font-family: var(--font-body, sans-serif) !important;
line-height: 1.5 !important;
outline: none !important;
box-shadow: none !important;
appearance: none !important;
-webkit-appearance: none !important;
transition: border-color 0.3s ease, background 0.3s ease !important;
}
.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus {
border-bottom-color: #555555 !important;
background: #e8e8e8 !important;
} .contact-form-wrapper textarea {
width: 100% !important;
border: none !important;
border-bottom: 1px solid #c8c8c8 !important;
border-radius: 0 !important;
background: #f0f0f0 !important;
color: #111111 !important;
padding: 12px 14px !important;
font-size: 0.96rem !important;
font-family: var(--font-body, sans-serif) !important;
line-height: 1.6 !important;
outline: none !important;
box-shadow: none !important;
resize: vertical !important;
min-height: 160px !important;
transition: border-color 0.3s ease, background 0.3s ease !important;
appearance: none !important;
-webkit-appearance: none !important;
}
.contact-form-wrapper textarea:focus {
border-bottom-color: #555555 !important;
background: #e8e8e8 !important;
}
.contact-form-wrapper input[type="text"]::placeholder,
.contact-form-wrapper input[type="email"]::placeholder,
.contact-form-wrapper input[type="tel"]::placeholder,
.contact-form-wrapper textarea::placeholder {
color: #9e9e9e !important;
} .contact-form-wrapper select {
width: 100% !important;
border: none !important;
border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
border-radius: 0 !important;
background: #f0f0f0 !important;
color: #111 !important;
padding: 12px 14px !important;
font-size: 0.96rem !important;
font-family: var(--font-body, sans-serif) !important;
outline: none !important;
box-shadow: none !important;
appearance: none !important;
-webkit-appearance: none !important;
cursor: pointer;
} .contact-form-wrapper .gform_fields .gfield {
padding-bottom: clamp(16px, 2.2vh, 22px);
} .contact-form-wrapper .gfield--type-consent,
.contact-form-wrapper .gfield--type-checkbox {
padding-top: clamp(8px, 1.2vh, 14px);
}
.contact-form-wrapper .gfield_consent_label,
.contact-form-wrapper .gfield_checkbox label {
font-size: 0.88rem !important;
color: rgba(0, 0, 0, 0.78) !important;
line-height: 1.6 !important;
display: flex !important;
align-items: flex-start !important;
gap: 12px !important;
cursor: pointer;
}
.contact-form-wrapper input[type="checkbox"] {
width: 20px !important;
height: 20px !important;
min-width: 20px !important;
margin-top: 2px !important;
border: 1px solid rgba(0, 0, 0, 0.3) !important;
border-radius: 0 !important;
background: transparent !important;
accent-color: #111;
appearance: auto !important;
-webkit-appearance: auto !important;
flex-shrink: 0;
} .contact-form-wrapper .gfield_error {
border-bottom-color: rgba(180, 40, 40, 0.5) !important;
}
.contact-form-wrapper .validation_message {
font-size: 0.76rem !important;
color: rgba(180, 40, 40, 0.8) !important;
padding: 4px 0 8px !important;
} .contact-form-wrapper .gform_footer {
padding-top: clamp(28px, 3.8vh, 40px) !important;
margin: 0 !important;
}
.contact-form-wrapper input[type="submit"],
.contact-form-wrapper input[type="submit"].gform_button,
.contact-form-wrapper input[type="submit"].button,
.contact-form-wrapper button[type="submit"],
.contact-form-wrapper .gform_button {
appearance: none !important;
-webkit-appearance: none !important;
border: 1.5px solid #111 !important;
border-radius: 0 !important;
background: transparent !important;
background-color: transparent !important;
color: #111 !important;
padding: 14px 36px !important;
font-size: 0.78rem !important;
font-family: var(--font-body, sans-serif) !important;
text-transform: uppercase !important;
letter-spacing: 0.12em !important;
cursor: pointer !important;
box-shadow: none !important;
transition: background 0.35s var(--ease-out-expo), color 0.35s var(--ease-out-expo) !important;
will-change: background, color;
}
.contact-form-wrapper input[type="submit"]:hover,
.contact-form-wrapper input[type="submit"].gform_button:hover,
.contact-form-wrapper input[type="submit"].button:hover,
.contact-form-wrapper button[type="submit"]:hover,
.contact-form-wrapper .gform_button:hover {
background: #111 !important;
background-color: #111 !important;
color: #fff !important;
}
.contact-form-fallback {
text-align: left;
}
.contact-form-fallback h2 {
font-size: clamp(1.34rem, 2vw, 1.9rem);
line-height: 1.24;
color: rgba(0, 0, 0, 0.84);
margin-bottom: 14px;
text-wrap: balance;
}
.contact-form-fallback p {
font-size: 1rem;
line-height: 1.78;
color: rgba(0, 0, 0, 0.62);
margin-bottom: 18px;
max-width: 42ch;
text-wrap: pretty;
}
.contact-form-fallback .fallback-cta {
display: inline-flex;
align-items: center;
gap: 10px;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 999px;
padding: 11px 18px;
font-size: 0.8rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #111;
}
.contact-form-fallback .fallback-cta svg {
width: 15px;
height: 15px;
} .section-map {
background: var(--color-black);
padding: 0;
position: relative;
}
.contact-map {
width: 100%;
height: clamp(420px, 55vh, 680px);
border: 0;
display: block;
} .contact-map .marker { display: none; } @media (max-width: 1024px) {
.contact-grid {
grid-template-columns: 1fr 1.2fr;
gap: clamp(40px, 6vw, 80px);
}
}
@media (max-width: 768px) {
.page-contatti .page-hero {
min-height: auto;
padding-top: 122px;
padding-bottom: clamp(48px, 7vh, 72px);
}
.page-contatti .page-hero h1 {
font-size: clamp(1.85rem, 8.5vw, 2.8rem);
} .page-contatti .section-contact {
padding: clamp(48px, 7vh, 72px) 0;
}
.contact-grid {
grid-template-columns: 1fr;
gap: 0;
padding: 0;
} .contact-info {
padding: clamp(24px, 4vh, 36px) clamp(20px, 5vw, 40px);
display: flex;
flex-direction: column;
}
.contact-info .label {
margin-bottom: clamp(20px, 3vh, 28px);
}
.contact-block {
margin-bottom: clamp(18px, 2.5vh, 24px);
padding-bottom: clamp(18px, 2.5vh, 24px);
}
.contact-block .block-title {
font-size: 0.65rem;
margin-bottom: 8px;
}
.contact-block p {
font-size: 0.95rem;
line-height: 1.65;
} .contact-form-wrapper {
padding: clamp(32px, 5vh, 52px) clamp(20px, 5vw, 40px);
background: #fff;
border-top: 1px solid #e8e8e6;
} .contact-form-wrapper .gfield input:not([type="checkbox"]):not([type="radio"]),
.contact-form-wrapper .gfield select {
min-height: 44px;
padding-block: 13px;
}
.contact-form-wrapper .gfield textarea {
min-height: clamp(100px, 25vh, 150px);
}
} .page-expertise {
--exp-space-section: clamp(108px, 14vh, 180px);
--exp-space-block: clamp(52px, 8vh, 90px);
}
.page-expertise .exp-hero {
padding: clamp(138px, 17vh, 200px) clamp(20px, 5vw, 80px) clamp(80px, 10vh, 120px);
min-height: 80vh;
display: flex;
flex-direction: column;
justify-content: space-between;
overflow: hidden;
border-bottom: 1px solid rgba(224, 224, 220, 0.08);
}
.page-expertise .exp-hero .content {
max-width: none;
padding-right: 0;
position: relative;
z-index: 2;
}
.page-expertise .exp-hero h1 {
font-size: clamp(2.6rem, 5.8vw, 5.6rem);
line-height: 1.04;
letter-spacing: -0.035em;
margin-bottom: 0;
max-width: 18ch;
}
.page-expertise .exp-hero-bottom {
width: min(100%, 680px);
margin-left: auto;
position: relative;
z-index: 2;
}
.page-expertise .exp-hero-bottom .description {
max-width: 44ch;
font-size: clamp(1.02rem, 1.2vw, 1.22rem);
line-height: 1.82;
color: rgba(224, 224, 220, 0.78);
}
.page-expertise .intro-section {
padding: 0;
background: var(--color-cream);
position: relative;
overflow: hidden;
}
.page-expertise .intro-section .container {
max-width: none;
padding-inline: 0;
}
.page-expertise .intro-grid {
position: relative;
min-height: clamp(620px, 86vh, 1020px);
display: flex;
align-items: center;
justify-content: flex-end;
padding: clamp(96px, 12vh, 164px) clamp(24px, 6vw, 92px);
}
.page-expertise .intro-left {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
z-index: 0;
pointer-events: none;
will-change: transform, opacity;
}
.page-expertise .intro-left.fade-in-left {
transform: translate3d(-96px, 0, 0);
transition-duration: 1.15s;
}
.page-expertise .intro-left.fade-in-left.visible {
transform: translate3d(0, 0, 0);
}
.page-expertise .intro-image {
width: 100%;
height: 100%;
overflow: hidden;
border-radius: 0;
position: relative;
box-shadow: none;
}
.page-expertise .intro-image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
transform: scale(1.08);
will-change: transform;
transition: transform 1.4s var(--ease-out-expo);
}
.page-expertise .intro-image.visible img {
transform: scale(1);
}
.page-expertise .intro-image::after {
content: "";
position: absolute;
inset: 0;
z-index: 1;
pointer-events: none;
background:
linear-gradient(
to right,
rgba(244, 243, 239, 0) 0%,
rgba(244, 243, 239, 0.52) 50%,
rgba(244, 243, 239, 0.9) 72%,
rgba(244, 243, 239, 1) 100%
),
linear-gradient(to bottom, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.1));
}
.page-expertise .intro-image:hover img {
transform: scale(1.085);
}
.page-expertise .intro-image .placeholder-inner {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #e0e0de 0%, #d0d0ce 100%);
}
.page-expertise .intro-content {
margin-bottom: 0;
}
.page-expertise .intro-content h2 {
font-size: clamp(2.05rem, 3.8vw, 3.3rem);
line-height: 1.1;
letter-spacing: -0.03em;
margin: 0;
}
.page-expertise .intro-right p {
max-width: 580px;
font-size: clamp(1.02rem, 1.1vw, 1.18rem);
line-height: 1.9;
color: rgba(0, 0, 0, 0.64);
margin: 0;
}
.page-expertise .intro-right {
position: relative;
z-index: 2;
width: min(100%, 620px);
margin-left: auto;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: clamp(44px, 6vh, 82px);
}
.page-expertise .intro-right .intro-cta {
margin-top: 0;
font-weight: 400;
letter-spacing: 0.01em;
}
.page-expertise .expertise-section {
padding: var(--exp-space-section) 0;
background: var(--color-gray-dark);
}
.page-expertise .expertise-header {
margin-bottom: clamp(68px, 10vh, 120px);
gap: clamp(36px, 6vw, 90px);
}
.page-expertise .expertise-header h2 {
margin-top: 0;
font-size: clamp(2.1rem, 4.2vw, 3.4rem);
line-height: 1.08;
letter-spacing: -0.03em;
}
.page-expertise .expertise-header p {
max-width: 470px;
font-size: 1rem;
line-height: 1.85;
color: rgba(224, 224, 220, 0.62);
}
.page-expertise .expertise-grid {
gap: clamp(54px, 7vw, 96px) clamp(44px, 8vw, 130px);
} .page-expertise .fade-up {
transform: translateY(24px);
transition-duration: 0.9s;
}
.page-expertise .stagger-children > * {
will-change: transform, opacity;
transform: translateY(18px);
transition-duration: 0.75s;
}
.page-expertise .services-header p {
margin-left: 0;
padding-top: clamp(36px, 5vh, 48px);
}
.page-expertise .service-item:first-child {
border-top: none;
}
.page-expertise .service-item:last-child {
border-bottom: none;
}
@media (max-width: 1024px) {
.page-expertise .exp-hero .content {
padding-right: 0;
}
.page-expertise .intro-grid {
min-height: clamp(560px, 76vh, 840px);
padding: clamp(80px, 11vh, 128px) clamp(20px, 5vw, 58px);
}
.page-expertise .intro-left {
width: 100%;
height: 100%;
}
.page-expertise .intro-image {
max-width: 100%;
height: 100%;
min-height: 0;
}
.page-expertise .expertise-header {
margin-bottom: 70px;
}
}
@media (max-width: 768px) {
.page-expertise .exp-hero {
padding-top: 122px;
padding-bottom: 72px;
min-height: auto;
justify-content: flex-start;
}
.page-expertise .exp-hero h1 {
font-size: clamp(1.85rem, 8.5vw, 2.8rem);
max-width: 100%;
}
.page-expertise .exp-hero-bottom {
margin-left: 0;
margin-top: clamp(36px, 5vh, 56px);
}
.page-expertise .expertise-section {
padding: clamp(86px, 11vh, 120px) 0;
}
.page-expertise .expertise-grid {
gap: 56px;
}
.page-expertise .intro-grid {
min-height: clamp(500px, 70vh, 700px);
padding: clamp(70px, 10vh, 110px) 20px;
}
.page-expertise .intro-right {
width: 100%;
max-width: 100%;
gap: clamp(30px, 4.4vh, 52px);
}
.page-expertise .intro-image {
min-height: 0;
} .page-expertise .intro-image img {
object-position: right center;
}
} .page-progetti {
--prj-space-section: clamp(108px, 14vh, 180px);
--prj-space-block: clamp(52px, 8vh, 90px);
}
.page-progetti .exp-hero {
padding: clamp(138px, 17vh, 200px) clamp(20px, 5vw, 80px) clamp(80px, 10vh, 120px);
min-height: 80vh;
display: flex;
flex-direction: column;
justify-content: space-between;
overflow: hidden;
border-bottom: 1px solid rgba(224, 224, 220, 0.08);
}
.page-progetti .exp-hero .content {
max-width: none;
padding-right: 0;
position: relative;
z-index: 2;
}
.page-progetti .exp-hero h1 {
font-size: clamp(2.6rem, 5.8vw, 5.6rem);
line-height: 1.04;
letter-spacing: -0.035em;
margin-bottom: 0;
max-width: 18ch;
}
.page-progetti .exp-hero-bottom {
width: min(100%, 680px);
margin-left: auto;
position: relative;
z-index: 2;
}
.page-progetti .exp-hero-bottom .description {
max-width: 44ch;
font-size: clamp(1.02rem, 1.2vw, 1.22rem);
line-height: 1.82;
color: rgba(224, 224, 220, 0.78);
}
.page-progetti .intro-section {
padding: var(--prj-space-section) 0;
background: var(--color-cream);
position: relative;
}
.page-progetti .intro-grid {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: clamp(48px, 6vw, 96px);
align-items: center;
}
.page-progetti .intro-image {
width: 100%;
aspect-ratio: 4 / 5;
overflow: hidden;
border-radius: 3px;
}
.page-progetti .intro-image img {
width: 100%;
height: 100%;
object-fit: cover;
transform: scale(1.06);
will-change: transform;
transition: transform 1.4s var(--ease-out-expo);
}
.page-progetti .intro-image.visible img {
transform: scale(1);
}
.page-progetti .intro-image .placeholder-inner {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #e0e0de 0%, #d0d0ce 100%);
}
.page-progetti .intro-content {
margin-bottom: clamp(20px, 3vh, 32px);
}
.page-progetti .intro-content h2 {
font-size: clamp(2.25rem, 4.2vw, 3.65rem);
line-height: 1.08;
letter-spacing: -0.03em;
}
.page-progetti .intro-right p {
max-width: 580px;
font-size: clamp(1.02rem, 1.1vw, 1.18rem);
line-height: 1.9;
color: rgba(0, 0, 0, 0.64);
}
.page-progetti .intro-right {
max-width: 620px;
}
.page-progetti .projects-section {
padding: var(--prj-space-section) 0;
background: var(--color-gray-dark);
}
.page-progetti .projects-section .container {
max-width: none;
}
.page-progetti .projects-header .label {
margin-bottom: 20px;
}
.page-progetti .projects-header {
margin-bottom: clamp(68px, 10vh, 120px);
gap: clamp(36px, 6vw, 90px);
}
.page-progetti .projects-header h2 {
margin-top: 0;
font-size: clamp(2.1rem, 4.2vw, 3.4rem);
line-height: 1.08;
letter-spacing: -0.03em;
}
.page-progetti .projects-header p {
max-width: 470px;
font-size: 1rem;
line-height: 1.85;
color: rgba(224, 224, 220, 0.62);
}
.page-progetti .projects-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: clamp(72px, 9vw, 120px) clamp(28px, 4vw, 60px);
}
.page-progetti .project-card {
display: block;
text-decoration: none;
color: inherit;
}
.page-progetti .project-card .card-label {
font-size: 0.75rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(224, 224, 220, 0.36);
margin-bottom: 14px;
} .page-progetti .project-card .card-cta {
display: inline-flex;
align-items: center;
gap: 10px;
margin-top: clamp(18px, 2.5vh, 26px);
font-size: 0.88rem;
letter-spacing: 0.01em;
color: rgba(224, 224, 220, 0.65);
position: relative;
transition: color 0.35s, gap 0.35s;
}
.page-progetti .project-card .card-cta::after {
content: "";
position: absolute;
bottom: -3px;
left: 0;
width: 100%;
height: 1px;
background: currentColor;
transform: scaleX(0);
transform-origin: right;
transition: transform 0.5s var(--ease-out-expo);
}
.page-progetti .project-card:hover .card-cta {
color: rgba(224, 224, 220, 0.9);
gap: 14px;
}
.page-progetti .project-card:hover .card-cta::after {
transform: scaleX(1);
transform-origin: left;
}
.page-progetti .project-card .card-cta svg {
width: 15px;
height: 15px;
flex-shrink: 0;
transition: transform 0.4s var(--ease-out-expo);
}
.page-progetti .project-card:hover .card-cta svg {
transform: translateX(4px);
}
.page-progetti .project-card .card-image {
width: 100%;
overflow: hidden;
border-radius: 3px;
background: rgba(255,255,255,0.05);
}
.page-progetti .project-card .card-image img {
width: 100%;
height: auto;
display: block;
transition: transform 0.8s var(--ease-out-expo);
}
.page-progetti .project-card:hover .card-image img {
transform: scale(1.03);
}
.page-progetti .project-card .image-placeholder {
width: 100%;
aspect-ratio: 4 / 5;
background: rgba(255,255,255,0.06);
}
.page-progetti .project-card {
transition:
transform 0.7s var(--ease-out-expo),
opacity 0.6s var(--ease-out-expo);
}
.page-progetti .project-card:nth-child(3n+2) {
margin-top: clamp(60px, 8vw, 100px);
}
.page-progetti .project-card:nth-child(3n+3) {
margin-top: clamp(110px, 15vw, 160px);
}
.page-progetti .project-card:hover {
transform: translateY(-4px);
}
.page-progetti .project-card .card-image {
margin-bottom: 24px;
}
.page-progetti .project-card h3 {
font-size: clamp(1.65rem, 2.8vw, 2.4rem);
line-height: 1.12;
letter-spacing: -0.03em;
font-weight: 300;
margin-top: 10px;
text-wrap: balance;
}
.page-progetti .project-card .card-meta {
font-size: 0.88rem;
line-height: 1.82;
color: rgba(224, 224, 220, 0.5);
margin-top: clamp(10px, 1.5vh, 16px);
}
.page-progetti .fade-up {
transform: translateY(24px);
transition-duration: 0.9s;
}
.page-progetti .stagger-children > * {
will-change: transform, opacity;
transform: translateY(18px);
transition-duration: 0.75s;
}
@media (max-width: 1024px) {
.page-progetti .intro-grid {
grid-template-columns: 1fr;
gap: 42px;
}
.page-progetti .intro-image {
max-width: 520px;
aspect-ratio: 16 / 10;
}
.page-progetti .projects-header {
margin-bottom: 70px;
} .page-progetti .projects-grid {
grid-template-columns: 1fr 1fr;
gap: clamp(64px, 8vw, 96px) clamp(24px, 4vw, 48px);
}
.page-progetti .project-card:nth-child(3n+2),
.page-progetti .project-card:nth-child(3n+3) {
margin-top: 0;
}
.page-progetti .project-card:nth-child(even) {
margin-top: clamp(50px, 8vw, 80px);
}
}
@media (max-width: 768px) {
.page-progetti .exp-hero {
padding-top: 122px;
padding-bottom: 72px;
min-height: auto;
justify-content: flex-start;
}
.page-progetti .exp-hero h1 {
font-size: clamp(1.85rem, 8.5vw, 2.8rem);
max-width: 100%;
}
.page-progetti .exp-hero-bottom {
margin-left: 0;
margin-top: clamp(36px, 5vh, 56px);
}
.page-progetti .intro-section,
.page-progetti .projects-section {
padding: clamp(86px, 11vh, 120px) 0;
} .page-progetti .projects-grid {
grid-template-columns: 1fr;
gap: clamp(72px, 11vh, 100px);
}
.page-progetti .project-card h3 {
font-size: clamp(1.65rem, 7.5vw, 2.4rem);
}
.page-progetti .project-card:nth-child(even) {
margin-top: 0;
}
} .page-default {
--page-grid-max: 1400px;
--page-grid-pad: clamp(20px, 5vw, 80px);
}
.page-default .page-hero {
min-height: 60vh;
padding: clamp(160px, 20vh, 240px) clamp(20px, 5vw, 80px) clamp(60px, 8vh, 100px);
}
.page-default .page-hero .content {
max-width: 900px;
padding-right: 0;
}
.page-default .page-hero h1 {
font-size: clamp(2.2rem, 4.5vw, 4rem);
line-height: 1.06;
letter-spacing: -0.03em;
margin-bottom: 0;
}
.page-default .page-hero .description {
max-width: 540px;
margin-top: clamp(18px, 3vh, 28px);
} .page-default .section-page-content {
background: var(--color-cream);
color: var(--color-black);
padding: clamp(60px, 8vh, 100px) 0 clamp(130px, 16vh, 210px);
}
.page-default .page-content-wrap {
max-width: min(1040px, 88ch);
margin-left: auto;
margin-right: auto;
}
.page-default .page-content-body {
max-width: 720px;
margin: 0;
padding: 0;
} .page-default .page-content-body h2 {
font-size: clamp(1.45rem, 2.2vw, 1.75rem);
font-weight: 500;
color: var(--color-black);
margin-top: clamp(48px, 6vh, 72px);
margin-bottom: clamp(16px, 2vh, 24px);
letter-spacing: -0.02em;
line-height: 1.2;
}
.page-default .page-content-body h3 {
font-size: clamp(1.15rem, 1.4vw, 1.3rem);
font-weight: 500;
color: var(--color-black);
margin-top: clamp(32px, 4vh, 48px);
margin-bottom: clamp(12px, 1.5vh, 18px);
letter-spacing: -0.01em;
line-height: 1.3;
}
.page-default .page-content-body p {
font-size: 1.05rem;
line-height: 1.9;
color: rgba(0, 0, 0, 0.7);
}
.page-default .page-content-body p + p {
margin-top: clamp(16px, 2vh, 24px);
}
.page-default .page-content-body ul,
.page-default .page-content-body ol {
margin: clamp(16px, 2vh, 24px) 0;
padding-left: 1.5em;
}
.page-default .page-content-body li {
font-size: 1.05rem;
line-height: 1.9;
color: rgba(0, 0, 0, 0.7);
margin-bottom: 8px;
}
.page-default .page-content-body a {
color: var(--color-black);
text-decoration: underline;
text-underline-offset: 3px;
text-decoration-color: rgba(0, 0, 0, 0.25);
transition: text-decoration-color 0.3s ease;
}
.page-default .page-content-body a:hover {
text-decoration-color: var(--color-black);
}
.page-default .page-content-body blockquote {
margin: clamp(32px, 4vh, 48px) 0;
padding-left: clamp(20px, 3vw, 32px);
border-left: 2px solid rgba(0, 0, 0, 0.12);
}
.page-default .page-content-body blockquote p {
font-size: 1.12rem;
font-style: italic;
color: rgba(0, 0, 0, 0.6);
}
.page-default .page-content-body hr {
border: none;
border-top: 1px solid rgba(0, 0, 0, 0.08);
margin: clamp(40px, 5vh, 60px) 0;
}
.page-default .page-content-body table {
width: 100%;
border-collapse: collapse;
margin: clamp(24px, 3vh, 36px) 0;
font-size: 0.98rem;
}
.page-default .page-content-body th,
.page-default .page-content-body td {
padding: 12px 16px;
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
text-align: left;
line-height: 1.6;
color: rgba(0, 0, 0, 0.7);
}
.page-default .page-content-body th {
font-weight: 500;
color: var(--color-black);
} .page-default .page-meta {
margin-top: clamp(60px, 8vh, 90px);
padding-top: clamp(24px, 3vh, 36px);
border-top: 1px solid rgba(0, 0, 0, 0.08);
font-size: 0.88rem;
color: rgba(0, 0, 0, 0.55);
} @media (max-width: 768px) {
.page-default .page-hero {
min-height: 50vh;
padding-top: 122px;
padding-bottom: clamp(48px, 7vh, 72px);
}
.page-default .page-hero h1 {
font-size: clamp(1.85rem, 8.5vw, 2.8rem);
}
.page-default .page-content-wrap {
max-width: 100%;
}
.page-default .page-content-body {
max-width: 100%;
}
} .page-expertise-single {
--exp-single-space-section: clamp(112px, 14vh, 188px);
--exp-single-space-tight: clamp(82px, 10vh, 132px);
--exp-single-text-dark: rgba(224, 224, 220, 0.66);
--exp-single-text-light: rgba(0, 0, 0, 0.62);
}
.page-expertise-single .exp-hero {
padding: clamp(138px, 17vh, 200px) clamp(20px, 5vw, 80px) clamp(80px, 10vh, 120px);
min-height: 80vh;
display: flex;
flex-direction: column;
justify-content: space-between;
overflow: hidden;
border-bottom: 1px solid rgba(224, 224, 220, 0.08);
}
.page-expertise-single .exp-hero .content {
max-width: none;
padding-right: 0;
position: relative;
z-index: 2;
}
.page-expertise-single .exp-hero h1 {
font-size: clamp(2.4rem, 5vw, 4.8rem);
line-height: 1.05;
letter-spacing: -0.035em;
margin-bottom: 0;
max-width: 20ch;
}
.page-expertise-single .exp-hero-bottom {
width: min(100%, 680px);
margin-left: auto;
position: relative;
z-index: 2;
}
.page-expertise-single .exp-hero-bottom .description {
max-width: 44ch;
font-size: clamp(1.02rem, 1.2vw, 1.22rem);
line-height: 1.82;
color: rgba(224, 224, 220, 0.78);
}
.page-expertise-single .intro-section {
padding: 0;
background: transparent;
position: relative;
overflow: hidden;
}
.page-expertise-single .intro-section .container {
max-width: none;
padding-inline: 0;
}
.page-expertise-single .intro-grid {
position: relative;
min-height: clamp(620px, 86vh, 1020px);
display: flex;
align-items: center;
justify-content: flex-end;
padding: clamp(96px, 12vh, 164px) clamp(24px, 6vw, 92px);
}
.page-expertise-single .intro-left {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
z-index: 0;
pointer-events: none;
will-change: transform, opacity;
}
.page-expertise-single .intro-left.fade-in-left {
opacity: 1;
transform: translate3d(-96px, 0, 0);
transition-duration: 1.15s;
}
.page-expertise-single .intro-left.fade-in-left.visible {
transform: translate3d(0, 0, 0);
}
.page-expertise-single .intro-image {
width: 100%;
height: 100%;
overflow: hidden;
border-radius: 0;
position: relative;
box-shadow: none;
}
.page-expertise-single .intro-image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
transform: scale(1.08);
will-change: transform;
transition: transform 1.4s var(--ease-out-expo);
}
.page-expertise-single .intro-image.visible img {
transform: scale(1);
}
.page-expertise-single .intro-image.image-reveal::before {
background: var(--color-black);
}
.page-expertise-single .intro-image:hover img {
transform: scale(1.085);
}
.page-expertise-single .intro-image .placeholder-inner {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #e0e0de 0%, #d0d0ce 100%);
}
.page-expertise-single .intro-content h2 {
font-size: clamp(2.05rem, 3.8vw, 3.3rem);
line-height: 1.1;
letter-spacing: -0.03em;
max-width: 16ch;
margin: 0;
color: #000;
}
.page-expertise-single .intro-right {
position: relative;
z-index: 2;
width: min(100%, 620px);
margin-left: auto;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: clamp(44px, 6vh, 82px);
background: var(--color-cream);
padding: clamp(48px, 6vh, 80px) clamp(40px, 4vw, 72px);
}
.page-expertise-single .intro-right p {
max-width: 580px;
font-size: clamp(1.02rem, 1.1vw, 1.18rem);
line-height: 1.9;
color: var(--exp-single-text-light);
margin: 0;
}
.page-expertise-single .intro-right .intro-cta {
margin-top: 0;
font-weight: 400;
letter-spacing: 0.01em;
}
.page-expertise-single .section-detail-services {
padding: var(--exp-single-space-section) 0;
background: #1b1b1b;
}
.page-expertise-single .detail-services-header {
margin-bottom: clamp(70px, 10vh, 126px);
}
.page-expertise-single .detail-services-header h2 {
font-size: clamp(2rem, 3.7vw, 3.1rem);
line-height: 1.07;
letter-spacing: -0.03em;
max-width: 22ch;
}
.page-expertise-single .detail-services-grid {
gap: clamp(46px, 6.4vw, 88px) clamp(52px, 8vw, 118px);
}
.page-expertise-single .detail-service-card {
padding: clamp(8px, 1.4vh, 18px) 0 clamp(8px, 1.4vh, 14px) clamp(24px, 3.2vw, 42px);
border-left: 1px solid rgba(224, 224, 220, 0.1);
transition:
border-color 0.45s var(--ease-out-expo),
transform 0.45s var(--ease-out-expo);
}
.page-expertise-single .detail-service-card:hover {
transform: none;
border-left-color: rgba(224, 224, 220, 0.08);
}
.page-expertise-single .detail-service-card .card-number {
margin-bottom: 16px;
}
.page-expertise-single .detail-service-card h3 {
font-size: clamp(1.3rem, 2.1vw, 1.72rem);
margin-bottom: 16px;
line-height: 1.22;
}
.page-expertise-single .detail-service-card p {
line-height: 1.88;
color: var(--exp-single-text-dark);
}
.page-expertise-single .section-journal-link {
padding: var(--exp-single-space-section) 0;
background: #1b1b1b;
border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.page-expertise-single .journal-link-wrapper {
gap: clamp(54px, 8vw, 104px);
align-items: center;
}
.page-expertise-single .journal-link-image {
aspect-ratio: 4/5;
}
.page-expertise-single .journal-link-content h3 {
font-size: clamp(1.45rem, 2.55vw, 2.08rem);
line-height: 1.26;
}
.page-expertise-single .journal-link-content p {
line-height: 1.9;
color: var(--exp-single-text-dark);
}
.page-expertise-single .section-faq {
padding: var(--exp-single-space-section) 0;
background: #c2c2c2;
color: #000;
}
.page-expertise-single .section-faq .label {
color: rgba(0, 0, 0, 0.5);
}
.page-expertise-single .section-faq .faq-question h3 {
color: #000;
}
.page-expertise-single .section-faq .faq-toggle {
border-color: rgba(0, 0, 0, 0.25);
}
.page-expertise-single .section-faq .faq-toggle::before,
.page-expertise-single .section-faq .faq-toggle::after {
background: #000;
}
.page-expertise-single .section-faq .faq-item {
border-color: rgba(0, 0, 0, 0.12);
}
.page-expertise-single .faq-grid {
gap: clamp(56px, 8.8vw, 126px);
}
.page-expertise-single .faq-header h2 {
font-size: clamp(2rem, 3.6vw, 3rem);
line-height: 1.18;
letter-spacing: -0.025em;
color: #000;
}
.page-expertise-single .faq-question {
padding: clamp(26px, 3.4vh, 36px) 0;
}
.page-expertise-single .faq-question h3 {
font-size: clamp(0.98rem, 1.14vw, 1.08rem);
line-height: 1.48;
}
.page-expertise-single .faq-answer p {
line-height: 1.88;
color: rgba(0, 0, 0, 0.78);
margin-bottom: clamp(28px, 4vh, 44px);
}
.page-expertise-single .section-services {
padding: var(--exp-single-space-tight) 0 var(--exp-single-space-section);
background: #111;
border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.page-expertise-single .services-header {
margin-bottom: clamp(34px, 4.8vh, 58px);
}
.page-expertise-single .service-item {
gap: clamp(20px, 3.4vw, 34px);
padding: clamp(22px, 3.3vh, 36px) 0;
}
.page-expertise-single .service-item .name {
font-size: clamp(1.28rem, 2.7vw, 2.45rem);
line-height: 1.16;
}
.page-expertise-single .service-item.is-current {
opacity: 0.28;
}
.page-expertise-single .fade-up {
transform: translateY(24px);
transition-duration: 0.9s;
}
.page-expertise-single .stagger-children > * {
will-change: transform, opacity;
transform: translateY(18px);
transition-duration: 0.75s;
} .page-expertise-single .detail-services-grid.stagger-children > * {
transform: none;
transition-property: opacity;
transition-duration: 0.9s;
transition-timing-function: ease;
}
.page-expertise-single .detail-services-grid.stagger-children.visible > * {
transform: none;
} .page-expertise-single .faq-list.stagger-children > * {
transform: none;
transition-property: opacity;
transition-duration: 0.9s;
transition-timing-function: ease;
}
.page-expertise-single .faq-list.stagger-children.visible > * {
transform: none;
}
.page-expertise-single .faq-item:first-child {
border-top: none;
}
.page-expertise-single .faq-item:last-child {
border-bottom: none;
}
@media (max-width: 1024px) {
.page-expertise-single .exp-hero .content {
padding-right: 0;
}
.page-expertise-single .intro-grid {
min-height: clamp(560px, 76vh, 840px);
padding: clamp(80px, 11vh, 128px) clamp(20px, 5vw, 58px);
}
.page-expertise-single .intro-left {
width: 100%;
height: 100%;
}
.page-expertise-single .intro-image {
max-width: 100%;
height: 100%;
min-height: 0;
}
.page-expertise-single .detail-services-grid {
gap: 50px;
}
.page-expertise-single .faq-grid {
grid-template-columns: 1fr;
gap: 52px;
}
}
@media (max-width: 768px) {
.page-expertise-single .exp-hero {
padding-top: 122px;
padding-bottom: 72px;
min-height: auto;
justify-content: flex-start;
}
.page-expertise-single .exp-hero h1 {
font-size: clamp(1.75rem, 8.1vw, 2.74rem);
max-width: 100%;
}
.page-expertise-single .exp-hero-bottom {
margin-left: 0;
margin-top: clamp(36px, 5vh, 56px);
}
.page-expertise-single .section-detail-services,
.page-expertise-single .section-journal-link,
.page-expertise-single .section-faq,
.page-expertise-single .section-services {
padding: clamp(84px, 11vh, 122px) 0;
}
.page-expertise-single .intro-grid {
min-height: clamp(500px, 70vh, 700px);
padding: clamp(70px, 10vh, 110px) 20px;
}
.page-expertise-single .intro-content h2 {
max-width: 100%;
}
.page-expertise-single .intro-right {
width: 100%;
max-width: 100%;
gap: clamp(30px, 4.4vh, 52px);
}
.page-expertise-single .intro-right p {
font-size: 1rem;
}
.page-expertise-single .intro-image img {
object-position: right center;
}
.page-expertise-single .detail-services-grid {
gap: 42px;
}
.page-expertise-single .detail-service-card {
border-left: none;
padding-left: 0;
}
.page-expertise-single .section-services {
padding-top: clamp(72px, 10vh, 104px);
}
} .page-project-single {
--prj-section: clamp(112px, 14vh, 188px);
--prj-tight: clamp(80px, 10vh, 128px);
--prj-muted-dark: rgba(224, 224, 220, 0.7);
--prj-muted-light: rgba(0, 0, 0, 0.75);
} .page-project-single .page-hero.exp-hero {
min-height: 82vh;
padding-bottom: clamp(60px, 8vh, 100px);
}
.page-project-single .page-hero .content {
max-width: 1100px;
}
.page-project-single .page-hero h1 {
font-size: clamp(2.8rem, 6vw, 6.4rem);
line-height: 1.04;
letter-spacing: -0.04em;
margin-bottom: clamp(40px, 7vh, 72px);
max-width: 18ch;
text-wrap: balance;
}
.page-project-single .hero-meta {
display: flex;
gap: clamp(20px, 3.5vw, 40px);
font-size: 0.78rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--prj-muted-dark);
margin-top: 0;
}
.page-project-single .exp-hero-bottom {
margin-top: clamp(20px, 3vh, 32px);
}
.page-project-single .page-hero .description {
max-width: 560px;
font-size: clamp(1rem, 1.08vw, 1.14rem);
line-height: 1.84;
color: rgba(224, 224, 220, 0.68);
text-wrap: pretty;
} .page-project-single .project-hero-image {
position: relative;
width: calc(100% - var(--js-grid-pad) * 2);
max-width: var(--js-grid-max);
margin: 0 auto;
aspect-ratio: 16 / 9;
overflow: hidden;
border-radius: 4px;
opacity: 0;
transform: translateY(40px);
transition: opacity 1s var(--ease-out-expo) 0.2s, transform 1s var(--ease-out-expo) 0.2s;
}
.page-project-single .project-hero-image.visible {
opacity: 1;
transform: translateY(0);
}
.page-project-single .project-hero-image img {
position: absolute;
top: -15%;
left: 0;
width: 100%;
height: 130%;
object-fit: cover;
will-change: transform;
}
.page-project-single .project-hero-image .image-placeholder {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #1b1b1b 0%, #111 100%);
} .page-project-single .section-divider-image {
position: relative;
width: 100%;
height: clamp(620px, 72vw, 980px);
overflow: hidden;
background: #111;
}
.page-project-single .section-divider-image img {
position: absolute;
top: -25%;
left: 0;
width: 100%;
height: 150%;
object-fit: cover;
will-change: transform;
display: block;
}
.page-project-single .section-divider-image .divider-placeholder {
width: 100%;
height: 100%;
background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
} .page-project-single .overview-section {
padding: var(--prj-section) 0;
background: #f5f5f3;
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.page-project-single .overview-grid {
display: grid;
grid-template-columns: 1fr 1.8fr;
gap: clamp(48px, 7vw, 110px);
align-items: start;
} .page-project-single .overview-tags-col {
padding-top: 6px;
position: sticky;
top: 120px;
}
.page-project-single .overview-tags-label {
font-size: 0.75rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--prj-muted-light);
margin-bottom: 20px;
}
.page-project-single .overview-tags {
display: flex;
flex-direction: column;
gap: 0;
counter-reset: svc-counter;
}
.page-project-single .overview-tags span,
.page-project-single .overview-tags a {
display: flex;
align-items: baseline;
gap: 12px;
font-size: 0.88rem;
color: rgba(0, 0, 0, 0.62);
line-height: 1.5;
font-weight: 400;
padding: 9px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
counter-increment: svc-counter;
transition: color 0.25s, padding-left 0.25s;
cursor: default;
}
.page-project-single .overview-tags span:first-child,
.page-project-single .overview-tags a:first-child {
border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.page-project-single .overview-tags span::before,
.page-project-single .overview-tags a::before {
content: counter(svc-counter, decimal-leading-zero);
font-size: 0.68rem;
letter-spacing: 0.06em;
color: rgba(0, 0, 0, 0.28);
flex-shrink: 0;
min-width: 20px;
transition: color 0.25s;
}
.page-project-single .overview-tags span:hover,
.page-project-single .overview-tags a:hover {
color: rgba(0, 0, 0, 0.9);
padding-left: 4px;
}
.page-project-single .overview-tags span:hover::before,
.page-project-single .overview-tags a:hover::before {
color: rgba(0, 0, 0, 0.5);
}
.page-project-single .overview-tags a {
text-decoration: none;
cursor: pointer;
} .page-project-single .overview-tags-col .project-link {
display: inline-flex;
align-items: center;
gap: 6px;
margin-top: clamp(28px, 4vh, 40px);
font-size: 0.9rem;
color: rgba(0, 0, 0, 0.6);
text-decoration: none;
border-bottom: 1px solid rgba(0, 0, 0, 0.18);
padding-bottom: 2px;
transition: color 0.3s ease, border-color 0.3s ease;
white-space: nowrap;
}
.page-project-single .overview-tags-col .project-link:hover {
color: #000;
border-color: #000;
}
.page-project-single .overview-tags-col .project-link svg {
display: none;
} .page-project-single .overview-right {
padding-left: 0;
}
.page-project-single .overview-right h2 {
font-size: clamp(2.2rem, 4vw, 3.6rem);
line-height: 1.06;
letter-spacing: -0.035em;
color: #000;
margin-bottom: clamp(36px, 5vh, 56px);
max-width: 24ch;
text-wrap: balance;
} .page-project-single .overview-intro-text p:first-child {
font-size: clamp(1.1rem, 1.35vw, 1.32rem);
line-height: 1.75;
color: rgba(0, 0, 0, 0.78);
font-weight: 400;
max-width: 620px;
margin: 0;
text-wrap: pretty;
}
.page-project-single .overview-right p,
.page-project-single .overview-intro-text p {
font-size: clamp(0.95rem, 1vw, 1.08rem);
line-height: 1.9;
color: var(--prj-muted-light);
max-width: 620px;
margin: 0;
text-wrap: pretty;
}
.page-project-single .overview-intro-text p + p {
margin-top: clamp(18px, 2.6vh, 28px);
} .page-project-single .overview-right .project-link {
display: inline-flex;
align-items: center;
gap: 6px;
margin-top: clamp(22px, 3.5vh, 32px);
font-size: 0.9rem;
color: rgba(0, 0, 0, 0.6);
text-decoration: none;
border-bottom: 1px solid rgba(0, 0, 0, 0.18);
padding-bottom: 2px;
transition: color 0.3s ease, border-color 0.3s ease;
white-space: nowrap;
}
.page-project-single .overview-right .project-link:hover {
color: #000;
border-color: #000;
}
.page-project-single .overview-right .project-link svg {
display: none;
} .page-project-single .section-contenuto {
background: #1b1b1b;
padding-bottom: clamp(80px, 12vh, 140px);
} .page-project-single .prj-block-text {
padding: clamp(100px, 15vh, 180px) 0;
}
.page-project-single .prj-text-grid {
display: grid;
grid-template-columns: 220px 1fr;
gap: clamp(48px, 7vw, 110px);
align-items: start;
}
.page-project-single .prj-text-label {
padding-top: 8px;
font-size: 0.75rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--prj-muted-dark);
line-height: 1.6;
position: sticky;
top: 120px;
}
.page-project-single .prj-text-body h3 {
font-size: clamp(1.9rem, 3.4vw, 2.8rem);
line-height: 1.1;
letter-spacing: -0.03em;
margin-bottom: clamp(24px, 3.5vh, 36px);
color: rgba(255, 255, 255, 0.92);
max-width: 22ch;
text-wrap: balance;
}
.page-project-single .prj-text-body p,
.page-project-single .prj-text-corpo p {
font-size: clamp(1rem, 1.05vw, 1.14rem);
line-height: 1.92;
color: var(--prj-muted-dark);
max-width: 700px;
margin: 0;
text-wrap: pretty;
}
.page-project-single .prj-text-corpo p + p {
margin-top: clamp(18px, 2.4vh, 26px);
} .page-project-single .prj-block-text {
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.page-project-single .prj-block-text:last-of-type,
.page-project-single .prj-block-text:has(+ .prj-block-image),
.page-project-single .prj-block-text:has(+ .prj-block-sidebyside) {
border-bottom: none;
} .page-project-single .prj-block-image {
padding: clamp(20px, 3vh, 36px) clamp(20px, 5vw, 80px);
}
.page-project-single .prj-block-image img {
width: 100%;
aspect-ratio: 3 / 2;
object-fit: cover;
display: block;
}
.page-project-single .prj-block-image .img-placeholder {
width: 100%;
aspect-ratio: 3 / 2;
background: linear-gradient(135deg, #252525 0%, #1b1b1b 100%);
} .page-project-single .prj-block-sidebyside {
padding: clamp(40px, 5vh, 64px) clamp(20px, 5vw, 80px);
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(12px, 2vw, 24px);
}
.page-project-single .prj-sbs-img {
overflow: hidden;
line-height: 0;
}
.page-project-single .prj-sbs-img img {
width: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
display: block;
}
.page-project-single .prj-sbs-img .img-placeholder {
width: 100%;
aspect-ratio: 4 / 3;
background: #252525;
} .page-project-single .prj-block-marquee {
overflow: hidden;
padding: clamp(60px, 7.5vh, 104px) 0;
background: #f5f5f3;
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
cursor: default;
user-select: none;
}
.page-project-single .prj-marquee-track {
display: flex;
white-space: nowrap;
animation: prj-marquee-scroll 24s linear infinite;
}
.page-project-single .prj-marquee-track:hover {
animation-play-state: paused;
}
.page-project-single .prj-marquee-item {
display: inline-flex;
align-items: center;
gap: clamp(22px, 3vw, 52px);
font-size: clamp(3.4rem, 6.8vw, 8.5rem);
font-weight: 300;
letter-spacing: -0.04em;
line-height: 1;
color: rgba(0, 0, 0, 0.75);
padding-right: clamp(22px, 3vw, 52px);
}
.page-project-single .prj-marquee-sep {
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.18);
flex-shrink: 0;
}
@keyframes prj-marquee-scroll {
from { transform: translateX(0); }
to   { transform: translateX(-50%); }
} .page-project-single .section-related-expertise {
padding: var(--prj-section) 0;
background: #1b1b1b;
}
.page-project-single .section-related-expertise .section-label {
font-size: 0.75rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--prj-muted-dark);
margin-bottom: 14px;
}
.page-project-single .section-related-expertise .section-title {
font-size: clamp(2rem, 3.6vw, 3rem);
letter-spacing: -0.025em;
color: #e0e0dc;
line-height: 1.1;
margin-bottom: clamp(48px, 6.5vh, 80px);
}
.page-project-single .section-related-expertise .service-item .name {
font-size: clamp(1.3rem, 2.8vw, 2.5rem);
} .page-project-single .section-related-insights {
padding: var(--prj-section) 0;
background: #e8e8e5;
--prj-muted-light: rgba(0, 0, 0, 0.75);
}
.page-project-single .section-related-insights .container-wide {
max-width: none;
padding-inline: clamp(20px, 5vw, 80px);
}
.page-project-single .section-related-insights .insights-header {
display: flex;
align-items: flex-end;
justify-content: space-between;
margin-bottom: clamp(48px, 6.5vh, 82px);
gap: 24px;
}
.page-project-single .section-related-insights .section-label {
font-size: 0.75rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--prj-muted-light);
margin-bottom: 14px;
}
.page-project-single .section-related-insights .section-title {
font-size: clamp(1.9rem, 3.4vw, 2.9rem);
letter-spacing: -0.025em;
line-height: 1.1;
color: #000;
}
.page-project-single .section-related-insights .insights-all-link {
display: inline-flex;
align-items: center;
gap: 9px;
font-size: 0.82rem;
letter-spacing: 0.07em;
text-transform: uppercase;
color: var(--prj-muted-light);
text-decoration: none;
white-space: nowrap;
transition: color 0.3s;
flex-shrink: 0;
}
.page-project-single .section-related-insights .insights-all-link:hover {
color: #000;
}
.page-project-single .section-related-insights .insights-all-link svg {
width: 14px;
height: 14px;
transition: transform 0.3s var(--ease-out-expo);
}
.page-project-single .section-related-insights .insights-all-link:hover svg {
transform: translateX(4px);
}
.page-project-single .insights-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: clamp(24px, 3vw, 44px);
}
.page-project-single .insight-card {
text-decoration: none;
color: inherit;
display: flex;
flex-direction: column;
gap: 0;
transition: transform 0.5s var(--ease-out-expo);
}
.page-project-single .insight-card:hover {
transform: translateY(-5px);
}
.page-project-single .insight-card .ic-thumb {
aspect-ratio: 3 / 4;
overflow: hidden;
border-radius: 4px;
background: #e0dfdc;
margin-bottom: 22px;
}
.page-project-single .insight-card .ic-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.7s var(--ease-out-expo);
}
.page-project-single .insight-card:hover .ic-thumb img {
transform: scale(1.04);
}
.page-project-single .insight-card .ic-thumb-placeholder {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #e4e4e0 0%, #d8d8d4 100%);
}
.page-project-single .insight-card .ic-cat {
font-size: 0.72rem;
letter-spacing: 0.09em;
text-transform: uppercase;
color: var(--prj-muted-light);
margin-bottom: 10px;
}
.page-project-single .insight-card .ic-title {
font-size: clamp(1.05rem, 1.5vw, 1.28rem);
line-height: 1.32;
letter-spacing: -0.018em;
color: #000;
margin-bottom: 10px;
}
.page-project-single .insight-card .ic-subtitle {
font-size: 0.9rem;
line-height: 1.68;
color: var(--prj-muted-light);
flex: 1;
}
.page-project-single .insight-card .ic-meta {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 18px;
padding-top: 14px;
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.page-project-single .insight-card .ic-date {
font-size: 0.78rem;
letter-spacing: 0.04em;
color: var(--prj-muted-light);
}
.page-project-single .insight-card .ic-arrow {
width: 16px;
height: 16px;
color: rgba(0, 0, 0, 0.58);
transition: color 0.3s, transform 0.4s var(--ease-out-expo);
}
.page-project-single .insight-card:hover .ic-arrow {
color: #000;
transform: translateX(4px);
} .page-project-single .fade-up {
transform: translateY(24px);
transition-duration: 0.9s;
} .page-project-single .section-contenuto .stagger-children > *,
.page-project-single .section-related-expertise .stagger-children > * {
transform: none;
transition-property: opacity;
transition-duration: 0.9s;
transition-timing-function: ease;
} @media (max-width: 1024px) {
.page-project-single .page-hero.exp-hero {
min-height: 70vh;
}
.page-project-single .overview-grid {
grid-template-columns: 1fr 1.5fr;
gap: 40px;
}
.page-project-single .prj-text-grid {
grid-template-columns: 160px 1fr;
gap: 48px;
}
.page-project-single .insights-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.page-project-single .page-hero.exp-hero {
min-height: 80vh;
}
.page-project-single .page-hero h1 {
font-size: clamp(2rem, 9vw, 3rem);
max-width: 100%;
}
.page-project-single .hero-meta {
flex-wrap: wrap;
gap: 6px 16px;
}
.page-project-single .project-hero-image {
width: calc(100% - 40px);
aspect-ratio: 4 / 3;
}
.page-project-single .overview-section,
.page-project-single .section-related-expertise,
.page-project-single .section-related-insights {
padding: clamp(80px, 10vh, 116px) 0;
}
.page-project-single .overview-grid {
grid-template-columns: 1fr;
gap: 0;
} .page-project-single .overview-right {
order: 1;
padding-left: 0;
}
.page-project-single .overview-tags-col {
order: 2;
position: static;
margin-top: clamp(40px, 6vh, 60px);
padding-top: clamp(32px, 5vh, 48px);
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.page-project-single .prj-text-grid {
grid-template-columns: 1fr;
gap: 16px;
}
.page-project-single .prj-text-label {
padding-top: 0;
position: static;
}
.page-project-single .prj-block-text {
padding: clamp(64px, 8vh, 96px) 0;
}
.page-project-single .prj-block-sidebyside {
grid-template-columns: 1fr;
gap: 8px;
padding-top: clamp(32px, 5vh, 52px);
padding-bottom: clamp(32px, 5vh, 52px);
}
.page-project-single .prj-block-marquee {
padding: clamp(44px, 5.5vh, 72px) 0;
}
.page-project-single .prj-marquee-item {
font-size: clamp(2.4rem, 10vw, 4rem);
}
.page-project-single .insights-grid {
grid-template-columns: 1fr;
gap: 44px;
}
.page-project-single .section-related-insights .insights-header {
flex-direction: column;
align-items: flex-start;
}
} .page-journal-single {
--js-space-section: clamp(112px, 14vh, 188px);
--js-space-tight: clamp(78px, 10vh, 128px);
--js-space-article-bottom: clamp(148px, 19vh, 258px);
--js-grid-max: 1400px;
--js-grid-pad: clamp(20px, 5vw, 80px);
--js-text-light: rgba(0, 0, 0, 0.64);
} .page-journal-single .page-hero.page-hero--compact {
min-height: auto;
padding: clamp(160px, 20vh, 240px) 0 clamp(80px, 10vh, 120px);
}
.page-journal-single .page-hero .content {
width: min(100%, var(--js-grid-max));
margin: 0 auto;
padding-left: var(--js-grid-pad);
padding-right: var(--js-grid-pad);
max-width: 72%;
}
.page-journal-single .page-hero h1 {
font-size: clamp(2.2rem, 4.2vw, 3.8rem);
line-height: 1.06;
letter-spacing: -0.035em;
max-width: 20ch;
margin-bottom: 0;
text-wrap: balance;
}
.page-journal-single .page-hero .hero-lead {
max-width: 58ch;
margin-top: clamp(24px, 3.4vh, 36px);
font-size: clamp(1.04rem, 1.18vw, 1.22rem);
line-height: 1.84;
color: rgba(224, 224, 220, 0.62);
text-wrap: pretty;
} .page-journal-single .about-fv-image {
height: clamp(480px, 68vh, 820px);
} .page-journal-single .section-article {
padding: clamp(100px, 13vh, 168px) 0 var(--js-space-article-bottom);
background: var(--color-cream);
} .page-journal-single .article-wrap {
max-width: min(1040px, 88ch);
margin-left: auto;
margin-right: auto;
} .page-journal-single .article-byline {
display: flex;
align-items: center;
gap: 14px;
padding-bottom: clamp(28px, 4vh, 44px);
margin-bottom: clamp(44px, 6.5vh, 72px);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
font-size: 0.72rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: rgba(0, 0, 0, 0.52);
}
.page-journal-single .byline-sep {
opacity: 0.35;
}
.page-journal-single .article-body {
color: rgba(0, 0, 0, 0.78);
} .page-journal-single .article-body > p:first-child {
font-size: clamp(1.22rem, 1.5vw, 1.48rem);
line-height: 1.65;
font-weight: 400;
letter-spacing: -0.015em;
color: rgba(0, 0, 0, 0.88);
text-wrap: pretty;
}
.page-journal-single .article-heading {
font-size: clamp(1.45rem, 2.3vw, 1.82rem);
line-height: 1.34;
margin-bottom: clamp(30px, 4.2vh, 54px);
text-wrap: balance;
}
.page-journal-single .article-subtitle {
font-size: clamp(1.04rem, 1.24vw, 1.2rem);
line-height: 1.88;
color: rgba(0, 0, 0, 0.68);
margin-bottom: clamp(54px, 7.6vh, 96px);
text-wrap: pretty;
}
.page-journal-single .article-section {
margin-top: clamp(46px, 7vh, 76px);
}
.page-journal-single .article-section h3 {
font-size: clamp(1.24rem, 1.9vw, 1.46rem);
margin-bottom: clamp(18px, 2.8vh, 30px);
line-height: 1.28;
text-wrap: balance;
}
.page-journal-single .article-body p {
font-size: clamp(1.02rem, 1.1vw, 1.12rem);
line-height: 1.84;
color: var(--js-text-light);
text-wrap: pretty;
}
.page-journal-single .article-body > * {
margin-top: 0;
margin-bottom: 0;
}
.page-journal-single .article-body > * + * {
margin-top: clamp(18px, 2.4vh, 28px);
}
.page-journal-single .article-body > h2,
.page-journal-single .article-body > h3,
.page-journal-single .article-body > h4 {
color: rgba(0, 0, 0, 0.92);
letter-spacing: -0.03em;
line-height: 1.14;
text-wrap: balance;
}
.page-journal-single .article-body > h2 {
font-size: clamp(1.42rem, 2vw, 1.82rem);
font-weight: 400;
margin-top: clamp(56px, 8vh, 88px);
margin-bottom: clamp(12px, 1.8vh, 20px);
}
.page-journal-single .article-body > h3 {
font-size: clamp(1.22rem, 1.6vw, 1.48rem);
margin-top: clamp(36px, 5vh, 56px);
margin-bottom: clamp(10px, 1.6vh, 16px);
}
.page-journal-single .article-body > h4 {
font-size: clamp(1.08rem, 1.3vw, 1.26rem);
margin-top: clamp(28px, 4vh, 44px);
margin-bottom: clamp(8px, 1.4vh, 14px);
}
.page-journal-single .article-body p strong {
color: rgba(0, 0, 0, 0.88);
font-weight: 500;
}
.page-journal-single .article-body p em {
color: rgba(0, 0, 0, 0.78);
font-style: italic;
}
.page-journal-single .article-body a {
color: rgba(0, 0, 0, 0.84);
text-decoration: underline;
text-underline-offset: 3px;
text-decoration-thickness: 1px;
}
.page-journal-single .article-body ul,
.page-journal-single .article-body ol {
margin-left: 1.1em;
color: rgba(0, 0, 0, 0.68);
}
.page-journal-single .article-body ul {
list-style: disc;
}
.page-journal-single .article-body ol {
list-style: decimal;
}
.page-journal-single .article-body li + li {
margin-top: 0.58em;
}
.page-journal-single .article-body blockquote {
margin: clamp(34px, 5.2vh, 58px) 0;
padding: clamp(16px, 2.4vh, 22px) 0 clamp(16px, 2.4vh, 22px) clamp(20px, 2.2vw, 26px);
border-left: 1px solid rgba(0, 0, 0, 0.18);
}
.page-journal-single .article-body blockquote p {
font-size: clamp(1.16rem, 1.5vw, 1.36rem);
line-height: 1.58;
color: rgba(0, 0, 0, 0.8);
text-wrap: pretty;
}
.page-journal-single .article-body figure {
margin: clamp(34px, 5.2vh, 62px) 0;
}
.page-journal-single .article-body figcaption {
margin-top: 10px;
font-size: 0.82rem;
line-height: 1.55;
color: rgba(0, 0, 0, 0.5);
}  .page-journal-single .section-faq {
padding: clamp(100px, 13vh, 170px) 0;
}
.page-journal-single .faq-grid {
gap: clamp(56px, 8.8vw, 126px);
}
.page-journal-single .faq-header h2 {
font-size: clamp(2rem, 3.6vw, 3rem);
letter-spacing: -0.025em;
text-wrap: balance;
}
.page-journal-single .faq-question {
padding: clamp(26px, 3.4vh, 36px) 0;
}
.page-journal-single .faq-question h3 {
font-size: clamp(0.98rem, 1.14vw, 1.08rem);
line-height: 1.48;
text-wrap: balance;
}
.page-journal-single .faq-item.active .faq-answer {
padding-bottom: clamp(26px, 3.6vh, 42px);
}
.page-journal-single .faq-answer p {
line-height: 1.88;
color: rgba(0, 0, 0, 0.78);
margin-bottom: clamp(28px, 4vh, 44px);
text-wrap: pretty;
}
.page-journal-single .section-insights {
padding: var(--js-space-tight) 0 var(--js-space-section);
border-top: 1px solid rgba(224, 224, 220, 0.08);
background: var(--color-gray-dark);
}
.page-journal-single .insights-header {
margin-bottom: clamp(42px, 6vh, 74px);
}
.page-journal-single .insights-header h2 {
font-size: clamp(2rem, 3.8vw, 3.08rem);
line-height: 1.08;
text-wrap: balance;
}
.page-journal-single .insight-card h3 {
font-size: clamp(1.12rem, 1.6vw, 1.4rem);
line-height: 1.36;
text-wrap: balance;
}
.page-journal-single .fade-up {
transform: translateY(28px);
transition-duration: 0.86s;
}
@media (max-width: 1200px) {
.page-journal-single .article-wrap {
max-width: min(860px, 80ch);
}
}
@media (max-width: 1024px) {
.page-journal-single .page-hero.page-hero--compact {
padding-top: clamp(128px, 16vh, 190px);
padding-bottom: clamp(64px, 8vh, 100px);
}
.page-journal-single .page-hero .content {
max-width: 80%;
}
.page-journal-single .article-wrap {
max-width: 75%;
}
}
@media (max-width: 768px) {
.page-journal-single .page-hero.page-hero--compact {
padding-top: 122px;
padding-bottom: 56px;
}
.page-journal-single .page-hero .content {
padding-left: 20px;
padding-right: 20px;
max-width: 100%;
}
.page-journal-single .page-hero h1 {
font-size: clamp(1.74rem, 7.8vw, 2.62rem);
max-width: 100%;
}
.page-journal-single .about-fv-image {
height: clamp(280px, 50vw, 580px);
}
.page-journal-single .section-article,
.page-journal-single .section-insights,
.page-journal-single .section-faq {
padding: clamp(82px, 11vh, 118px) 0;
}
.page-journal-single .section-article {
padding-bottom: clamp(106px, 14vh, 164px);
}
.page-journal-single .faq-grid {
grid-template-columns: 1fr;
gap: 52px;
}
.page-journal-single .article-wrap {
max-width: 100%;
}
.page-journal-single .article-body > * + * {
margin-top: clamp(16px, 2.4vh, 24px);
}
.page-journal-single .article-body > h2 {
max-width: 100%;
font-size: clamp(1.32rem, 5vw, 1.68rem);
margin-top: clamp(44px, 6.4vh, 68px);
}
.page-journal-single .article-body > h3 {
max-width: 100%;
font-size: clamp(1.16rem, 4vw, 1.42rem);
margin-top: clamp(28px, 4vh, 44px);
}
}