*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--paper: #f6f3ec; --paper-2: #efebe1; --paper-3: #e5e0d3; --ink: #2a2620; --ink-soft: #4a4338;
--taupe: #6e685c; --taupe-light: #9b9384;
--bronze: #7a8770; --oxblood: #9a5e3a; --rule: rgba(42,38,32,.12);
--rule-soft: rgba(42,38,32,.06);
}
html, body {
background: var(--paper);
color: var(--ink);
font-family: 'Inter', sans-serif;
font-weight: 300;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
::selection { background: var(--ink); color: var(--paper); } body::before {
content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
opacity: .35;
background-image:
radial-gradient(circle at 20% 30%, rgba(139,111,71,.04) 0%, transparent 40%),
radial-gradient(circle at 80% 70%, rgba(28,26,35,.025) 0%, transparent 40%);
} .cursor {
position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
width: 8px; height: 8px;
background: var(--ink);
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width .35s, height .35s, background .35s;
mix-blend-mode: multiply;
}
.cursor.hover {
width: 56px; height: 56px;
background: rgba(139,111,71,.15);
}
@media (max-width: 900px) { .cursor { display: none; } }
body { cursor: default; } .topbar {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
padding: 26px 48px 22px;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
background: transparent;
border-bottom: 1px solid transparent;
transition: background .5s ease, border-color .5s ease,
padding .5s ease, backdrop-filter .5s ease;
}
.topbar.is-scrolled {
background: rgba(246,243,236,.86);
backdrop-filter: blur(14px) saturate(1.05);
-webkit-backdrop-filter: blur(14px) saturate(1.05);
border-bottom: 1px solid var(--rule-soft);
padding: 16px 48px 14px;
} .topbar-left { display: flex; align-items: center; }
.logo {
display: flex; align-items: center; gap: 14px;
color: var(--ink);
text-decoration: none;
}
.logo-cartouche {
width: 36px; height: 42px;
color: var(--ink);
flex-shrink: 0;
--logo-fg: var(--paper);
transition: width .4s ease, height .4s ease;
}
.topbar.is-scrolled .logo-cartouche { width: 30px; height: 35px; }
.logo-cartouche svg { width: 100%; height: 100%; display: block; }
.logo-text {
display: flex; flex-direction: column; line-height: 1;
}
.logo-name {
font-family: 'Inter', sans-serif;
font-size: 11px; font-weight: 500; letter-spacing: .32em;
text-transform: uppercase; color: var(--ink);
}
.logo-name em { font-style: normal; color: var(--bronze); padding: 0 4px; }
.logo-tag {
font-family: 'Cormorant Garamond', serif;
font-style: italic; font-size: 11px; font-weight: 400;
color: var(--taupe); margin-top: 5px; letter-spacing: .04em;
} .topbar-center { display: none; } .menu-trigger {
display: inline-flex; align-items: center; gap: 14px;
background: transparent; border: 0; cursor: pointer;
color: var(--ink);
font-family: 'Cormorant Garamond', serif;
font-size: 15px; font-style: italic; letter-spacing: .04em;
padding: 10px 4px;
transition: color .35s ease;
}
.menu-trigger:hover { color: var(--bronze); }
.menu-trigger-label { display: inline-block; }
.menu-trigger-lines {
display: inline-flex; flex-direction: column; gap: 5px;
width: 26px;
}
.menu-trigger-lines i {
display: block; height: 1px;
background: currentColor;
transform-origin: right center;
transition: width .4s cubic-bezier(.19,1,.22,1),
transform .4s cubic-bezier(.19,1,.22,1);
}
.menu-trigger-lines i:nth-child(1) { width: 100%; }
.menu-trigger-lines i:nth-child(2) { width: 60%; align-self: flex-end; }
.menu-trigger:hover .menu-trigger-lines i:nth-child(2) { width: 100%; } .topbar-right {
display: flex; align-items: center; justify-content: flex-end;
gap: 32px;
} .top-bureaux {
display: inline-flex; align-items: center;
gap: 18px;
font-family: 'Cormorant Garamond', serif;
font-size: 14px; font-style: italic;
letter-spacing: .04em;
}
.top-bureaux-sep {
display: inline-block;
width: 1px; height: 14px;
background: var(--rule);
}
.top-bureau {
color: var(--taupe);
text-decoration: none;
display: inline-flex; align-items: center; gap: 7px;
padding: 4px 0;
transition: color .35s ease;
position: relative;
}
.top-bureau::before {
content: ''; display: inline-block;
width: 4px; height: 4px; border-radius: 50%;
background: transparent;
transition: background .35s ease, box-shadow .35s ease;
}
.top-bureau:hover { color: var(--ink); }
.top-bureau.is-current {
color: var(--ink);
pointer-events: none;
}
.top-bureau.is-current::before {
background: var(--bronze);
box-shadow: 0 0 0 3px rgba(122,135,112,.18);
}
.top-bureau-ext { font-size: 11px; opacity: .7; font-style: normal; }
.top-bureau:hover .top-bureau-ext { opacity: 1; }
.top-cta {
font-family: 'Cormorant Garamond', serif;
font-size: 14px; font-style: italic; font-weight: 400;
color: var(--ink); text-decoration: none;
letter-spacing: .04em;
padding: 10px 20px 10px 22px;
border: 1px solid var(--ink);
border-radius: 999px;
display: inline-flex; align-items: center; gap: 10px;
transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.top-cta::after {
content: '→'; font-style: normal;
transition: transform .35s cubic-bezier(.19,1,.22,1);
}
.top-cta:hover {
background: var(--ink); color: var(--paper);
}
.top-cta:hover::after { transform: translateX(4px); } .menu-overlay {
position: fixed; inset: 0; z-index: 200;
pointer-events: none;
visibility: hidden;
}
.menu-overlay.is-open {
pointer-events: auto;
visibility: visible;
}
.menu-overlay-bg {
position: absolute; inset: 0;
background: var(--paper);
transform: translateY(-101%);
transition: transform .8s cubic-bezier(.7,0,.2,1);
}
.menu-overlay.is-open .menu-overlay-bg { transform: translateY(0); }
.menu-overlay-bg::before {
content: ''; position: absolute; inset: 0;
background-image:
radial-gradient(ellipse at 20% 10%, rgba(122,135,112,.08), transparent 50%),
radial-gradient(ellipse at 80% 90%, rgba(154,94,58,.06), transparent 55%);
opacity: 0;
transition: opacity 1s ease .3s;
}
.menu-overlay.is-open .menu-overlay-bg::before { opacity: 1; }
.menu-overlay-inner {
position: relative; z-index: 1;
min-height: 100vh; height: 100vh;
display: grid;
grid-template-rows: auto 1fr auto;
padding: 22px 48px 18px;
opacity: 0;
transition: opacity .4s ease;
overflow-y: auto;
}
.menu-overlay.is-open .menu-overlay-inner {
opacity: 1;
transition: opacity .4s ease .35s;
} .menu-head {
display: flex; align-items: center; justify-content: space-between;
}
.menu-close {
background: transparent; border: 0; cursor: pointer;
color: var(--ink);
font-family: 'Cormorant Garamond', serif;
font-size: 15px; font-style: italic; letter-spacing: .04em;
display: inline-flex; align-items: center; gap: 14px;
padding: 10px 4px;
transition: color .35s ease;
}
.menu-close:hover { color: var(--oxblood); }
.menu-close-x {
display: inline-flex; align-items: center; justify-content: center;
width: 28px; height: 28px;
border: 1px solid currentColor; border-radius: 50%;
font-style: normal; font-size: 18px; line-height: 1;
transition: transform .5s cubic-bezier(.19,1,.22,1);
}
.menu-close:hover .menu-close-x { transform: rotate(90deg); } .menu-body {
display: grid;
grid-template-columns: 1fr 340px;
gap: 64px;
align-items: center;
padding: 20px 0;
}
.menu-nav { display: flex; flex-direction: column; gap: 0; }
.menu-nav-group {
border-bottom: 1px solid var(--rule-soft);
padding: 2px 0;
}
.menu-nav-group:last-child { border-bottom: 0; }
.menu-sub {
list-style: none;
padding: 2px 0 14px 52px;
display: flex; flex-wrap: wrap;
gap: 6px 26px;
opacity: .88;
transition: opacity .3s ease;
}
.menu-nav-group:hover .menu-sub { opacity: 1; }
.menu-sub li { line-height: 1.35; }
.menu-sub a {
font-family: 'Cormorant Garamond', serif;
font-style: italic; font-size: 18px;
color: var(--ink); text-decoration: none;
letter-spacing: .01em;
transition: color .3s ease;
}
.menu-sub a:hover { color: var(--bronze); }
.menu-nav-item {
display: flex; align-items: baseline; gap: 32px;
text-decoration: none; color: var(--ink);
overflow: hidden;
padding: 6px 0 4px;
position: relative;
}
.menu-nav-item::after {
content: '→'; position: absolute; right: 8px; top: 50%;
transform: translate(-20px, -50%); opacity: 0;
font-size: 24px; color: var(--bronze);
transition: transform .5s cubic-bezier(.19,1,.22,1), opacity .4s ease;
}
.menu-nav-item:hover::after { transform: translate(0, -50%); opacity: 1; }
.menu-nav-item:hover .menu-name { color: var(--bronze); font-style: italic; }
.menu-num {
font-family: 'Cormorant Garamond', serif;
font-style: italic; font-size: 14px;
color: var(--taupe); letter-spacing: .1em;
flex: 0 0 32px;
}
.menu-name {
font-family: 'Cormorant Garamond', serif;
font-weight: 300; font-size: clamp(32px, 4.4vw, 58px);
line-height: 1.02; letter-spacing: -.02em;
transform: translateY(105%);
transition: transform 1s cubic-bezier(.19,1,.22,1),
color .4s ease;
display: inline-block;
}
.menu-overlay.is-open .menu-name { transform: translateY(0); }
.menu-overlay.is-open .menu-nav-group:nth-child(1) .menu-name { transition-delay: .45s; }
.menu-overlay.is-open .menu-nav-group:nth-child(2) .menu-name { transition-delay: .52s; }
.menu-overlay.is-open .menu-nav-group:nth-child(3) .menu-name { transition-delay: .59s; }
.menu-overlay.is-open .menu-nav-group:nth-child(4) .menu-name { transition-delay: .66s; }
.menu-overlay.is-open .menu-nav-group:nth-child(5) .menu-name { transition-delay: .73s; }
.menu-overlay.is-open .menu-nav-group:nth-child(6) .menu-name { transition-delay: .80s; } .menu-aside {
display: flex; flex-direction: column; gap: 40px;
border-left: 1px solid var(--rule);
padding-left: 48px;
opacity: 0; transform: translateY(20px);
transition: opacity .8s ease .8s, transform .8s ease .8s;
}
.menu-overlay.is-open .menu-aside { opacity: 1; transform: translateY(0); }
.menu-aside-block { display: flex; flex-direction: column; gap: 8px; }
.menu-aside-label {
font-family: 'Cormorant Garamond', serif;
font-style: italic; font-size: 13px;
color: var(--bronze); letter-spacing: .12em;
margin-bottom: 6px;
}
.menu-aside-line {
font-family: 'Cormorant Garamond', serif;
font-size: 17px; color: var(--ink-soft); line-height: 1.55;
}
.menu-aside-line a {
color: var(--ink); text-decoration: none;
border-bottom: 1px solid var(--rule);
padding-bottom: 1px;
transition: border-color .3s ease, color .3s ease;
}
.menu-aside-line a:hover { color: var(--bronze); border-color: var(--bronze); } .menu-foot {
display: flex; justify-content: space-between; align-items: center;
font-family: 'Cormorant Garamond', serif;
font-size: 13px; font-style: italic; color: var(--taupe);
letter-spacing: .04em;
padding-top: 20px; border-top: 1px solid var(--rule-soft);
opacity: 0;
transition: opacity .6s ease 1s;
}
.menu-overlay.is-open .menu-foot { opacity: 1; }
.menu-foot em { color: var(--ink-soft); }
body.menu-locked { overflow: hidden; }
.relative { position: relative; z-index: 1; } .hero {
min-height: calc(100vh - 40px); padding: 88px 48px 56px;
display: grid;
grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
gap: 80px; align-items: start;
position: relative;
overflow: visible;
box-sizing: border-box;
}
.hero-left { align-self: start; min-width: 0; overflow: visible; }
.hero-right {
align-self: start;
display: flex; flex-direction: column;
padding-top: 24px;
max-width: 460px;
position: relative;
}
.hero-right-pillars {
margin: 36px 0 40px;
padding: 28px 0 0;
border-top: 1px solid var(--rule);
}
.hero-right-pillars-label {
font-family: 'Cormorant Garamond', serif;
font-size: 12px;
font-style: italic;
color: var(--bronze);
letter-spacing: .14em;
text-transform: uppercase;
margin-bottom: 18px;
}
.hero-right-pillars-list {
list-style: none;
margin: 0; padding: 0;
display: flex;
flex-direction: column;
}
.hero-right-pillars-list li {
border-bottom: 1px solid var(--rule);
}
.hero-right-pillars-list li:last-child { border-bottom: none; }
.hero-right-pillars-list li a {
display: flex;
align-items: baseline;
gap: 18px;
padding: 14px 0;
text-decoration: none;
color: var(--ink);
font-family: 'Cormorant Garamond', serif;
font-size: 18px;
font-weight: 300;
transition: color .3s, padding .4s cubic-bezier(.19,1,.22,1);
}
.hero-right-pillars-list li a:hover {
color: var(--oxblood);
padding-left: 8px;
}
.hr-num {
font-family: 'Bodoni Moda', serif;
font-size: 11px;
font-style: italic;
color: var(--bronze);
letter-spacing: .08em;
min-width: 22px;
}
.hr-name { flex: 1; }
.hr-name em { font-style: italic; font-weight: 400; color: var(--bronze); }
.hero-right-rule {
width: 1px; height: 48px;
background: var(--bronze);
opacity: .5;
margin-bottom: 32px;
}
.hero-cta-primary-wrap { margin-top: 0; }
.hero-eyebrow {
font-family: 'Cormorant Garamond', serif;
font-size: 14px; font-style: italic; font-weight: 400;
color: var(--bronze); letter-spacing: .04em;
margin-bottom: 48px;
display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
content: ''; display: block; width: 32px; height: 1px;
background: var(--bronze);
}
.hero-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(56px, 6.4vw, 104px);
font-weight: 300; line-height: 1.08;
letter-spacing: -.015em;
color: var(--ink);
margin-bottom: 36px;
padding-top: .08em;
overflow: visible;
font-style: normal;
}
.hero-title em, .hero-title i { font-style: normal; } .hero-title .accent,
.hero-title .accent-strong {
font-style: normal;
font-weight: 400;
color: var(--ink);
}
.hero-body {
font-family: 'Cormorant Garamond', serif;
font-size: 20px; line-height: 1.6;
color: var(--ink); font-weight: 300;
max-width: 480px; margin-bottom: 56px;
}
.hero-body em { color: var(--ink); font-style: normal; font-weight: 400; }
.hero-body .hl { color: var(--ink); font-style: normal; font-weight: 400; }
.hero-ctas {
display: flex; align-items: center; gap: 40px;
}
.hero-cta-primary {
font-family: 'Cormorant Garamond', serif;
font-size: 17px; font-weight: 400; font-style: italic;
color: var(--paper); background: var(--ink);
padding: 20px 36px;
text-decoration: none;
transition: background .4s;
display: inline-flex; align-items: center; gap: 14px;
}
.hero-cta-primary:hover { background: var(--oxblood); }
.hero-cta-primary .arrow { font-style: normal; }
.hero-cta-link {
font-family: 'Cormorant Garamond', serif;
font-size: 17px; font-style: italic; color: var(--ink);
text-decoration: none;
border-bottom: 1px solid var(--ink);
padding-bottom: 3px;
align-self: flex-start;
margin-top: 28px;
display: inline-flex; align-items: baseline; gap: 10px;
transition: color .3s, border-color .3s, gap .3s;
}
.hero-cta-link:hover {
color: var(--oxblood);
border-bottom-color: var(--oxblood);
gap: 14px;
}
.hero-cta-link-arrow {
font-style: normal;
transition: transform .4s cubic-bezier(.19,1,.22,1);
}
.hero-cta-link:hover .hero-cta-link-arrow { transform: translateX(4px); }
.hero-body {
color: var(--ink) !important;
max-width: 100% !important;
margin-bottom: 0 !important;
}
.hero-body em, .hero-body .hl {
font-style: normal;
color: var(--ink);
font-weight: 400;
background: none;
-webkit-text-fill-color: currentColor;
} .hero-art {
position: relative;
aspect-ratio: 4/5;
background: var(--paper-2);
overflow: hidden;
display: flex; align-items: center; justify-content: center;
}
.hero-art-frame {
position: absolute; inset: 24px;
border: 1px solid rgba(139,111,71,.25);
pointer-events: none;
}
.hero-art-corners {
position: absolute; inset: 24px; pointer-events: none;
}
.hero-art-corners::before, .hero-art-corners::after {
content: ''; position: absolute; width: 8px; height: 8px;
border: 1px solid var(--bronze);
}
.hero-art-corners::before { top: -5px; left: -5px; border-right: none; border-bottom: none; }
.hero-art-corners::after { bottom: -5px; right: -5px; border-left: none; border-top: none; }
.hero-art-monogram {
position: relative;
width: clamp(160px, 24vw, 260px);
aspect-ratio: 716 / 848;
color: var(--ink);
--logo-fg: var(--paper);
filter: drop-shadow(0 30px 50px rgba(13,23,38,0.32));
}
.hero-art-monogram svg { width: 100%; height: 100%; display: block; }
.hero-art-caption {
position: absolute; bottom: 56px; left: 56px; right: 56px;
font-family: 'Cormorant Garamond', serif;
font-size: 13px; font-style: italic; color: var(--taupe);
text-align: center; letter-spacing: .05em;
}
.hero-art-stamp {
position: absolute; top: 56px; right: 56px;
width: 80px; height: 80px;
border: 1px solid var(--oxblood);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-family: 'Cormorant Garamond', serif;
font-size: 11px; font-style: italic; color: var(--oxblood);
text-align: center; line-height: 1.2; letter-spacing: .05em;
transform: rotate(-8deg);
} .hero-footer {
grid-column: 1 / -1;
padding-top: 80px;
border-top: 1px solid var(--rule);
display: flex; justify-content: space-between; align-items: center;
font-family: 'Cormorant Garamond', serif;
font-size: 14px; font-style: italic; color: var(--taupe);
}
.hero-footer-num {
font-family: 'Bodoni Moda', serif;
font-style: normal; font-weight: 700;
color: var(--ink); margin-right: 8px; font-size: 18px;
} .pause {
padding: 200px 48px;
text-align: center;
border-top: 1px solid var(--rule);
border-bottom: 1px solid var(--rule);
background: var(--paper-2);
}
.pause-text {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(36px, 4.5vw, 68px);
font-weight: 300; line-height: 1.2;
letter-spacing: -.015em;
color: var(--ink);
max-width: 1100px; margin: 0 auto;
}
.pause-text em { font-style: italic; color: var(--oxblood); }
.pause-attribution {
font-family: 'Cormorant Garamond', serif;
font-size: 14px; font-style: italic; color: var(--taupe);
margin-top: 56px; letter-spacing: .04em;
}
.pause-attribution::before {
content: ''; display: block;
width: 40px; height: 1px; background: var(--bronze);
margin: 0 auto 24px;
} .expertises {
padding: 200px 48px 160px;
}
.expertises-header {
display: grid; grid-template-columns: 1fr 1fr;
gap: 80px; align-items: flex-end;
margin-bottom: 120px;
}
.expertises-eyebrow {
font-family: 'Cormorant Garamond', serif;
font-size: 14px; font-style: italic; color: var(--bronze);
letter-spacing: .04em; margin-bottom: 32px;
display: flex; align-items: center; gap: 14px;
}
.expertises-eyebrow::before {
content: ''; display: block; width: 32px; height: 1px; background: var(--bronze);
}
.expertises-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(56px, 6vw, 96px);
font-weight: 300; line-height: .98;
letter-spacing: -.02em; color: var(--ink);
}
.expertises-title em { font-style: italic; color: var(--ink); }
.expertises-intro {
font-family: 'Cormorant Garamond', serif;
font-size: 18px; font-style: italic;
line-height: 1.7; color: var(--taupe);
max-width: 460px; padding-bottom: 12px;
} .ex-list { border-top: 1px solid var(--rule); }
.ex-row {
display: grid; grid-template-columns: 100px 1fr 280px 60px;
gap: 60px; align-items: baseline;
padding: 56px 0;
border-bottom: 1px solid var(--rule);
transition: padding .5s cubic-bezier(.77,0,.18,1);
position: relative;
}
.ex-row::before {
content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
height: 1px; background: var(--ink); transform: scaleX(0);
transform-origin: left;
transition: transform .6s cubic-bezier(.77,0,.18,1);
}
.ex-row:hover { padding-left: 24px; }
.ex-row:hover::before { transform: scaleX(1); }
.ex-num {
font-family: 'Bodoni Moda', serif;
font-size: 14px; font-style: italic; font-weight: 400;
color: var(--bronze); letter-spacing: .05em;
}
.ex-name {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(32px, 3.5vw, 52px);
font-weight: 300; line-height: 1; letter-spacing: -.01em;
color: var(--ink);
}
.ex-name em { font-style: italic; }
.ex-desc {
font-family: 'Cormorant Garamond', serif;
font-size: 15px; font-style: italic;
line-height: 1.55; color: var(--taupe);
}
.ex-arrow {
font-family: 'Cormorant Garamond', serif;
font-size: 24px; color: var(--ink); text-align: right;
font-style: italic; opacity: .4;
transition: opacity .4s, transform .4s;
}
.ex-row:hover .ex-arrow { opacity: 1; transform: translateX(8px); color: var(--oxblood); } .ex-pole {
grid-template-columns: 100px 1fr 420px 60px;
padding: 72px 0;
align-items: flex-start;
}
.ex-pole:hover { padding-left: 0; }
.ex-pole .ex-lead {
margin-bottom: 18px;
display: flex; flex-direction: column; gap: 4px;
}
.ex-pole .ex-lead-primary {
font-family: 'Bodoni Moda', serif;
font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
color: var(--bronze);
}
.ex-pole .ex-lead-primary em { font-style: normal; opacity: .5; margin: 0 .25em; }
.ex-pole .ex-lead-secondary {
font-family: 'Cormorant Garamond', serif;
font-size: 13px; font-style: italic;
color: var(--taupe);
letter-spacing: .02em;
}
.ex-pole .ex-lead-secondary em { font-style: normal; opacity: .5; margin: 0 .2em; }
.ex-pole .ex-desc {
font-style: normal;
font-size: 16px; line-height: 1.6;
color: var(--ink-soft);
}
.ex-pole .ex-links {
margin-top: 22px;
display: flex; flex-direction: column; gap: 8px;
}
.ex-pole .ex-links a {
font-family: 'Cormorant Garamond', serif;
font-size: 15px; font-style: italic;
color: var(--ink); text-decoration: none;
border-bottom: 1px solid transparent;
transition: color .3s, border-color .3s;
align-self: flex-start;
padding-bottom: 2px;
}
.ex-pole .ex-links a:hover {
color: var(--oxblood);
border-bottom-color: var(--oxblood);
} .oeuvre {
background: var(--paper-2);
color: var(--ink);
padding: 220px 48px 200px;
position: relative;
overflow: hidden;
border-top: 1px solid var(--rule-soft);
border-bottom: 1px solid var(--rule-soft);
}
.oeuvre::before {
content: ''; position: absolute; inset: 0;
background:
radial-gradient(ellipse at 18% 12%, rgba(122,135,112,0.08), transparent 55%),
radial-gradient(ellipse at 88% 88%, rgba(154,94,58,0.06), transparent 60%);
pointer-events: none;
}
.oeuvre-eyebrow {
display: flex; align-items: center; justify-content: center;
gap: 18px;
font-family: 'Inter', sans-serif;
font-size: 10px; font-weight: 500;
text-transform: uppercase;
letter-spacing: .42em;
color: var(--bronze);
margin-bottom: 110px;
}
.oeuvre-rule { display: inline-block; width: 48px; height: 1px; background: var(--bronze); opacity: .55; }
.oeuvre-num {
font-family: 'Bodoni Moda', serif;
font-style: italic; font-weight: 400;
font-size: 14px; letter-spacing: .05em;
color: var(--ink-soft); text-transform: none;
margin-left: 6px;
}
.oeuvre-statement {
max-width: 1100px; margin: 0 auto;
text-align: center;
font-family: 'Cormorant Garamond', serif;
font-weight: 300;
font-size: clamp(60px, 10vw, 168px);
line-height: .98; letter-spacing: -.025em;
color: var(--ink);
}
.oeuvre-statement em {
font-style: italic; font-weight: 400;
color: var(--bronze);
position: relative;
}
.oeuvre-statement em::after {
content: ''; position: absolute;
left: 4%; right: 4%; bottom: -.04em;
height: 1px; background: var(--bronze); opacity: .35;
transform: scaleX(0); transform-origin: 0 50%;
transition: transform 1.4s cubic-bezier(.19,1,.22,1) .4s;
}
.oeuvre.in .oeuvre-statement em::after { transform: scaleX(1); }
.os-line {
display: block; overflow: hidden;
padding-bottom: .04em;
}
.os-line {
opacity: 0;
transform: translateY(40%);
transition: opacity 1.1s ease, transform 1.3s cubic-bezier(.19,1,.22,1);
}
.oeuvre.in .os-line { opacity: 1; transform: translateY(0); }
.oeuvre.in .os-line:nth-child(1) { transition-delay: 0s; }
.oeuvre.in .os-line:nth-child(2) { transition-delay: .12s; }
.oeuvre.in .os-line:nth-child(3) { transition-delay: .24s; }
.oeuvre.in .os-line:nth-child(4) { transition-delay: .36s; }
.oeuvre-frame {
position: relative;
width: 100%;
max-width: 880px;
aspect-ratio: 4 / 3;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
}
.oeuvre-wash {
position: absolute; inset: -8%;
width: 116%; height: 116%;
z-index: 1;
filter: blur(14px);
animation: oeuvre-breathe 14s ease-in-out infinite;
}
@keyframes oeuvre-breathe {
0%, 100% { transform: scale(1) rotate(0deg); }
50% { transform: scale(1.06) rotate(-1.5deg); }
}
.oeuvre-stroke {
position: absolute; inset: 0;
width: 100%; height: 100%;
z-index: 2;
pointer-events: none;
}
.oeuvre-stroke path {
stroke-dasharray: 1200;
stroke-dashoffset: 1200;
animation: stroke-draw 3.6s cubic-bezier(0.65,0,0.35,1) 0.4s forwards;
}
.oeuvre-stroke path:nth-child(2) { animation-delay: 1.2s; animation-duration: 3.2s; }
@keyframes stroke-draw {
to { stroke-dashoffset: 0; }
}
.oeuvre-glyph {
position: relative;
z-index: 3;
width: clamp(320px, 44vw, 540px);
aspect-ratio: 410 / 365;
display: flex; align-items: center; justify-content: center;
color: var(--bronze);
filter: drop-shadow(0 0 40px rgba(164,137,90,0.28));
animation: oeuvre-fade 2s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.oeuvre-glyph svg { width: 100%; height: 100%; display: block; }
@keyframes oeuvre-fade {
from { opacity: 0; transform: scale(0.94); filter: drop-shadow(0 0 40px rgba(164,137,90,0)) blur(6px); }
to { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 40px rgba(164,137,90,0.25)) blur(0); }
}
.oeuvre-mark {
position: absolute; z-index: 4;
bottom: 18px; right: 24px;
font-family: 'Cormorant Garamond', serif;
font-style: italic; font-weight: 400;
font-size: 13px;
letter-spacing: 0.42em;
color: var(--bronze);
opacity: 0.7;
}
.oeuvre-mark em { font-style: normal; opacity: 0.55; margin: 0 1px; }
.oeuvre-corner {
position: absolute; width: 16px; height: 16px; z-index: 4;
border-color: var(--bronze); opacity: 0.4;
}
.oeuvre-corner-tl { top: 0; left: 0; border-top: 1px solid; border-left: 1px solid; }
.oeuvre-corner-tr { top: 0; right: 0; border-top: 1px solid; border-right: 1px solid; }
.oeuvre-corner-bl { bottom: 0; left: 0; border-bottom: 1px solid; border-left: 1px solid; }
.oeuvre-corner-br { bottom: 0; right: 0; border-bottom: 1px solid; border-right: 1px solid; }
.oeuvre-caption {
text-align: center;
margin-top: 90px;
font-family: 'Cormorant Garamond', serif;
font-style: italic;
font-weight: 300;
font-size: 15px;
letter-spacing: 0.04em;
color: var(--paper);
opacity: 0.55;
line-height: 1.9;
max-width: 520px;
margin-left: auto; margin-right: auto;
position: relative;
}
.oeuvre-caption em { font-style: italic; color: var(--bronze); opacity: 0.95; }
.caption-rule {
display: block;
width: 28px; height: 1px;
background: var(--bronze);
margin: 0 auto 26px;
opacity: 0.5;
} .heritage {
padding: 180px 48px;
background: var(--paper-3);
border-top: 1px solid var(--rule);
border-bottom: 1px solid var(--rule);
text-align: center;
position: relative;
overflow: hidden;
}
.heritage-eyebrow {
font-family: 'Cormorant Garamond', serif;
font-size: 13px; font-style: italic; color: var(--bronze);
letter-spacing: .15em; margin-bottom: 48px;
}
.heritage-num {
font-family: 'Bodoni Moda', serif;
font-size: clamp(180px, 32vw, 480px);
font-weight: 900; line-height: .85;
color: var(--ink); letter-spacing: -.06em;
font-variation-settings: 'opsz' 96;
display: block; margin: 0 auto;
}
.heritage-flourish {
width: 80px; height: 1px; background: var(--bronze);
margin: 56px auto 0;
position: relative;
}
.heritage-flourish::before, .heritage-flourish::after {
content: '◆'; position: absolute;
color: var(--bronze); font-size: 8px;
top: 50%; transform: translateY(-50%);
}
.heritage-flourish::before { left: -20px; }
.heritage-flourish::after { right: -20px; }
.heritage-quote {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(26px, 3vw, 42px);
font-weight: 300; font-style: italic;
line-height: 1.35; color: var(--ink);
max-width: 900px; margin: 64px auto 0;
letter-spacing: -.01em;
}
.heritage-quote .hl { color: var(--oxblood); font-style: italic; }
.heritage-attr {
font-family: 'Cormorant Garamond', serif;
font-size: 14px; font-style: italic;
color: var(--taupe); margin-top: 40px; letter-spacing: .04em;
} .chiffres {
padding: 180px 48px;
display: grid; grid-template-columns: repeat(4, 1fr);
gap: 0;
}
.chiffre {
padding: 0 32px;
border-right: 1px solid var(--rule);
text-align: left;
}
.chiffre:last-child { border-right: none; }
.chiffre-num {
font-family: 'Bodoni Moda', serif;
font-size: clamp(80px, 9vw, 140px);
font-weight: 700; line-height: .95;
color: var(--ink); letter-spacing: -.04em;
font-variation-settings: 'opsz' 96;
margin-bottom: 32px;
}
.chiffre-num em {
font-style: italic; font-weight: 400; color: var(--bronze);
font-size: .6em; vertical-align: super;
}
.chiffre-label {
font-family: 'Cormorant Garamond', serif;
font-size: 17px; font-style: italic; color: var(--ink-soft);
line-height: 1.5; max-width: 220px;
} .team {
padding: 200px 48px;
border-top: 1px solid var(--rule);
background: var(--paper-2);
}
.team-header {
display: grid; grid-template-columns: 1fr 1fr;
gap: 80px; margin-bottom: 120px;
align-items: flex-end;
}
.team-eyebrow {
font-family: 'Cormorant Garamond', serif;
font-size: 14px; font-style: italic; color: var(--bronze);
letter-spacing: .04em; margin-bottom: 32px;
display: flex; align-items: center; gap: 14px;
}
.team-eyebrow::before {
content: ''; display: block; width: 32px; height: 1px; background: var(--bronze);
}
.team-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(56px, 6vw, 96px);
font-weight: 300; line-height: .98;
letter-spacing: -.02em; color: var(--ink);
}
.team-title em { font-style: italic; }
.team-intro {
font-family: 'Cormorant Garamond', serif;
font-size: 18px; font-style: italic; line-height: 1.7;
color: var(--taupe); max-width: 460px; padding-bottom: 12px;
}
.team-grid {
display: grid; grid-template-columns: repeat(4, 1fr);
gap: 40px;
}
.team-card {
cursor: pointer;
}
.team-photo {
aspect-ratio: 3/4;
background: var(--paper-3);
margin-bottom: 28px; position: relative; overflow: hidden;
border: 1px solid var(--rule);
transition: transform .6s cubic-bezier(.77,0,.18,1);
}
.team-card:hover .team-photo { transform: translateY(-8px); }
.team-photo img {
position: absolute; inset: 0;
width: 100%; height: 100%;
object-fit: cover; object-position: center 20%; filter: saturate(1.18) contrast(1.02) sepia(.08) brightness(1.02);
transition: filter .6s ease, transform .8s cubic-bezier(.77,0,.18,1);
}
.team-card:hover .team-photo img {
filter: saturate(1.28) contrast(1.04) sepia(.04) brightness(1.03);
transform: scale(1.04);
}
.team-photo-bg {
position: absolute; inset: 0;
background:
radial-gradient(circle at 35% 35%, rgba(139,111,71,.15) 0%, transparent 60%),
linear-gradient(180deg, var(--paper-3) 0%, #d8d0bb 100%);
}
.team-photo-letter {
position: absolute; top: 50%; left: 50%;
transform: translate(-50%, -50%);
font-family: 'Bodoni Moda', serif;
font-size: 200px; font-weight: 400; font-style: italic;
color: rgba(28,26,35,.18); line-height: 1; letter-spacing: -.04em;
font-variation-settings: 'opsz' 96;
transition: color .5s;
}
.team-card:hover .team-photo-letter { color: rgba(107,31,36,.5); }
.team-photo-stamp {
position: absolute; bottom: 20px; right: 20px;
font-family: 'Cormorant Garamond', serif;
font-size: 10px; font-style: italic;
color: var(--taupe); letter-spacing: .1em;
}
.team-name {
font-family: 'Cormorant Garamond', serif;
font-size: 24px; font-weight: 400; color: var(--ink);
letter-spacing: -.005em;
margin-bottom: 6px;
}
.team-role {
font-family: 'Cormorant Garamond', serif;
font-size: 16px; font-style: italic; color: var(--bronze);
letter-spacing: .015em; margin-bottom: 14px;
font-weight: 500;
}
.team-expertise {
font-family: 'Inter', sans-serif;
font-size: 13px; font-weight: 300;
color: var(--ink-soft); line-height: 1.65;
letter-spacing: .005em;
}
.team-coda {
margin-top: 80px;
display: flex; align-items: center; justify-content: center;
gap: 28px;
text-align: center;
}
.team-coda-rule {
flex: 0 0 80px; height: 1px; background: var(--rule);
}
.team-coda-text {
font-family: 'Cormorant Garamond', serif;
font-size: 17px; color: var(--ink-soft);
letter-spacing: .01em; line-height: 1.7;
max-width: 600px;
}
.team-coda-text em {
font-style: italic; color: var(--bronze); font-weight: 500;
} .press {
padding: 140px 48px;
text-align: center;
}
.press-eyebrow {
font-family: 'Cormorant Garamond', serif;
font-size: 13px; font-style: italic; color: var(--bronze);
letter-spacing: .15em; margin-bottom: 48px;
}
.press-quote {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(28px, 3.2vw, 44px);
font-weight: 300; font-style: italic;
line-height: 1.4; color: var(--ink);
max-width: 1000px; margin: 0 auto;
letter-spacing: -.005em;
}
.press-quote::before, .press-quote::after {
color: var(--bronze); font-weight: 400; opacity: .6;
}
.press-quote::before { content: '“ '; }
.press-quote::after { content: ' ”'; }
.press-source {
font-family: 'Cormorant Garamond', serif;
font-size: 14px; font-style: italic; color: var(--taupe);
margin-top: 48px;
display: flex; align-items: center; justify-content: center; gap: 14px;
}
.press-source::before, .press-source::after {
content: ''; display: block; width: 32px; height: 1px;
background: var(--bronze);
}
.press-logos {
display: flex; justify-content: center; align-items: center;
gap: 72px; margin-top: 80px;
font-family: 'Bodoni Moda', serif;
font-size: 16px; font-weight: 700; font-style: italic;
color: var(--taupe-light); letter-spacing: .02em;
font-variation-settings: 'opsz' 96;
}
.press-logos span { transition: color .3s; }
.press-logos span:hover { color: var(--ink); } .manifesto {
padding: 200px 48px;
background: var(--paper-2);
border-top: 1px solid var(--rule);
}
.manifesto-grid {
display: grid; grid-template-columns: 320px 1fr;
gap: 100px; max-width: 1500px; margin: 0 auto;
align-items: flex-start;
}
.manifesto-side {
position: sticky; top: 140px;
}
.manifesto-side-num {
font-family: 'Bodoni Moda', serif;
font-size: 96px; font-weight: 400; font-style: italic;
color: var(--bronze); line-height: 1;
letter-spacing: -.03em; margin-bottom: 24px;
font-variation-settings: 'opsz' 96;
}
.manifesto-side-label {
font-family: 'Cormorant Garamond', serif;
font-size: 16px; font-style: italic; color: var(--taupe);
line-height: 1.5;
}
.manifesto-text {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(28px, 3vw, 42px);
font-weight: 300; line-height: 1.35;
color: var(--ink); letter-spacing: -.01em;
}
.manifesto-text em {
font-style: italic; color: var(--oxblood);
}
.manifesto-text p { margin-bottom: 48px; }
.manifesto-text p:last-child { margin-bottom: 0; } .offices {
padding: 200px 48px 80px;
border-top: 1px solid var(--rule);
}
.offices-header {
text-align: center;
margin-bottom: 120px;
}
.offices-eyebrow {
font-family: 'Cormorant Garamond', serif;
font-size: 13px; font-style: italic; color: var(--bronze);
letter-spacing: .15em; margin-bottom: 32px;
}
.offices-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(56px, 6vw, 96px);
font-weight: 300; line-height: .98;
letter-spacing: -.02em; color: var(--ink);
}
.offices-title em { font-style: italic; }
.offices-grid {
display: grid; grid-template-columns: repeat(2, 1fr);
gap: 1px; background: var(--rule);
border: 1px solid var(--rule);
}
.office {
background: var(--paper);
padding: 80px 56px;
display: grid; grid-template-columns: 1fr 1fr;
gap: 40px; align-items: flex-start;
transition: background .4s;
}
.office:hover { background: var(--paper-2); }
.office-left { }
.office-name {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(48px, 5vw, 88px);
font-weight: 300; line-height: .95;
letter-spacing: -.02em; color: var(--ink);
margin-bottom: 16px;
}
.office-name em { font-style: italic; color: var(--oxblood); }
.office-coord {
font-family: 'Bodoni Moda', serif;
font-size: 12px; font-style: italic; color: var(--taupe-light);
letter-spacing: .08em;
}
.office-right { padding-top: 24px; }
.office-label {
font-family: 'Cormorant Garamond', serif;
font-size: 13px; font-style: italic; color: var(--bronze);
letter-spacing: .08em; margin-bottom: 20px;
}
.office-addr {
font-family: 'Cormorant Garamond', serif;
font-size: 19px; font-weight: 400; color: var(--ink);
line-height: 1.5; margin-bottom: 24px;
}
.office-contact {
font-family: 'Cormorant Garamond', serif;
font-size: 15px; font-style: italic; color: var(--taupe);
line-height: 1.7;
}
.office-contact a { color: var(--taupe); text-decoration: none;
border-bottom: 1px solid transparent; transition: border-color .3s, color .3s; }
.office-contact a:hover { color: var(--ink); border-bottom-color: var(--bronze); }
.offices-secondary {
display: flex; justify-content: center; gap: 60px;
margin-top: 80px;
font-family: 'Cormorant Garamond', serif;
font-size: 18px; font-style: italic;
color: var(--taupe);
}
.offices-secondary span {
display: flex; align-items: center; gap: 12px;
}
.offices-secondary span::before {
content: '◆'; color: var(--bronze); font-size: 7px;
} .final {
padding: 200px 48px;
background: var(--paper-3);
text-align: center;
border-top: 1px solid var(--rule);
}
.final-eyebrow {
font-family: 'Cormorant Garamond', serif;
font-size: 13px; font-style: italic; color: var(--bronze);
letter-spacing: .2em; margin-bottom: 64px;
}
.final-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(64px, 8vw, 144px);
font-weight: 300; line-height: .95;
letter-spacing: -.025em; color: var(--ink);
max-width: 1300px; margin: 0 auto 80px;
}
.final-title em { font-style: italic; color: var(--oxblood); }
.final-card {
display: inline-flex; align-items: center; gap: 56px;
background: var(--paper);
padding: 48px 64px;
border: 1px solid var(--rule);
}
.final-card-text {
text-align: left;
}
.final-card-line1 {
font-family: 'Cormorant Garamond', serif;
font-size: 20px; font-style: italic; color: var(--taupe);
margin-bottom: 4px;
}
.final-card-line2 {
font-family: 'Cormorant Garamond', serif;
font-size: 28px; font-weight: 400; color: var(--ink);
letter-spacing: -.005em;
}
.final-card-btn {
font-family: 'Cormorant Garamond', serif;
font-size: 17px; font-style: italic;
color: var(--paper); background: var(--ink);
padding: 22px 40px; text-decoration: none;
transition: background .4s;
}
.final-card-btn:hover { background: var(--oxblood); } .footer {
padding: 100px 48px 40px;
border-top: 1px solid var(--rule);
}
.footer-grid {
display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
gap: 60px; margin-bottom: 80px;
}
.footer-brand {
display: flex; align-items: center; gap: 16px;
color: var(--ink);
}
.footer-brand-mark {
width: 54px; height: 64px;
color: var(--ink);
--logo-fg: var(--paper);
flex-shrink: 0;
}
.footer-brand-mark svg { width: 100%; height: 100%; display: block; }
.footer-brand-name {
font-family: 'Inter', sans-serif;
font-size: 13px; font-weight: 500; letter-spacing: .3em;
text-transform: uppercase; color: var(--ink);
line-height: 1.5;
}
.footer-tagline {
font-family: 'Cormorant Garamond', serif;
font-size: 16px; font-style: italic; color: var(--taupe);
line-height: 1.7; margin-top: 16px; max-width: 360px;
}
.footer-col-title {
font-family: 'Cormorant Garamond', serif;
font-size: 13px; font-style: italic; color: var(--bronze);
letter-spacing: .08em; margin-bottom: 24px;
}
.footer-col-link {
display: block;
font-family: 'Cormorant Garamond', serif;
font-size: 16px; color: var(--ink-soft);
text-decoration: none; margin-bottom: 12px;
transition: color .3s, font-style .3s;
}
.footer-col-link:hover { color: var(--oxblood); font-style: italic; }
.footer-bottom {
display: flex; justify-content: space-between; align-items: center;
padding-top: 40px; border-top: 1px solid var(--rule);
font-family: 'Cormorant Garamond', serif;
font-size: 13px; font-style: italic; color: var(--taupe-light);
}
.footer-bottom-brand {
font-family: 'Bodoni Moda', serif;
font-size: 14px; font-style: italic; color: var(--bronze);
letter-spacing: .05em;
} .annotation {
padding: 100px 48px;
background: var(--ink); color: var(--paper);
}
.annotation-title {
font-family: 'Cormorant Garamond', serif;
font-size: 13px; font-style: italic; color: var(--bronze);
letter-spacing: .15em; margin-bottom: 48px;
}
.annotation-grid {
display: grid; grid-template-columns: repeat(4, 1fr);
gap: 56px; margin-bottom: 56px;
}
.annot-label {
font-family: 'Cormorant Garamond', serif;
font-size: 13px; font-style: italic; color: var(--bronze);
letter-spacing: .05em; margin-bottom: 12px;
}
.annot-value {
font-family: 'Cormorant Garamond', serif;
font-size: 18px; line-height: 1.5; color: var(--paper);
font-weight: 300;
}
.annot-value em { font-style: italic; }
.annot-score {
font-family: 'Bodoni Moda', serif;
font-size: 56px; font-weight: 700; font-style: italic;
color: var(--bronze); line-height: 1;
font-variation-settings: 'opsz' 96;
}
.annot-note {
border-top: 1px solid rgba(241,235,224,.15);
padding-top: 40px;
font-family: 'Cormorant Garamond', serif;
font-size: 18px; font-style: italic; color: var(--paper);
line-height: 1.7; max-width: 1100px;
} body.locked { overflow: hidden; height: 100vh; }
.intro {
position: fixed; inset: 0; z-index: 1000;
background: var(--paper);
display: flex; align-items: center; justify-content: center;
pointer-events: none;
}
.intro.done { display: none; }
.intro-inner {
position: relative; z-index: 2;
text-align: center;
color: var(--ink);
}
.intro-mark {
width: clamp(140px, 14vw, 200px);
aspect-ratio: 410 / 365;
margin: 0 auto 36px;
color: var(--bronze);
opacity: 0;
transform: scale(.85);
animation: intro-mark-in 1s cubic-bezier(.19,1,.22,1) .1s forwards;
}
.intro-mark svg { width: 100%; height: 100%; }
@keyframes intro-mark-in {
0%   { opacity: 0; transform: scale(.85); }
100% { opacity: 1; transform: scale(1); }
}
.intro-word {
font-family: 'Inter', sans-serif;
font-size: clamp(13px, 1.3vw, 16px);
font-weight: 500;
letter-spacing: .42em;
text-transform: uppercase;
color: var(--ink);
margin-bottom: 28px;
}
.intro-word-line { display: block; overflow: hidden; line-height: 1.6; }
.intro-word-line > span {
display: inline-block;
transform: translateY(110%);
animation: intro-word-up .9s cubic-bezier(.19,1,.22,1) forwards;
}
.intro-word-line:nth-child(1) > span { animation-delay: .55s; }
.intro-word-line:nth-child(2) > span { animation-delay: .7s; }
@keyframes intro-word-up { to { transform: translateY(0); } }
.intro-meta {
font-family: 'Cormorant Garamond', serif;
font-style: italic; font-size: 13px;
color: var(--bronze);
letter-spacing: .12em;
display: flex; align-items: center; justify-content: center; gap: 16px;
opacity: 0;
animation: intro-fade 1s ease 1.05s forwards;
}
.intro-meta-line {
display: inline-block; width: 32px; height: 1px;
background: var(--bronze); opacity: .6;
}
@keyframes intro-fade { to { opacity: 1; } } .intro-curtain {
position: absolute; left: 0; right: 0;
background: var(--paper);
z-index: 1;
transition: transform 1.1s cubic-bezier(.7,0,.2,1);
}
.intro-curtain-top    { top: 0;    height: 50%; transform: translateY(0); }
.intro-curtain-bottom { bottom: 0; height: 50%; transform: translateY(0); }
.intro.lift .intro-curtain-top    { transform: translateY(-100%); }
.intro.lift .intro-curtain-bottom { transform: translateY(100%); }
.intro.lift .intro-inner {
transition: opacity .5s ease, transform .8s cubic-bezier(.7,0,.2,1);
opacity: 0; transform: scale(1.08);
}  .hero { position: relative; }
.hero::after {
content: ''; position: absolute; inset: 0;
background:
radial-gradient(ellipse at 15% 20%, rgba(164,137,90,.10), transparent 45%),
radial-gradient(ellipse at 85% 80%, rgba(110,42,46,.08), transparent 50%);
pointer-events: none; z-index: 0;
animation: hero-breathe 16s ease-in-out infinite;
}
.hero > * { position: relative; z-index: 1; }
@keyframes hero-breathe {
0%, 100% { transform: scale(1); opacity: .9; }
50%      { transform: scale(1.08); opacity: 1; }
} .hero-title .reveal-line {
display: block !important;
line-height: 1.18 !important;
overflow: visible !important;
clip-path: none !important;
-webkit-clip-path: none !important;
padding: 0 !important;
margin: 0 !important;
}
.hero-title .reveal-line > span {
display: inline-block;
transform: none;
opacity: 1; transition: opacity .9s ease;
} html.has-js .hero-title .reveal-line > span {
transform: translateY(18px);
opacity: 0;
transition: transform 1.1s cubic-bezier(.19,1,.22,1), opacity .9s ease;
}
html.has-js .ready .hero-title .reveal-line > span {
transform: translateY(0);
opacity: 1;
}
.ready .hero-title .reveal-line > span { transform: translateY(0); }
.ready .hero-title .reveal-line:nth-child(1) > span { transition-delay: .15s; }
.ready .hero-title .reveal-line:nth-child(2) > span { transition-delay: .28s; }
.ready .hero-title .reveal-line:nth-child(3) > span { transition-delay: .41s; }
.ready .hero-title .reveal-line:nth-child(4) > span { transition-delay: .54s; } .hero-title .accent,
.hero-title .accent-strong {
font-style: normal;
font-weight: 400;
background: linear-gradient(110deg,
var(--ink) 0%, var(--ink) 30%,
var(--bronze) 45%, #c9a872 50%, var(--bronze) 55%,
var(--ink) 70%, var(--ink) 100%);
background-size: 220% 100%;
background-position: 100% 0;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
animation: shimmer 6s ease-in-out infinite;
animation-delay: 1.5s;
}
.ready .hero-title .accent,
.ready .hero-title .accent-strong {
animation: shimmer 6s ease-in-out infinite;
animation-delay: 1.5s;
}
@keyframes shimmer {
0%, 90%, 100% { background-position: 100% 0; }
50%           { background-position: -20% 0; }
} .hero-eyebrow {
opacity: 0; transform: translateY(20px);
transition: opacity .9s ease, transform 1s cubic-bezier(.19,1,.22,1);
}
.ready .hero-eyebrow { opacity: 1; transform: translateY(0); transition-delay: .1s; }
.hero-eyebrow::before {
transform: scaleX(0); transform-origin: 0 50%;
transition: transform 1.2s cubic-bezier(.19,1,.22,1);
}
.ready .hero-eyebrow::before { transform: scaleX(1); transition-delay: .25s; } .hero-body {
opacity: 0; transform: translateY(28px);
transition: opacity .9s ease, transform 1.1s cubic-bezier(.19,1,.22,1);
}
.ready .hero-body { opacity: 1; transform: translateY(0); transition-delay: .85s; }
.hero-ctas {
opacity: 0; transform: translateY(28px);
transition: opacity .9s ease, transform 1.1s cubic-bezier(.19,1,.22,1);
}
.ready .hero-ctas { opacity: 1; transform: translateY(0); transition-delay: 1s; } .hero-art {
opacity: 0; transform: perspective(1200px) rotateY(-25deg) scale(.85);
transform-origin: center;
transition: opacity 1s ease, transform 1.4s cubic-bezier(.34,1.4,.4,1);
}
.ready .hero-art { opacity: 1; transform: perspective(1200px) rotateY(0) scale(1); transition-delay: .55s; }
.hero-footer {
opacity: 0; transform: translateY(20px);
transition: opacity .9s ease, transform 1.1s cubic-bezier(.19,1,.22,1);
}
.ready .hero-footer { opacity: 1; transform: translateY(0); transition-delay: 1.2s; } .hero-title { will-change: transform; transition: transform .5s cubic-bezier(.19,1,.22,1); }  .scroll-progress {
position: fixed; top: 0; left: 0; height: 1px; width: 100%;
background: var(--bronze); transform-origin: 0 50%;
transform: scaleX(0); z-index: 200;
transition: transform .08s linear;
opacity: .8;
} .topbar { transition: padding .5s cubic-bezier(.16,1,.3,1), background .5s; }
.topbar.compact { padding-top: 12px; padding-bottom: 12px; background: rgba(242,239,232,.96); } .reveal-line { display: block; overflow: hidden; }
.hero-title .reveal-line,
.hero-title .reveal-line > span { overflow: visible !important; clip-path: none !important; -webkit-clip-path: none !important; }
.reveal-line > span {
display: inline-block;
transform: translateY(110%);
opacity: 0;
transition: transform 1.1s cubic-bezier(.19,1,.22,1), opacity 1s ease;
}
.reveal-line.in > span { transform: translateY(0); opacity: 1; }
.reveal-line.in > span:nth-child(1) { transition-delay: .05s; }
.reveal-line.in > span:nth-child(2) { transition-delay: .14s; }
.reveal-line.in > span:nth-child(3) { transition-delay: .23s; }
.reveal-line.in > span:nth-child(4) { transition-delay: .32s; }
.reveal-line.in > span:nth-child(5) { transition-delay: .41s; }
.reveal-line.in > span:nth-child(6) { transition-delay: .50s; } .fade-up {
opacity: 0; transform: translateY(28px);
transition: opacity 1s ease, transform 1.1s cubic-bezier(.19,1,.22,1);
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .15s; }
.fade-up.delay-2 { transition-delay: .3s; }
.fade-up.delay-3 { transition-delay: .45s; } .hero-art { transition: transform .4s cubic-bezier(.19,1,.22,1); transform-style: preserve-3d; perspective: 1200px; }
.hero-art-monogram { transition: transform .6s cubic-bezier(.19,1,.22,1); transform-style: preserve-3d; will-change: transform; } .marquee-band {
background: var(--ink); color: var(--paper);
padding: 38px 0; overflow: hidden; position: relative;
border-top: 1px solid rgba(164,137,90,.18);
border-bottom: 1px solid rgba(164,137,90,.18);
}
.marquee-track {
display: flex; gap: 80px;
animation: marquee 38s linear infinite;
width: max-content;
will-change: transform;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
font-family: 'Cormorant Garamond', serif;
font-style: italic; font-weight: 300;
font-size: clamp(56px, 8vw, 124px);
line-height: 1; letter-spacing: -.02em;
color: var(--paper); white-space: nowrap;
display: flex; align-items: center; gap: 80px;
}
.marquee-item .dot {
width: 10px; height: 10px; border-radius: 50%;
background: var(--bronze); display: inline-block;
flex-shrink: 0;
}
.marquee-item .ghost {
color: transparent;
-webkit-text-stroke: 1px var(--bronze);
font-style: italic;
opacity: .6;
}
@keyframes marquee {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
} .magnetic { display: inline-block; transition: transform .35s cubic-bezier(.19,1,.22,1); } .oeuvre { perspective: 1500px; }
.oeuvre-frame { transform-origin: center; will-change: transform; } .chiffre-num { display: inline-block; will-change: transform, opacity; }
.chiffre.in .chiffre-num {
animation: chiffre-up 1.4s cubic-bezier(.19,1,.22,1) both;
}
.chiffre:nth-child(1).in .chiffre-num { animation-delay: 0s; }
.chiffre:nth-child(2).in .chiffre-num { animation-delay: .12s; }
.chiffre:nth-child(3).in .chiffre-num { animation-delay: .24s; }
.chiffre:nth-child(4).in .chiffre-num { animation-delay: .36s; }
@keyframes chiffre-up {
from { transform: translateY(60%) scale(.94); opacity: 0; filter: blur(8px); }
to { transform: translateY(0) scale(1); opacity: 1; filter: blur(0); }
} @media (prefers-reduced-motion: reduce) {
.marquee-track { animation: none; }
.reveal-line > span, .fade-up { transform: none; opacity: 1; transition: none; }
.scroll-progress { display: none; }
} @media (max-width: 900px) {
.hero, .expertises-header, .team-header, .manifesto-grid,
.footer-grid, .annotation-grid, .offices-grid, .office, .chiffres {
grid-template-columns: 1fr;
gap: 48px;
}
.ex-row { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
.ex-row:hover { padding-left: 0; }
.ex-arrow { display: none; }
.ex-pole { padding: 40px 0; }
.ex-pole .ex-links { margin-top: 16px; }
.hero {
padding: 96px 24px 48px;
min-height: auto;
gap: 32px;
}
.hero-left { align-self: start; }
.hero-right { max-width: 100%; padding-bottom: 0; align-self: start; }
.hero-right-rule { display: none; }
.hero-title {
margin-bottom: 28px;
font-size: clamp(40px, 9.6vw, 68px);
line-height: 1.08;
padding-top: .06em;
word-break: keep-all;
overflow-wrap: break-word;
}
.hero-body { font-size: 17px; margin-bottom: 28px; }
.hero-cta-link { margin-top: 12px; }
.hero-cta-primary-wrap { margin-top: 8px; }
.team-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
.topbar {
padding: 16px 20px;
grid-template-columns: 1fr auto;
}
.topbar.is-scrolled { padding: 12px 20px; }
.topbar-center { display: none; }
.topbar-right { gap: 14px; }
.top-bureaux, .top-cta { display: none; }
.logo-tag { display: none; }
.menu-trigger-label { display: none; }
.menu-trigger-lines { width: 28px; gap: 6px; }
.menu-trigger-lines i:nth-child(2) { width: 70%; }
.menu-overlay-inner { padding: 18px 24px 24px; }
.menu-head .logo-tag { display: none; }
.menu-body {
grid-template-columns: 1fr;
gap: 32px;
padding: 24px 0;
align-items: start;
}
.menu-aside {
border-left: 0;
border-top: 1px solid var(--rule);
padding-left: 0; padding-top: 32px;
flex-direction: row; flex-wrap: wrap;
gap: 32px;
}
.menu-aside-block { flex: 1 1 240px; }
.menu-nav-item { padding: 8px 0; gap: 18px; }
.menu-num { flex: 0 0 24px; font-size: 12px; }
.menu-name { font-size: clamp(32px, 9vw, 52px); }
.menu-sub {
padding: 0 0 10px 40px;
max-height: none; opacity: 1;
gap: 4px 18px;
}
.menu-sub a { font-size: 16px; }
.menu-foot {
flex-direction: column; gap: 8px; align-items: flex-start;
text-align: left;
}
.hero, .pause, .expertises, .heritage, .chiffres,
.team, .press, .manifesto, .offices, .final { padding-left: 24px; padding-right: 24px; }
.final-card { flex-direction: column; gap: 32px; padding: 32px; }
.footer-grid { grid-template-columns: 1fr 1fr; }
.press-logos { gap: 32px; flex-wrap: wrap; }
.offices-secondary { flex-direction: column; gap: 16px; align-items: center; }
}
@media (max-width: 540px) {
.team-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; }
.menu-name { font-size: clamp(34px, 13vw, 54px); }
} :root {
--site-max: 1400px;
--site-gutter: max(48px, calc((100vw - var(--site-max)) / 2));
}
.hero,
.pause,
.expertises,
.oeuvre,
.heritage,
.chiffres,
.team,
.press,
.manifesto,
.offices,
.final {
padding-left: var(--site-gutter) !important;
padding-right: var(--site-gutter) !important;
} .expertises-header,
.team-header,
.offices-header,
.ex-list,
.team-grid,
.offices-grid,
.manifesto-grid,
.heritage,
.press,
.final {
max-width: none;
margin-left: 0;
margin-right: 0;
}
@media (max-width: 900px) {
:root { --site-gutter: 24px; }
}
@media (max-width: 540px) {
:root { --site-gutter: 20px; }
}