
/*! == /style.css == */
/*! == /assets/css/dwdg.css == */
:root {
--ink:        #0c0d0b;
--ink-soft:   #34352f;
--muted:      #6d6d66;
--line:       rgba(12, 13, 11, 0.08);
--paper:      #fffdf8;
--soft:       #eee9e4;
--soft-light: #f6f3ef;
--green:      #12c95f;
--green-deep: #0aa04b;
--green-dark: #08763a;
--glass:        rgba(255, 255, 255, 0.62);
--glass-border: rgba(255, 255, 255, 0.52);
--card-bg:      rgba(255, 255, 255, 0.82);
--shadow:       0 2px 4px rgba(20, 21, 18, 0.04), 0 14px 44px rgba(20, 21, 18, 0.07);
--shadow-hover: 0 4px 8px rgba(20, 21, 18, 0.05), 0 22px 60px rgba(20, 21, 18, 0.12);
--shadow-green: 0 10px 26px rgba(18, 201, 95, 0.26);
--radius-xl: 28px;
--radius-lg: 22px;
--radius-md: 14px;
--pad:    clamp(24px, 4vw, 64px);
--max:    1180px;
--narrow: 1030px;
--section:  clamp(72px, 9vw, 128px);
--card-pad: clamp(28px, 4vw, 52px);
--ease:   cubic-bezier(0.16, 1, 0.3, 1);
--t-fast: 180ms;
--t-base: 240ms;
--t-slow: 640ms;
}
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
overflow-x: hidden;
background: var(--paper);
color: var(--ink);
font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 16px;
line-height: 1.55;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { letter-spacing: -0.045em; }
h2 {
font-size: clamp(2rem, 3.6vw, 3rem);
line-height: 1;
font-weight: 800;
}
h3 {
font-size: 22px;
line-height: 1.1;
font-weight: 800;
}
p { color: var(--ink-soft); }
.wrap {
width: min(100% - 2 * var(--pad), var(--max));
margin-inline: auto;
}
.wrap-narrow {
width: min(100% - 2 * var(--pad), var(--narrow));
margin-inline: max(var(--pad), calc((100% - var(--max)) / 2)) auto;
}
.future .wrap-narrow,
.home .works .wrap-narrow,
.dwdg-recent-projects .wrap-narrow,
.home .insights .wrap-narrow,
.join .wrap-narrow,
.dwdg-insights-grid-block .wrap-narrow,
.dwdg-publications-slider .wrap-narrow {
width: min(100% - 2 * var(--pad), var(--max));
}
.section-soft {
background: var(--soft);
padding-block: var(--section);
}
.section-heading {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
margin-bottom: clamp(20px, 2.5vw, 32px);
}
.skip-link {
position: absolute;
top: -100%;
left: 16px;
z-index: 100;
padding: 10px 20px;
border-radius: var(--radius-md);
background: var(--ink);
color: #fff;
font-size: 0.875rem;
font-weight: 700;
transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 16px; }
.button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
min-height: 40px;
padding: 0 20px;
border: 1.5px solid transparent;
border-radius: 999px;
background: var(--green);
color: #fff;
font-size: 0.875rem;
font-weight: 700;
line-height: 1;
letter-spacing: -0.01em;
white-space: nowrap;
transition:
background-color var(--t-fast) var(--ease),
border-color var(--t-fast) var(--ease),
color var(--t-fast) var(--ease),
box-shadow var(--t-base) var(--ease),
transform var(--t-base) var(--ease);
}
.button:hover {
background: #fff;
border-color: var(--green);
color: var(--green);
box-shadow: 0 10px 26px rgba(18, 201, 95, 0.16);
transform: translateY(-2px);
}
.button-primary {
min-height: 44px;
padding: 0 26px;
}
.button-small {
min-height: 34px;
padding: 0 16px;
font-size: 0.8125rem;
}
.text-link {
position: relative;
display: inline-flex;
align-items: center;
min-height: 44px;
color: var(--green-deep);
font-size: 0.9rem;
font-weight: 700;
}
.text-link::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 10px;
height: 1px;
background: currentColor;
transform: scaleX(0);
transform-origin: left;
transition: transform var(--t-base) var(--ease);
}
.text-link:hover::after { transform: scaleX(1); }
.eyebrow {
display: inline-flex;
align-items: center;
min-height: 26px;
padding: 0 12px;
border-radius: 999px;
background: rgba(18, 201, 95, 0.12);
color: var(--green-dark);
font-size: 0.6875rem;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
}
.on-image {
position: absolute;
top: 16px;
left: 16px;
background: rgba(255, 255, 255, 0.78);
color: var(--ink-soft);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}
.plus-link {
position: relative;
flex: 0 0 auto;
width: 44px;
height: 44px;
border-radius: 50%;
transition: transform var(--t-base) var(--ease);
}
.plus-link::before,
.plus-link::after {
content: "";
position: absolute;
inset: 50% auto auto 50%;
width: 30px;
height: 1.5px;
background: var(--green-deep);
transform: translate(-50%, -50%);
}
.plus-link::after { transform: translate(-50%, -50%) rotate(90deg); }
.plus-link:hover { transform: rotate(90deg) scale(1.06); }
.site-header {
position: fixed;
z-index: 10;
top: 24px;
left: 0;
width: 100%;
pointer-events: none;
transition: top var(--t-base) var(--ease);
}
.site-header.is-scrolled { top: 14px; }
.header-shell {
width: min(100% - 64px, 1280px);
margin-inline: auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
pointer-events: auto;
}
.brand-pill {
display: inline-flex;
align-items: center;
gap: 13px;
min-height: 64px;
padding: 0 22px 0 20px;
border: 1px solid var(--glass-border);
border-radius: 999px;
background: var(--glass);
color: var(--ink);
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
transition: background-color var(--t-fast) var(--ease);
}
.brand-pill:hover { background: rgba(255, 255, 255, 0.8); }
.menu-mark {
display: inline-flex;
width: 24px;
flex-direction: column;
gap: 5px;
}
.menu-mark span {
height: 2px;
border-radius: 99px;
background: currentColor;
}
.brand-word {
display: inline-flex;
align-items: baseline;
font-size: 2rem;
font-weight: 800;
line-height: 1;
letter-spacing: -0.13em;
}
.brand-word span { color: var(--green); }
.brand-sub {
font-size: 0.7rem;
font-weight: 700;
line-height: 0.88;
letter-spacing: -0.03em;
}
.main-nav {
display: flex;
align-items: center;
gap: 6px;
padding: 7px;
border-radius: 999px;
background: var(--glass);
border: 1px solid var(--glass-border);
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
}
.main-nav a {
display: inline-flex;
align-items: center;
min-height: 38px;
padding: 0 16px;
border-radius: 999px;
color: rgba(12, 13, 11, 0.7);
font-size: 0.84rem;
font-weight: 700;
transition: color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.main-nav a:hover {
color: var(--ink);
background: rgba(255, 255, 255, 0.65);
}
.main-nav .nav-cta {
background: var(--ink);
color: #fff;
}
.main-nav .nav-cta:hover {
background: var(--green-deep);
color: #fff;
}
.menu-toggle {
display: none;
width: 48px;
height: 48px;
border: 1px solid var(--glass-border);
border-radius: 999px;
background: rgba(255, 255, 255, 0.72);
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
cursor: pointer;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 4px;
padding: 0;
}
.menu-toggle span {
display: block;
width: 18px;
height: 2px;
border-radius: 999px;
background: var(--ink);
transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}
.nav-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .menu-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.hero {
position: relative;
background: var(--paper);
}
.hero-media {
position: relative;
height: clamp(420px, 48vw, 640px);
background: #1a2e1a;
}
.hero-media__inner {
position: absolute;
inset: 0;
overflow: hidden;
}
.hero-media__inner img,
.hero-media__inner video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 47%;
filter: saturate(0.82) contrast(1.02) brightness(1.02);
}
.hero-media::after {
content: "";
position: absolute;
inset: 0;
background:
linear-gradient(180deg, rgba(255, 253, 248, 0.06), rgba(255, 253, 248, 0.18)),
radial-gradient(circle at 20% 15%, rgba(18, 201, 95, 0.14), transparent 32%);
pointer-events: none;
z-index: 1;
}
.hero-wave-fp {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
line-height: 0;
z-index: 3;
pointer-events: none;
}
.hero-wave-fp svg {
display: block;
width: 100%;
height: clamp(80px, 10vw, 140px);
}
.hero-panel {
position: relative;
z-index: 2;
padding: 12px 0 28px;
background: var(--paper);
margin-top: -1px;
}
.hero-panel > .wrap { position: relative; z-index: 1; }
.hero-inner {
max-width: 1000px;
margin-inline: auto;
}
.hero-grid {
display: flex;
flex-direction: column;
align-items: stretch;
gap: 0;
}
.hero-grid h1 {
width: 100%;
text-align: right;
font-size: clamp(3rem, 6.8vw, 6.4rem);
font-weight: 800;
line-height: 0.92;
letter-spacing: -0.045em;
margin-bottom: clamp(36px, 5vw, 56px);
}
.hero-grid h1 span,
.hero-intro strong,
.join h2 span { color: var(--green); }
.hero-bottom-row,
.convictions {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
width: 100%;
gap: 0 clamp(40px, 6vw, 80px);
}
.hero-bottom-row {
padding-bottom: clamp(16px, 2.5vw, 28px);
}
.convictions {
padding-top: clamp(16px, 2.5vw, 28px);
}
.hero-intro {
max-width: 440px;
font-size: clamp(0.95rem, 1.4vw, 1.05rem);
line-height: 1.45;
letter-spacing: -0.01em;
color: var(--ink);
}
.hero-intro strong { color: var(--green); font-weight: 400; }
.hero-actions {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 10px;
}
.hero-actions .text-link {
display: inline-flex;
align-items: center;
min-height: 44px;
padding: 0 22px;
border-radius: 999px;
background: rgba(12, 13, 11, 0.07);
color: var(--ink);
font-size: 0.875rem;
font-weight: 600;
letter-spacing: -0.01em;
transition: background var(--t-fast) var(--ease);
}
.hero-actions .text-link::after { display: none; }
.hero-actions .text-link:hover { background: rgba(12, 13, 11, 0.13); }
.convictions-label {
color: var(--ink);
font-size: clamp(0.9rem, 1.5vw, 1.15rem);
line-height: 1.3;
letter-spacing: -0.03em;
white-space: nowrap;
}
.conviction-visual {
position: relative;
display: flex;
align-items: center;
justify-content: center;
min-height: clamp(220px, 28vw, 340px);
}
.conviction {
display: grid;
place-items: center;
width: clamp(200px, 23vw, 300px);
aspect-ratio: 1;
border-radius: 50%;
color: var(--green-deep);
text-align: center;
font-size: clamp(1.05rem, 2.1vw, 1.7rem);
line-height: 0.94;
letter-spacing: -0.055em;
font-weight: 700;
}
.conviction-light {
background:
radial-gradient(circle at 48% 46%, rgba(255, 255, 255, 0.7), transparent 50%),
radial-gradient(circle, rgba(18, 201, 95, 0.22), rgba(18, 201, 95, 0.04) 68%, transparent 76%);
box-shadow: 0 0 60px rgba(18, 201, 95, 0.16);
}
.conviction-strong {
margin-left: clamp(-22px, -1.8vw, -10px);
background:
radial-gradient(circle at 56% 44%, rgba(18, 201, 95, 0.85), rgba(18, 201, 95, 0.5) 48%, rgba(18, 201, 95, 0.06) 75%),
rgba(18, 201, 95, 0.1);
color: #fff;
box-shadow: 0 0 80px rgba(18, 201, 95, 0.32);
}
.conviction-dot {
position: relative;
z-index: 1;
margin-inline: -8px -12px;
color: var(--green-deep);
font-size: 1.3rem;
letter-spacing: 0.2em;
}
.conviction-visual--spread {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
width: 100%;
}
.conviction-visual--spread .conviction { margin: 0; box-shadow: 0 0 60px rgba(18, 201, 95, 0.16); }
.conviction-visual--spread .conviction--align-left   { grid-column: 1; justify-self: start; }
.conviction-visual--spread .conviction--align-center { grid-column: 2; justify-self: center; }
.conviction-visual--spread .conviction--align-right  { grid-column: 3; justify-self: end; }
.hero-grid h1 strong { font-weight: 800; }
.hero-grid h1 .hero-regular { font-weight: 300; color: var(--ink); }
.hero-grid h1 .hero-purpose { color: var(--green); }
.work-list { display: grid; gap: 28px; }
.work-card {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
min-height: 140px;
overflow: hidden;
border: 1px solid var(--line);
border-radius: var(--radius-xl);
background: var(--card-bg);
box-shadow: var(--shadow);
transition:
transform var(--t-base) var(--ease),
box-shadow var(--t-base) var(--ease),
border-color var(--t-base) var(--ease);
}
.work-card:hover {
transform: translateY(-4px);
border-color: rgba(18, 201, 95, 0.18);
box-shadow: var(--shadow-hover);
}
.work-media {
position: relative;
min-height: 280px;
overflow: hidden;
background: #d8ded7;
}
.work-media img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform var(--t-slow) var(--ease), filter var(--t-slow) var(--ease);
}
.work-card:hover .work-media img {
transform: scale(1.05);
filter: saturate(1.06) brightness(1.02);
}
.work-copy {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 20px;
padding: var(--card-pad);
}
.work-copy p {
max-width: 420px;
font-size: clamp(0.94rem, 1.4vw, 1.08rem);
line-height: 1.42;
}
.expertise {
background: var(--paper);
padding-block: var(--section);
}
.expertise-grid {
display: grid;
grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
gap: 0 clamp(60px, 10vw, 160px);
width: min(100%, 940px);
margin-inline: auto;
align-items: start;
}
.expertise-divider {
background: var(--line);
align-self: stretch;
}
.expertise-col h2 { margin-bottom: 40px; }
.link-list {
display: grid;
gap: 14px;
margin: 0;
padding: 0;
list-style: none;
}
.link-list a {
display: inline-flex;
align-items: center;
gap: 16px;
color: var(--ink);
font-size: clamp(1.3rem, 2.2vw, 1.9rem);
line-height: 1;
letter-spacing: -0.05em;
font-weight: 700;
transition: color var(--t-fast) var(--ease);
}
.link-list a::before {
content: "↗";
color: var(--green);
font-size: 0.82em;
font-weight: 400;
transition: transform var(--t-base) var(--ease);
}
.link-list a:hover { color: var(--green-dark); }
.link-list a:hover::before { transform: translate(2px, -2px); }
.publications { padding-block: clamp(48px, 6vw, 88px); }
.publication-card {
display: grid;
grid-template-columns: minmax(200px, 0.75fr) minmax(320px, 1.15fr);
overflow: hidden;
border: 1px solid var(--line);
border-radius: var(--radius-xl);
background: rgba(255, 255, 255, 0.82);
box-shadow: var(--shadow);
}
.report-preview {
display: grid;
place-items: center;
min-height: 220px;
padding: 36px;
background:
radial-gradient(circle at 70% 30%, rgba(18, 201, 95, 0.1), transparent 40%),
linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 243, 238, 0.95));
}
.report-cover {
position: relative;
width: min(170px, 100%);
aspect-ratio: 0.72;
overflow: hidden;
border-radius: 6px;
background: #fafaf7;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
padding: 28px 24px;
}
.report-cover::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(135deg, transparent 42%, rgba(18, 201, 95, 0.18) 42% 64%, transparent 64%);
}
.report-cover::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(45deg, transparent 48%, rgba(18, 201, 95, 0.32) 48% 66%, transparent 66%);
}
.report-cover span,
.report-cover p,
.report-cover strong { position: relative; z-index: 1; }
.report-cover span {
display: block;
color: var(--green-deep);
font-size: 1rem;
font-weight: 800;
line-height: 0.95;
letter-spacing: -0.05em;
}
.report-cover p {
max-width: 100px;
margin-top: 32px;
color: var(--ink);
font-size: 0.46rem;
font-weight: 600;
line-height: 1.3;
}
.report-cover strong {
position: absolute;
bottom: 16px;
left: 24px;
font-size: 0.9rem;
letter-spacing: -0.12em;
}
.publication-copy {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 20px;
padding: var(--card-pad);
background: rgba(255, 255, 255, 0.72);
}
.publication-copy h3 {
max-width: 520px;
color: var(--green);
font-size: 22px;
line-height: 1.04;
}
.insights { padding-top: clamp(24px, 3.5vw, 52px); }
.insight-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(16px, 2.5vw, 28px);
}
.insight-card {
position: relative;
display: flex;
min-height: 300px;
overflow: hidden;
border-radius: var(--radius-lg);
background: #dfe4dc;
box-shadow: var(--shadow);
transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.insight-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-hover);
}
.insight-card::after {
content: "";
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 40%, rgba(0, 0, 0, 0.36));
}
.insight-card img {
position: absolute;
inset: 0;
transition: transform var(--t-slow) var(--ease), filter var(--t-slow) var(--ease);
}
.insight-card:hover img {
transform: scale(1.05);
filter: saturate(1.06) brightness(1.02);
}
.insight-copy {
position: relative;
z-index: 2;
display: flex;
width: 100%;
flex-direction: column;
justify-content: flex-end;
padding: 16px;
}
.insight-copy h3 {
margin-top: 10px;
min-height: 100px;
display: flex;
align-items: center;
padding: 16px 18px;
border-radius: var(--radius-md);
background: rgba(255, 255, 255, 0.82);
color: var(--ink);
font-size: clamp(0.94rem, 1.55vw, 1.2rem);
line-height: 1.15;
letter-spacing: -0.04em;
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
}
.future {
position: relative;
padding: var(--section) 0 calc(var(--section) * 1.15);
background: linear-gradient(135deg, #09C460 0%, #5CD58D 49%, #A1EAB0 100%);
}
.future-head {
display: grid;
grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1fr);
gap: clamp(40px, 8vw, 120px);
align-items: start;
margin-bottom: clamp(52px, 8vw, 96px);
}
.future-head p {
max-width: 520px;
font-size: clamp(1rem, 1.65vw, 1.2rem);
line-height: 1.32;
}
.generation-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 280px));
justify-content: center;
gap: clamp(24px, 4vw, 56px);
}
.generation-card {
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.56);
border-radius: var(--radius-lg);
background: rgba(247, 255, 248, 0.72);
box-shadow: 0 20px 60px rgba(0, 80, 35, 0.1);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
padding: 14px 14px 0;
transition:
transform var(--t-base) var(--ease),
box-shadow var(--t-base) var(--ease),
background-color var(--t-base) var(--ease);
}
.generation-card:hover {
transform: translateY(-4px);
background: rgba(255, 255, 255, 0.88);
box-shadow: 0 24px 80px rgba(0, 80, 35, 0.16);
}
.generation-img {
height: 160px;
overflow: hidden;
border-radius: 16px;
}
.generation-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform var(--t-slow) var(--ease), filter var(--t-slow) var(--ease);
}
.generation-card:hover .generation-img img {
transform: scale(1.05);
filter: saturate(1.06) brightness(1.02);
}
.generation-body {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 14px;
padding: 26px 24px 28px;
min-height: 240px;
}
.generation-body h3 { font-size: 1.9rem; }
.generation-body p {
font-size: 0.9375rem;
line-height: 1.35;
}
.generation-body .button { margin-top: auto; }
.join {
padding-block: var(--section);
background: var(--paper);
}
.join-grid {
display: grid;
grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1fr);
gap: clamp(48px, 9vw, 120px);
align-items: start;
}
.join h2 {
max-width: 560px;
font-size: clamp(2.8rem, 5.6vw, 5.4rem);
line-height: 0.94;
}
.join-copy {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 32px;
max-width: 440px;
}
.join-copy p {
color: var(--ink);
font-size: clamp(1rem, 1.7vw, 1.3rem);
line-height: 1.22;
letter-spacing: -0.04em;
}
.site-footer {
background: var(--soft);
padding: 72px 0 40px;
}
.footer-nav {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 20px;
padding-bottom: 56px;
margin-bottom: 32px;
border-bottom: 1px solid var(--line);
}
.footer-col {
display: flex;
flex-direction: column;
gap: 10px;
}
.footer-col--contact {
align-items: flex-end;
}
.footer-col-title {
display: inline-flex;
width: fit-content;
font-size: 16px;
font-weight: 700;
letter-spacing: -0.025em;
color: var(--ink);
text-decoration: none;
transition: color var(--t-fast) var(--ease);
}
.footer-col-title:hover { color: var(--green-dark); }
.footer-sub-list {
display: flex;
flex-direction: column;
gap: 6px;
margin: 4px 0 0;
padding: 0;
list-style: none;
}
.footer-sub-list li,
.footer-sub-list li a {
color: var(--muted);
font-size: 16px;
line-height: 1.4;
text-decoration: none;
transition: color var(--t-fast) var(--ease);
}
.footer-sub-list li a:hover { color: var(--ink); }
.footer-contact {
display: inline-flex !important;
align-items: center;
min-height: 34px;
padding: 0 18px;
border-radius: 999px;
background: var(--green);
color: #fff !important;
font-size: 16px;
font-weight: 600;
letter-spacing: -0.01em;
}
.footer-contact:hover {
background: var(--green-deep);
color: #fff !important;
}
.footer-bottom {
display: flex;
align-items: center;
gap: 0;
}
.footer-brand {
display: inline-flex;
align-items: center;
gap: 13.8px;
flex-shrink: 0;
}
.footer-brand .brand-word { font-size: 1.9rem; }
.footer-copy {
flex: 1;
text-align: center;
color: var(--ink-soft);
font-size: 16px;
margin: 0;
}
.footer-legal-group {
display: flex;
align-items: center;
flex-shrink: 0;
}
.footer-legal {
color: var(--muted);
font-size: 16px;
text-decoration: none;
transition: color var(--t-fast) var(--ease);
white-space: nowrap;
flex-shrink: 0;
}
.footer-legal:hover { color: var(--ink); }
.footer-legal--right { margin-left: 24px; }
.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.plus-link:focus-visible,
.footer-col-title:focus-visible,
.footer-bottom a:focus-visible,
.footer-brand:focus-visible,
.brand-pill:focus-visible,
.menu-toggle:focus-visible {
outline: 2px solid var(--green);
outline-offset: 4px;
border-radius: 4px;
}
.reveal {
opacity: 0;
transform: translateY(28px);
transition:
opacity 680ms var(--ease),
transform 680ms var(--ease);
}
.reveal.is-visible {
opacity: 1;
transform: translateY(0);
}
.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
@keyframes heroDrift {
from { transform: scale(1.06) translateY(-4px); }
to   { transform: scale(1.02) translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
scroll-behavior: auto !important;
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
.reveal { opacity: 1; transform: none; }
}
@media (max-width: 1080px) {
.menu-toggle { display: flex; }
.main-nav {
position: fixed;
inset: auto 16px auto 16px;
top: 90px;
display: grid;
gap: 6px;
padding: 12px;
border-radius: 24px;
opacity: 0;
pointer-events: none;
transform: translateY(-10px) scale(0.98);
transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.nav-open .main-nav {
opacity: 1;
pointer-events: auto;
transform: translateY(0) scale(1);
}
.main-nav a {
justify-content: center;
min-height: 46px;
font-size: 1rem;
}
.header-shell { width: min(100% - 40px, 1280px); }
.hero-grid { gap: 24px; max-width: 100%; }
.hero-grid h1 { font-size: clamp(2.8rem, 8vw, 5rem); }
.hero-bottom-row { grid-template-columns: 1fr; gap: 16px; }
.convictions { grid-template-columns: 1fr; gap: 28px; }
.conviction-visual { justify-content: flex-start; }
.expertise-grid {
grid-template-columns: 1fr;
gap: clamp(48px, 8vw, 72px) 0;
}
.expertise-divider { display: none; }
.insight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.footer-nav {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
padding-bottom: 48px;
}
.footer-col--contact { align-items: flex-start; }
.footer-bottom { flex-wrap: wrap; gap: 18px; }
}
@media (max-width: 760px) {
.wrap,
.wrap-narrow { width: min(100% - 32px, var(--max)); margin-inline: auto; }
.site-header { top: 28px; }
.site-header.is-scrolled { top: 18px; }
.brand-pill {
min-height: 56px;
padding-inline: 16px 18px;
}
.brand-word { font-size: 1.7rem; }
.brand-sub { font-size: 0.62rem; }
.hero-media { height: 380px; }
.hero-panel {
margin-top: -40px;
padding: 36px 0 48px;
}
.hero-panel::before {
height: 160px;
width: 200vw;
left: 50%;
transform: translateX(calc(-50% + 4vw));
clip-path: none;
bottom: 100%;
top: auto;
}
.hero-grid h1 { font-size: clamp(2.4rem, 12vw, 3.8rem); text-align: center; }
.hero-bottom-row {
grid-template-columns: 1fr;
gap: 20px;
}
.hero-actions {
flex-direction: column;
align-items: flex-start;
gap: 12px;
}
.convictions {
grid-template-columns: 1fr;
gap: 28px;
}
.conviction-visual {
min-height: 180px;
justify-content: center;
}
.conviction {
width: min(44vw, 180px);
font-size: clamp(0.9rem, 4.2vw, 1.2rem);
}
.conviction-dot { display: none; }
.work-card,
.publication-card { grid-template-columns: 1fr; }
.work-card-reverse .work-copy { order: 2; }
.work-card-reverse .work-media { order: 1; }
.work-media { min-height: 220px; }
.work-copy,
.publication-copy { padding: 28px 24px; }
.publication-copy h3 { font-size: clamp(1.5rem, 8vw, 2.2rem); }
.insight-grid { grid-template-columns: 1fr; }
.insight-card { min-height: 300px; }
.generation-grid {
grid-template-columns: 1fr;
justify-items: center;
}
.generation-card { width: min(100%, 320px); }
.join h2 { white-space: normal; }
.footer-nav {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 24px 16px;
}
.footer-col--contact {
grid-column: 1 / -1;
align-items: center;
margin-top: 12px;
}
.footer-bottom {
flex-direction: column;
align-items: flex-start;
gap: 14px;
}
.footer-copy { text-align: left; }
.footer-brand {
align-self: center;
}
}
@media (max-width: 460px) {
body { font-size: 15px; }
.button-primary { width: 100%; justify-content: center; }
.section-heading { align-items: flex-start; }
.plus-link { width: 38px; height: 38px; }
.conviction-light { margin-right: -10px; }
.conviction-strong { margin-left: -10px; }
.work-list { gap: 18px; }
.work-card,
.publication-card,
.insight-card,
.generation-card { border-radius: var(--radius-lg); }
.insight-copy h3 {
min-height: 0;
font-size: 1rem;
}
}
.works .work-list {
gap: clamp(28px, 3vw, 38px);
}
.works .work-card {
min-height: 140px;
}
.works .work-media {
min-height: 140px;
}
.works .work-copy {
gap: 10px;
padding: clamp(16px, 2.2vw, 28px);
}
.works .work-copy p {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
@media (max-width: 760px) {
.works .work-media {
min-height: 110px;
}
}
/*! == /assets/css/extra.css == */
.brand-pill img.dwdg-logo,
.footer-brand img.dwdg-logo {
height: 36.8px;
width: auto;
display: block;
}
.site-header {
position: fixed;
z-index: 192;
top: 20px;
left: 0;
width: 100%;
pointer-events: none;
transition: top 240ms cubic-bezier(.16,1,.3,1);
}
.site-header.is-scrolled { top: 12px; }
.header-shell {
width: min(100% - 48px, 1280px);
margin-inline: auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
pointer-events: auto;
}
.brand-pill {
display: inline-flex;
align-items: center;
gap: 16.1px;
height: 64.4px;
padding: 0 23px 0 18.4px;
border: 1px solid var(--glass-border);
border-radius: 999px;
background: var(--glass);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
box-shadow: 0 8px 32px rgba(0,0,0,.1);
text-decoration: none;
color: var(--ink);
transition: background 180ms ease;
cursor: default;
position: relative;
z-index: 191;
}
.brand-pill .burger-lines {
display: flex;
flex-direction: column;
gap: 4px;
cursor: pointer;
padding: 4px;
border-radius: 6px;
border: none;
outline: none;
background: transparent;
transition: background 180ms;
-webkit-appearance: none;
appearance: none;
}
.brand-pill .burger-lines:focus { outline: none; box-shadow: none; }
.brand-pill .burger-lines:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.brand-pill .burger-lines:hover { background: rgba(0,0,0,.06); }
.brand-pill .burger-lines span {
display: block;
width: 18px;
height: 2px;
background: var(--ink);
border-radius: 99px;
transition: transform 240ms cubic-bezier(.16,1,.3,1), opacity 240ms;
}
body.nav-open .brand-pill .burger-lines span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .brand-pill .burger-lines span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.nav-open .brand-pill .burger-lines span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.brand-pill .pill-logo { display: flex; align-items: center; }
.brand-pill .pill-logo img { height: 38.64px; width: auto; }
.menu-toggle { display: none !important; }
.dwdg-nav-bar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 9999;
padding: 0 clamp(24px, 4vw, 56px);
height: 96px;
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
background: rgba(255, 255, 255, 0.55);
backdrop-filter: blur(28px) saturate(1.6);
-webkit-backdrop-filter: blur(28px) saturate(1.6);
border-bottom: 1px solid rgba(255, 255, 255, 0.6);
box-shadow:
0 8px 32px rgba(0, 0, 0, 0.08),
inset 0 1px 0 rgba(255, 255, 255, 0.85),
inset 0 0 24px 8px rgba(255, 255, 255, 0.4);
transform: translateY(-100%);
opacity: 0;
pointer-events: none;
transition:
transform 320ms cubic-bezier(.16,1,.3,1),
opacity   320ms cubic-bezier(.16,1,.3,1);
}
.dwdg-nav-bar::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 1px;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.9) 30%,
rgba(255, 255, 255, 0.9) 70%,
transparent
);
pointer-events: none;
z-index: 0;
}
.dwdg-nav-bar::after {
content: '';
position: absolute;
top: 0; left: 0;
width: 1px;
height: 100%;
background: linear-gradient(
180deg,
rgba(255, 255, 255, 0.9),
rgba(255, 255, 255, 0.3) 60%,
transparent
);
pointer-events: none;
z-index: 0;
}
body.nav-open .dwdg-nav-bar {
transform: translateY(0);
opacity: 1;
pointer-events: auto;
}
.dwdg-nav-bar__links {
display: flex;
align-items: center;
gap: 2px;
list-style: none;
margin: 0;
padding: 0;
position: relative;
z-index: 1;
}
.dwdg-nav-bar__links > li {
position: relative;
}
.dwdg-nav-bar__links > li > a {
display: inline-flex;
align-items: center;
height: 40px;
padding: 0 14px;
border-radius: 999px;
font-size: 0.84rem;
font-weight: 700;
color: rgba(12, 13, 11, 0.72);
text-decoration: none;
transition: color 150ms, background 150ms;
white-space: nowrap;
}
.dwdg-nav-bar__links > li > a:hover {
color: var(--ink);
background: rgba(255, 255, 255, 0.65);
}
.dwdg-nav-bar__links > li > a.is-contact {
background: var(--green);
color: #fff;
padding: 0 18px;
}
.dwdg-nav-bar__links > li > a.is-contact:hover {
background: var(--green-deep);
}
.dwdg-nav-bar__li {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px; height: 36px;
border-radius: 8px;
border: 1px solid rgba(12, 13, 11, 0.15);
color: rgba(12, 13, 11, 0.6);
font-size: 0.72rem;
font-weight: 700;
text-decoration: none;
margin-left: 8px;
transition: background 150ms, color 150ms;
position: relative;
z-index: 1;
}
.dwdg-nav-bar__li:hover { background: rgba(0,0,0,.06); color: var(--ink); }
.dwdg-nav-bar__links > li.has-sub > a::after {
content: '';
display: inline-block;
width: 0; height: 0;
border-left: 3px solid transparent;
border-right: 3px solid transparent;
border-top: 4px solid currentColor;
margin-left: 5px;
opacity: .5;
}
.dwdg-nav-sub-panel {
position: absolute;
top: calc(100% + 8px);
left: 0;
min-width: 160px;
background: rgba(255, 255, 255, 0.72);
backdrop-filter: blur(24px) saturate(1.5);
-webkit-backdrop-filter: blur(24px) saturate(1.5);
border: 1px solid rgba(255, 255, 255, 0.7);
border-radius: 16px;
padding: 10px 0;
box-shadow:
0 8px 32px rgba(0, 0, 0, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.9);
opacity: 0;
pointer-events: none;
transform: translateY(-6px);
transition: opacity 180ms ease, transform 180ms ease;
}
.dwdg-nav-bar__links > li.has-sub:hover .dwdg-nav-sub-panel,
.dwdg-nav-bar__links > li.has-sub:focus-within .dwdg-nav-sub-panel {
opacity: 1;
pointer-events: auto;
transform: translateY(0);
}
.dwdg-nav-sub-panel a {
display: block;
padding: 7px 18px;
font-size: 0.8rem;
color: rgba(12, 13, 11, 0.65);
text-decoration: none;
transition: color 150ms, background 150ms;
}
.dwdg-nav-sub-panel a:hover {
color: var(--ink);
background: rgba(0, 0, 0, 0.04);
}
.dwdg-nav-backdrop {
position: fixed;
inset: 0;
z-index: 9998;
background: transparent;
display: none;
}
body.nav-open .dwdg-nav-backdrop {
display: block;
}
.dwdg-video-notice {
position: absolute;
bottom: 12px;
right: 12px;
background: rgba(18,201,95,.9);
color: #fff;
font-size: 0.65rem;
font-weight: 700;
letter-spacing: 0.05em;
padding: 4px 10px;
border-radius: 20px;
z-index: 5;
}
.hero-media video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
filter: saturate(0.82) contrast(1.02) brightness(1.02);
}
.expertise-green-block {
background: linear-gradient(135deg,
#13BD62 0%,
#33CD77 9%,
#5CD58D 48%,
#A1EAB0 85%,
#b8f0c4 100%
);
border-radius: 28px;
padding: clamp(48px, 6vw, 80px) clamp(36px, 6vw, 80px);
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
}
.expertise-green-block::before {
content: '';
position: absolute;
top: -80px; right: -80px;
width: 320px; height: 320px;
background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
pointer-events: none;
}
.expertise-green-block .expertise-grid {
display: grid !important;
grid-template-columns: 1fr auto 1fr !important;
gap: 0 clamp(28px, 4vw, 56px) !important;
width: 100% !important;
max-width: 800px !important;
align-items: center !important;
position: relative;
z-index: 1;
background: rgba(255,255,255,.82);
border: 1.5px solid rgba(255,255,255,.7);
border-radius: 20px;
padding: clamp(36px, 5vw, 52px) clamp(32px, 5vw, 56px);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
.expertise-green-block .expertise-divider {
display: flex !important;
align-items: center !important;
justify-content: center !important;
width: auto !important;
height: auto !important;
background: transparent !important;
align-self: center !important;
flex-shrink: 0;
}
.expertise-vector {
display: block;
width: clamp(64px, 7.5vw, 96px);
height: auto;
flex-shrink: 0;
}
.expertise-green-block h2 {
color: var(--ink) !important;
font-size: clamp(1.25rem, 2vw, 1.65rem) !important;
margin-bottom: 24px !important;
}
.expertise-green-block .link-list { display: grid !important; gap: 12px !important; }
.expertise-green-block .link-list a {
color: var(--ink-soft) !important;
font-size: clamp(0.92rem, 1.35vw, 1.05rem) !important;
font-weight: 600 !important;
letter-spacing: -0.02em !important;
gap: 10px !important;
}
.expertise-green-block .link-list a::before {
content: "↗" !important;
color: var(--green) !important;
font-size: 0.88em !important;
font-weight: 500 !important;
transition: transform 150ms !important;
}
.expertise-green-block .link-list a:hover { color: var(--ink) !important; }
.expertise-green-block .link-list a:hover::before {
transform: translate(2px, -2px) !important;
color: var(--green-deep) !important;
}
.expertise-caption { display: none !important; }
@media (max-width: 760px) {
.expertise-green-block .expertise-grid {
grid-template-columns: 1fr !important;
gap: 28px 0 !important;
}
.expertise-green-block .expertise-divider { display: none !important; }
}
.report-cover {
position: relative;
width: min(170px, 100%);
aspect-ratio: 0.72;
overflow: hidden;
border-radius: 6px;
background: #fafaf7;
box-shadow: 0 20px 40px rgba(0,0,0,.16);
padding: 28px 24px;
}
.report-cover::before {
content: '';
position: absolute; inset: 0;
background: linear-gradient(135deg, transparent 42%, rgba(18,201,95,.18) 42% 64%, transparent 64%);
}
.report-cover::after {
content: '';
position: absolute; inset: 0;
background: linear-gradient(45deg, transparent 48%, rgba(18,201,95,.32) 48% 66%, transparent 66%);
}
.report-cover > * { position: relative; z-index: 1; }
.generation-img { position: relative; overflow: hidden; }
.dwdg-edit-img {
display: none;
position: absolute; inset: 0;
background: rgba(0,0,0,.5);
color: #fff;
align-items: center;
justify-content: center;
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
text-decoration: none;
}
.generation-img:hover .dwdg-edit-img { display: flex; }
.admin-bar .site-header { top: calc(20px + 32px); }
.admin-bar.nav-open .dwdg-nav-bar { padding-top: 32px; height: calc(96px + 32px); }
@media (max-width: 782px) {
.admin-bar .site-header { top: calc(20px + 46px); }
}
body.nav-open .site-header {
z-index: 10001;
pointer-events: none;
}
body.nav-open .header-shell {
pointer-events: none;
}
body.nav-open .brand-pill {
z-index: 10002;
pointer-events: auto;
}
body.nav-open .brand-pill .burger-lines,
body.nav-open .brand-pill .pill-logo {
position: relative;
z-index: 10003;
pointer-events: auto;
}
.home .expertise,
.front-page .expertise,
body.home .expertise {
background: linear-gradient(270deg,
#13BD62 0%,
#33CD77 9%,
#5CD58D 48%,
#A1EAB0 85%,
#A1EAB0 100%
) !important;
padding-block: 42px !important;
}
.home .expertise > .wrap,
.front-page .expertise > .wrap,
body.home .expertise > .wrap {
width: 100% !important;
max-width: none !important;
padding-inline: clamp(20px, 16.8vw, 206px) !important;
margin: 0 !important;
}
.home .expertise-green-block,
.front-page .expertise-green-block,
body.home .expertise-green-block {
width: 100% !important;
max-width: none !important;
margin: 0 auto !important;
padding: 0 !important;
border-radius: 0 !important;
background: transparent !important;
overflow: visible !important;
align-items: stretch !important;
}
.home .expertise-green-block::before,
.front-page .expertise-green-block::before,
body.home .expertise-green-block::before {
display: none !important;
}
.home .expertise-caption-top,
.front-page .expertise-caption-top,
body.home .expertise-caption-top {
width: 100% !important;
max-width: 806px !important;
margin: 0 auto 25px !important;
text-align: left !important;
color: #000 !important;
font-weight: 400 !important;
font-size: clamp(1.05rem, 1.9vw, 1.45rem) !important;
line-height: 1.15 !important;
letter-spacing: -0.035em !important;
}
.home .expertise-caption-top strong,
.front-page .expertise-caption-top strong,
body.home .expertise-caption-top strong {
font-weight: 800 !important;
}
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid {
width: 100% !important;
max-width: 806px !important;
min-height: 399px !important;
margin: 0 auto !important;
grid-template-columns: minmax(0,1fr) 112px minmax(0,1fr) !important;
gap: 0 clamp(44px, 6vw, 86px) !important;
align-items: center !important;
padding: clamp(56px, 7vw, 82px) clamp(50px, 6vw, 70px) !important;
background: rgba(255,255,255,.56) !important;
border: 1px solid rgba(255,255,255,.62) !important;
border-radius: 20px !important;
box-shadow: none !important;
backdrop-filter: blur(8px) !important;
-webkit-backdrop-filter: blur(8px) !important;
}
.home .expertise-green-block h2,
.front-page .expertise-green-block h2,
body.home .expertise-green-block h2 {
color: #000 !important;
font-size: clamp(1.75rem, 2.7vw, 2.15rem) !important;
line-height: 1 !important;
margin: 0 0 18px !important;
letter-spacing: -0.05em !important;
font-weight: 800 !important;
}
.home .expertise-green-block .link-list,
.front-page .expertise-green-block .link-list,
body.home .expertise-green-block .link-list {
gap: 22px !important;
}
.home .expertise-green-block .link-list a,
.front-page .expertise-green-block .link-list a,
body.home .expertise-green-block .link-list a {
color: #000 !important;
font-size: clamp(1.05rem, 1.8vw, 1.35rem) !important;
line-height: 1.25 !important;
font-weight: 400 !important;
letter-spacing: -0.035em !important;
gap: 20px !important;
}
.home .expertise-green-block .link-list a::before,
.front-page .expertise-green-block .link-list a::before,
body.home .expertise-green-block .link-list a::before {
color: #13BD62 !important;
font-size: 1.1em !important;
line-height: 1 !important;
}
.home .expertise-divider,
.front-page .expertise-divider,
body.home .expertise-divider {
display: flex !important;
align-items: center !important;
justify-content: center !important;
}
.home .expertise-vector,
.front-page .expertise-vector,
body.home .expertise-vector {
width: 100px !important;
height: auto !important;
filter: drop-shadow(0 10px 14px rgba(19,189,98,.2));
}
@media (max-width: 760px) {
.home .expertise,
.front-page .expertise,
body.home .expertise { padding-block: 32px !important; }
.home .expertise > .wrap,
.front-page .expertise > .wrap,
body.home .expertise > .wrap { padding-inline: 20px !important; }
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid {
grid-template-columns: 1fr !important;
min-height: 0 !important;
padding: 34px 28px !important;
gap: 30px !important;
}
.home .expertise-divider,
.front-page .expertise-divider,
body.home .expertise-divider { display: none !important; }
}
.expertise {
background: linear-gradient(270deg,
#13BD62 0%,
#33CD77 9%,
#5CD58D 48%,
#A1EAB0 85%,
#A1EAB0 100%
) !important;
padding-block: 44px !important;
}
.expertise > .wrap {
width: 100% !important;
max-width: none !important;
margin: 0 !important;
padding-inline: clamp(20px, 16.8vw, 206px) !important;
}
.expertise .expertise-green-block {
width: 100% !important;
max-width: none !important;
margin: 0 auto !important;
padding: 0 !important;
border-radius: 0 !important;
background: transparent !important;
box-shadow: none !important;
overflow: visible !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
}
.expertise .expertise-green-block::before { display: none !important; }
.expertise .expertise-caption-top {
width: 100% !important;
max-width: 806px !important;
margin: 0 auto 25px !important;
color: #000 !important;
text-align: left !important;
font-weight: 400 !important;
font-size: clamp(1.05rem, 1.9vw, 1.45rem) !important;
line-height: 1.15 !important;
letter-spacing: -0.035em !important;
}
.expertise .expertise-caption-top strong { font-weight: 800 !important; }
.expertise .expertise-green-block .expertise-grid {
width: 100% !important;
max-width: 806px !important;
min-height: 399px !important;
margin: 0 auto !important;
display: grid !important;
grid-template-columns: minmax(0,1fr) 112px minmax(0,1fr) !important;
gap: 0 clamp(44px, 6vw, 86px) !important;
align-items: start !important;
padding: 79px 70px 58px !important;
background: rgba(255,255,255,.56) !important;
border: 1px solid rgba(255,255,255,.68) !important;
border-radius: 20px !important;
box-shadow: none !important;
backdrop-filter: blur(8px) !important;
-webkit-backdrop-filter: blur(8px) !important;
}
.expertise .expertise-green-block h2 {
color: #000 !important;
font-size: clamp(1.75rem, 2.7vw, 2.15rem) !important;
line-height: 1 !important;
margin: 0 0 18px !important;
letter-spacing: -0.05em !important;
font-weight: 800 !important;
}
.expertise .expertise-green-block .link-list {
display: grid !important;
gap: 22px !important;
margin: 0 !important;
padding: 0 !important;
}
.expertise .expertise-green-block .link-list a {
color: #000 !important;
font-size: clamp(1.05rem, 1.8vw, 1.35rem) !important;
line-height: 1.25 !important;
font-weight: 400 !important;
letter-spacing: -0.035em !important;
gap: 20px !important;
}
.expertise .expertise-green-block .link-list a::before {
color: #13BD62 !important;
font-size: 1.1em !important;
line-height: 1 !important;
}
.expertise .expertise-divider {
display: flex !important;
align-items: center !important;
justify-content: center !important;
align-self: start !important;
margin-top: -10px !important;
width: 112px !important;
}
.expertise .expertise-vector {
width: 100px !important;
height: auto !important;
filter: drop-shadow(0 10px 14px rgba(19,189,98,.2));
}
.report-cover-media {
width: min(170px, 100%);
aspect-ratio: .72;
overflow: hidden;
border-radius: 6px;
background: #fff;
box-shadow: 0 20px 40px rgba(0,0,0,.16);
display: flex;
align-items: center;
justify-content: center;
}
.report-cover-media img,
.report-preview img.wp-post-image {
width: 100% !important;
height: 100% !important;
object-fit: contain !important;
object-position: center center !important;
display: block !important;
}
@media (max-width: 760px) {
.expertise { padding-block: 32px !important; }
.expertise > .wrap { padding-inline: 20px !important; }
.expertise .expertise-green-block .expertise-grid {
grid-template-columns: 1fr !important;
min-height: 0 !important;
padding: 34px 28px !important;
gap: 30px !important;
}
.expertise .expertise-divider { display: none !important; }
}
.publication-card .report-preview {
min-height: clamp(360px, 34vw, 520px) !important;
}
.publication-card .report-cover-media,
.dwdg-pub-card__preview > div[style*="aspect-ratio"] {
width: min(330px, 58%) !important;
aspect-ratio: 0.72 !important;
overflow: hidden !important;
border-radius: 8px !important;
background: #fff !important;
}
.publication-card .report-cover-media img,
.publication-card .report-preview img.wp-post-image,
.publication-card .publication-cover-img,
.dwdg-pub-card__preview img {
width: 100% !important;
height: 100% !important;
display: block !important;
object-fit: cover !important;
object-position: center center !important;
background: #fff !important;
}
.home .expertise .expertise-green-block .expertise-grid,
.front-page .expertise .expertise-green-block .expertise-grid,
body.home .expertise .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
max-width: 806px !important;
min-height: 399px !important;
grid-template-columns: minmax(0,1fr) 112px minmax(0,1fr) !important;
column-gap: clamp(44px, 6vw, 86px) !important;
row-gap: 0 !important;
align-items: start !important;
padding: 79px 70px 58px !important;
}
.home .expertise .expertise-divider,
.front-page .expertise .expertise-divider,
body.home .expertise .expertise-divider,
.expertise .expertise-divider {
width: 112px !important;
height: 56px !important;
margin-top: -10px !important;
align-self: start !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
}
.home .expertise .expertise-vector,
.front-page .expertise .expertise-vector,
body.home .expertise .expertise-vector,
.expertise .expertise-vector {
width: 100px !important;
height: 50px !important;
}
.home .expertise .expertise-green-block h2,
.front-page .expertise .expertise-green-block h2,
body.home .expertise .expertise-green-block h2,
.expertise .expertise-green-block h2 {
margin: 0 0 18px !important;
}
.home .expertise .expertise-green-block .link-list,
.front-page .expertise .expertise-green-block .link-list,
body.home .expertise .expertise-green-block .link-list,
.expertise .expertise-green-block .link-list {
gap: 22px !important;
}
@media (max-width: 760px) {
.publication-card .report-cover-media,
.dwdg-pub-card__preview > div[style*="aspect-ratio"] {
width: min(240px, 70%) !important;
}
.home .expertise .expertise-green-block .expertise-grid,
.front-page .expertise .expertise-green-block .expertise-grid,
body.home .expertise .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
grid-template-columns: 1fr !important;
padding: 34px 28px !important;
min-height: 0 !important;
gap: 30px !important;
}
}
.publications.dwdg-publications-slider {
padding-block: clamp(36px, 5vw, 68px) !important;
}
.publications.dwdg-publications-slider .dwdg-pub-slider__track {
overflow: hidden !important;
}
.publications.dwdg-publications-slider .publication-card,
.dwdg-publications-slider .dwdg-pub-card {
margin-block: 0 !important;
}
.publication-card .report-preview,
.dwdg-pub-card__preview {
min-height: clamp(280px, 27vw, 390px) !important;
padding: clamp(24px, 3vw, 34px) !important;
}
.publication-card .report-cover-media,
.publication-card .report-cover,
.dwdg-pub-card__preview > div[style*="aspect-ratio"],
.dwdg-pub-card__cover {
width: min(270px, 52%) !important;
aspect-ratio: 0.72 !important;
}
.publication-copy,
.dwdg-pub-card__copy {
padding-block: clamp(34px, 4.2vw, 58px) !important;
}
@media (max-width: 760px) {
.publication-card .report-preview,
.dwdg-pub-card__preview {
min-height: clamp(260px, 82vw, 360px) !important;
}
.publication-card .report-cover-media,
.publication-card .report-cover,
.dwdg-pub-card__preview > div[style*="aspect-ratio"],
.dwdg-pub-card__cover {
width: min(230px, 68%) !important;
}
}
:root {
--fs-display: clamp(3rem, 6.4vw, 5.5rem);
--fs-title:   clamp(1.3rem, 2vw, 1.75rem);
--fs-sub:     clamp(0.9rem, 1.3vw, 1.05rem);
--fs-body:    clamp(0.82rem, 1.05vw, 0.92rem);
--fs-small:   clamp(0.7rem, 0.9vw, 0.8rem);
}
.expertise {
background: linear-gradient(270deg,
#13BD62 0%, #33CD77 9%, #5CD58D 48%, #A1EAB0 85%, #A1EAB0 100%
) !important;
padding-block: clamp(64px, 7vw, 100px) !important;
}
.expertise > .wrap {
width: 100% !important;
max-width: none !important;
margin: 0 !important;
padding-inline: clamp(20px, 16.8vw, 206px) !important;
}
.expertise .expertise-green-block {
width: 100% !important;
max-width: none !important;
margin: 0 auto !important;
padding: 0 !important;
border-radius: 0 !important;
background: transparent !important;
box-shadow: none !important;
overflow: visible !important;
display: flex !important;
flex-direction: column !important;
align-items: stretch !important;
}
.expertise .expertise-green-block::before { display: none !important; }
.expertise .expertise-caption-top {
max-width: 640px !important;
margin: 0 auto clamp(24px, 2.8vw, 32px) !important;
font-size: var(--fs-body) !important;
font-weight: 400 !important;
line-height: 1.55 !important;
letter-spacing: -0.005em !important;
color: var(--ink-soft) !important;
text-align: left !important;
width: 100% !important;
}
.expertise .expertise-caption-top strong {
font-weight: 600 !important;
color: var(--ink) !important;
}
.expertise .expertise-green-block .expertise-grid {
max-width: 640px !important;
width: 100% !important;
min-height: 0 !important;
margin: 0 auto !important;
display: grid !important;
grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr) !important;
gap: 0 clamp(24px, 3vw, 48px) !important;
align-items: start !important;
padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 44px) !important;
background: rgba(255, 255, 255, 0.52) !important;
border: 1px solid rgba(255, 255, 255, 0.65) !important;
border-radius: 18px !important;
box-shadow:
0 1px 0 rgba(255, 255, 255, 0.55) inset,
0 14px 40px rgba(8, 80, 36, 0.10) !important;
backdrop-filter: blur(14px) saturate(140%) !important;
-webkit-backdrop-filter: blur(14px) saturate(140%) !important;
}
.expertise .expertise-green-block h2 {
color: var(--ink) !important;
font-size: var(--fs-sub) !important;
font-weight: 800 !important;
line-height: 1.15 !important;
letter-spacing: -0.025em !important;
margin: 0 0 clamp(14px, 1.8vw, 20px) !important;
}
.expertise .expertise-green-block .link-list {
display: grid !important;
gap: clamp(8px, 0.95vw, 11px) !important;
margin: 0 !important;
padding: 0 !important;
list-style: none !important;
}
.expertise .expertise-green-block .link-list li {
margin: 0 !important;
padding: 0 !important;
min-height: 20px !important;
display: flex !important;
align-items: center !important;
}
.expertise .expertise-green-block .link-list a {
display: inline-flex !important;
align-items: center !important;
gap: 10px !important;
color: var(--ink) !important;
font-size: var(--fs-body) !important;
font-weight: 500 !important;
line-height: 1.4 !important;
letter-spacing: -0.005em !important;
transition: color 220ms cubic-bezier(.16,1,.3,1),
transform 220ms cubic-bezier(.16,1,.3,1) !important;
}
.expertise .expertise-green-block .link-list a::before {
content: "↗" !important;
flex-shrink: 0 !important;
color: #0aa04b !important;
font-size: 1em !important;
font-weight: 300 !important;
line-height: 1 !important;
transition: transform 320ms cubic-bezier(.34,1.56,.64,1),
color 220ms cubic-bezier(.16,1,.3,1) !important;
}
.expertise .expertise-green-block .link-list a:hover {
color: #08763a !important;
transform: translateX(5px) !important;
}
.expertise .expertise-green-block .link-list a:hover::before {
transform: translate(5px, -5px) scale(1.15) !important;
color: #08763a !important;
}
.expertise .expertise-divider {
display: flex !important;
align-items: flex-start !important;
justify-content: center !important;
width: 80px !important;
padding-top: clamp(2px, 0.4vw, 6px) !important;
align-self: start !important;
margin-top: 0 !important;
}
.expertise .expertise-vector {
width: 56px !important;
height: auto !important;
filter: drop-shadow(0 4px 10px rgba(10, 160, 75, 0.16)) !important;
}
@media (max-width: 760px) {
.expertise { padding-block: 44px !important; }
.expertise > .wrap { padding-inline: 20px !important; }
.expertise .expertise-caption-top { margin-bottom: 20px !important; }
.expertise .expertise-green-block .expertise-grid {
grid-template-columns: 1fr !important;
padding: 28px 22px !important;
gap: 26px 0 !important;
border-radius: 14px !important;
}
.expertise .expertise-divider { display: none !important; }
.expertise .expertise-green-block h2 { margin-bottom: 12px !important; }
}
.future-head {
display: block !important;
grid-template-columns: none !important;
margin-bottom: clamp(40px, 6vw, 72px) !important;
}
.future-head h2 {
margin: 0 0 clamp(12px, 1.6vw, 18px) !important;
}
.future-head p {
max-width: 720px !important;
margin: 0 !important;
}
.convictions {
grid-template-columns: 1fr 1fr !important;
gap: 0 clamp(40px, 6vw, 80px) !important;
}
.conviction-visual {
justify-content: flex-end !important;
}
@media (max-width: 760px) {
.conviction-visual {
justify-content: flex-start !important;
}
}
.home .expertise,
.front-page .expertise,
body.home .expertise,
.expertise {
padding-block: clamp(30px, 4.2vw, 46px) !important;
}
.home .expertise > .wrap,
.front-page .expertise > .wrap,
body.home .expertise > .wrap,
.expertise > .wrap {
padding-inline: clamp(22px, 15vw, 188px) !important;
}
.home .expertise-caption-top,
.front-page .expertise-caption-top,
body.home .expertise-caption-top,
.expertise .expertise-caption-top {
max-width: 690px !important;
margin: 0 auto 18px !important;
font-size: clamp(.94rem, 1.35vw, 1.12rem) !important;
line-height: 1.22 !important;
letter-spacing: -0.025em !important;
}
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
max-width: 690px !important;
min-height: 288px !important;
grid-template-columns: minmax(0,1fr) 76px minmax(0,1fr) !important;
gap: 0 clamp(28px, 4vw, 52px) !important;
align-items: start !important;
padding: clamp(34px, 4.4vw, 46px) clamp(34px, 5vw, 54px) !important;
border-radius: 18px !important;
background: rgba(255,255,255,.46) !important;
border: 1px solid rgba(255,255,255,.58) !important;
box-shadow: inset 0 1px 0 rgba(255,255,255,.36) !important;
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
}
.home .expertise-green-block h2,
.front-page .expertise-green-block h2,
body.home .expertise-green-block h2,
.expertise .expertise-green-block h2 {
font-size: clamp(1.35rem, 2vw, 1.62rem) !important;
line-height: .98 !important;
margin: 0 0 15px !important;
letter-spacing: -0.045em !important;
}
.home .expertise-green-block .link-list,
.front-page .expertise-green-block .link-list,
body.home .expertise-green-block .link-list,
.expertise .expertise-green-block .link-list {
gap: 12px !important;
}
.home .expertise-green-block .link-list a,
.front-page .expertise-green-block .link-list a,
body.home .expertise-green-block .link-list a,
.expertise .expertise-green-block .link-list a {
font-size: clamp(.88rem, 1.22vw, 1rem) !important;
line-height: 1.18 !important;
gap: 13px !important;
letter-spacing: -0.025em !important;
}
.home .expertise-green-block .link-list a::before,
.front-page .expertise-green-block .link-list a::before,
body.home .expertise-green-block .link-list a::before,
.expertise .expertise-green-block .link-list a::before {
font-size: .96em !important;
transform: translateY(-1px) !important;
}
.home .expertise-divider,
.front-page .expertise-divider,
body.home .expertise-divider,
.expertise .expertise-divider {
width: 76px !important;
align-self: start !important;
margin-top: 0 !important;
padding-top: 2px !important;
}
.home .expertise-vector,
.front-page .expertise-vector,
body.home .expertise-vector,
.expertise .expertise-vector {
width: 66px !important;
filter: drop-shadow(0 8px 12px rgba(19,189,98,.18)) !important;
}
@media (max-width: 760px) {
.home .expertise,
.front-page .expertise,
body.home .expertise,
.expertise {
padding-block: 28px !important;
}
.home .expertise > .wrap,
.front-page .expertise > .wrap,
body.home .expertise > .wrap,
.expertise > .wrap {
padding-inline: 18px !important;
}
.home .expertise-caption-top,
.front-page .expertise-caption-top,
body.home .expertise-caption-top,
.expertise .expertise-caption-top {
margin-bottom: 16px !important;
font-size: .95rem !important;
}
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
grid-template-columns: 1fr !important;
min-height: 0 !important;
padding: 28px 24px !important;
gap: 24px !important;
border-radius: 16px !important;
}
.home .expertise-divider,
.front-page .expertise-divider,
body.home .expertise-divider,
.expertise .expertise-divider {
display: none !important;
}
}
:root {
--fs-display: clamp(3rem, 6.4vw, 5.5rem);
--fs-title:   clamp(1.3rem, 2vw, 1.75rem);
--fs-sub:     clamp(0.9rem, 1.3vw, 1.05rem);
--fs-body:    clamp(0.82rem, 1.05vw, 0.92rem);
--fs-small:   clamp(0.7rem, 0.9vw, 0.8rem);
}
.home .expertise,
.front-page .expertise,
body.home .expertise,
.expertise {
padding-block: clamp(28px, 3.8vw, 42px) !important;
}
.home .expertise > .wrap,
.front-page .expertise > .wrap,
body.home .expertise > .wrap,
.expertise > .wrap {
padding-inline: clamp(20px, 18vw, 230px) !important;
}
.home .expertise-caption-top,
.front-page .expertise-caption-top,
body.home .expertise-caption-top,
.expertise .expertise-caption-top {
max-width: 620px !important;
margin: 0 auto clamp(14px, 2vw, 20px) !important;
font-size: var(--fs-body) !important;
line-height: 1.4 !important;
letter-spacing: -0.005em !important;
color: var(--ink) !important;
}
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
max-width: 620px !important;
min-height: 0 !important;
grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr) !important;
gap: clamp(22px, 3.4vw, 38px) !important;
align-items: start !important;
padding: clamp(28px, 3.4vw, 36px) clamp(28px, 4vw, 42px) !important;
border-radius: 16px !important;
background: rgba(255,255,255,.43) !important;
border: 1px solid rgba(255,255,255,.58) !important;
box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 18px 46px rgba(0, 95, 42, .08) !important;
backdrop-filter: blur(12px) saturate(1.08) !important;
-webkit-backdrop-filter: blur(12px) saturate(1.08) !important;
}
.home .expertise-green-block h2,
.front-page .expertise-green-block h2,
body.home .expertise-green-block h2,
.expertise .expertise-green-block h2 {
font-size: var(--fs-sub) !important;
font-weight: 800 !important;
line-height: 1.1 !important;
letter-spacing: -0.025em !important;
margin: 0 0 13px !important;
}
.home .expertise-green-block .link-list,
.front-page .expertise-green-block .link-list,
body.home .expertise-green-block .link-list,
.expertise .expertise-green-block .link-list {
display: grid !important;
gap: 9px !important;
margin: 0 !important;
padding: 0 !important;
}
.home .expertise-green-block .link-list a,
.front-page .expertise-green-block .link-list a,
body.home .expertise-green-block .link-list a,
.expertise .expertise-green-block .link-list a {
font-size: var(--fs-body) !important;
font-weight: 500 !important;
line-height: 1.35 !important;
letter-spacing: -0.005em !important;
gap: 10px !important;
}
.home .expertise-green-block .link-list a::before,
.front-page .expertise-green-block .link-list a::before,
body.home .expertise-green-block .link-list a::before,
.expertise .expertise-green-block .link-list a::before {
font-size: .92em !important;
transform: translateY(-1px) !important;
}
.home .expertise-divider,
.front-page .expertise-divider,
body.home .expertise-divider,
.expertise .expertise-divider {
width: 54px !important;
margin-top: 2px !important;
padding-top: 0 !important;
}
.home .expertise-vector,
.front-page .expertise-vector,
body.home .expertise-vector,
.expertise .expertise-vector {
width: 48px !important;
filter: drop-shadow(0 7px 10px rgba(19,189,98,.16)) !important;
}
.future {
padding: clamp(48px, 6vw, 78px) 0 clamp(54px, 7vw, 88px) !important;
}
.future-head {
max-width: 720px !important;
margin: 0 0 clamp(26px, 4vw, 42px) !important;
text-align: left !important;
}
.future-head h2 {
font-size: var(--fs-title) !important;
line-height: 1.1 !important;
letter-spacing: -0.025em !important;
margin: 0 0 12px !important;
}
.future-head p {
max-width: 690px !important;
font-size: var(--fs-body) !important;
line-height: 1.55 !important;
letter-spacing: -0.005em !important;
margin: 0 !important;
}
.generation-grid,
.dwdg-formations-row {
display: grid !important;
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
justify-content: stretch !important;
align-items: stretch !important;
gap: clamp(18px, 3vw, 34px) !important;
width: 100% !important;
}
.generation-card,
.dwdg-generation-card {
width: 100% !important;
max-width: none !important;
display: flex !important;
flex-direction: column !important;
border-radius: 18px !important;
text-align: left !important;
}
.generation-img,
.dwdg-generation-card__img {
height: clamp(132px, 14vw, 160px) !important;
}
.generation-body,
.dwdg-generation-card__body {
flex: 1 1 auto !important;
min-height: 0 !important;
align-items: flex-start !important;
justify-content: flex-start !important;
gap: 10px !important;
padding: 20px 20px 22px !important;
text-align: left !important;
}
.generation-body h3,
.dwdg-generation-card__body h3 {
font-size: var(--fs-sub) !important;
line-height: 1.1 !important;
letter-spacing: -0.025em !important;
font-weight: 800 !important;
margin: 0 !important;
}
.generation-body p,
.dwdg-generation-card__body p {
font-size: var(--fs-body) !important;
line-height: 1.45 !important;
letter-spacing: -0.005em !important;
margin: 0 !important;
color: var(--ink-soft) !important;
}
.generation-body .button,
.dwdg-generation-card__body .button {
margin-top: auto !important;
font-size: var(--fs-small) !important;
font-weight: 600 !important;
}
@media (max-width: 860px) {
.generation-grid,
.dwdg-formations-row {
grid-template-columns: 1fr !important;
max-width: 420px !important;
margin-inline: 0 auto !important;
}
}
@media (max-width: 760px) {
.home .expertise > .wrap,
.front-page .expertise > .wrap,
body.home .expertise > .wrap,
.expertise > .wrap {
padding-inline: 18px !important;
}
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
grid-template-columns: 1fr !important;
max-width: 420px !important;
padding: 24px 22px !important;
gap: 22px !important;
}
.home .expertise-divider,
.front-page .expertise-divider,
body.home .expertise-divider,
.expertise .expertise-divider {
display: none !important;
}
}
.home .expertise,
.front-page .expertise,
body.home .expertise,
.expertise {
padding-block: clamp(34px, 4.2vw, 50px) !important;
}
.home .expertise > .wrap,
.front-page .expertise > .wrap,
body.home .expertise > .wrap,
.expertise > .wrap {
padding-inline: clamp(20px, 12vw, 160px) !important;
}
.home .expertise-caption-top,
.front-page .expertise-caption-top,
body.home .expertise-caption-top,
.expertise .expertise-caption-top {
max-width: 690px !important;
margin: 0 auto clamp(16px, 2vw, 22px) !important;
font-size: clamp(.9rem, 1.15vw, 1rem) !important;
line-height: 1.35 !important;
letter-spacing: -0.015em !important;
}
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
width: 100% !important;
max-width: 690px !important;
min-height: 0 !important;
grid-template-columns: minmax(0, 1fr) 68px minmax(0, 1fr) !important;
gap: clamp(26px, 4vw, 46px) !important;
align-items: start !important;
padding: clamp(32px, 3.5vw, 40px) clamp(36px, 4.5vw, 52px) !important;
border-radius: 18px !important;
background: rgba(255,255,255,.52) !important;
border: 1px solid rgba(255,255,255,.68) !important;
box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 18px 46px rgba(0, 95, 42, .08) !important;
backdrop-filter: blur(10px) saturate(1.06) !important;
-webkit-backdrop-filter: blur(10px) saturate(1.06) !important;
}
.home .expertise-green-block h2,
.front-page .expertise-green-block h2,
body.home .expertise-green-block h2,
.expertise .expertise-green-block h2 {
font-size: clamp(1.25rem, 1.8vw, 1.55rem) !important;
line-height: 1.05 !important;
letter-spacing: -0.035em !important;
margin: 0 0 16px !important;
}
.home .expertise-green-block .link-list,
.front-page .expertise-green-block .link-list,
body.home .expertise-green-block .link-list,
.expertise .expertise-green-block .link-list {
gap: 13px !important;
}
.home .expertise-green-block .link-list a,
.front-page .expertise-green-block .link-list a,
body.home .expertise-green-block .link-list a,
.expertise .expertise-green-block .link-list a {
font-size: clamp(.95rem, 1.2vw, 1.08rem) !important;
line-height: 1.28 !important;
font-weight: 500 !important;
letter-spacing: -0.02em !important;
gap: 14px !important;
}
.home .expertise-green-block .link-list a::before,
.front-page .expertise-green-block .link-list a::before,
body.home .expertise-green-block .link-list a::before,
.expertise .expertise-green-block .link-list a::before {
font-size: 1.05em !important;
}
.home .expertise-divider,
.front-page .expertise-divider,
body.home .expertise-divider,
.expertise .expertise-divider {
display: flex !important;
width: 68px !important;
margin-top: 2px !important;
}
.home .expertise-vector,
.front-page .expertise-vector,
body.home .expertise-vector,
.expertise .expertise-vector {
width: 60px !important;
height: auto !important;
filter: drop-shadow(0 8px 12px rgba(19,189,98,.18)) !important;
}
.generation-grid,
.dwdg-formations-row {
grid-template-columns: repeat(3, minmax(0, 280px)) !important;
justify-content: start !important;
align-items: stretch !important;
gap: clamp(20px, 3.5vw, 48px) !important;
width: 100% !important;
}
.generation-card,
.dwdg-generation-card {
width: 100% !important;
max-width: 280px !important;
}
.generation-body,
.dwdg-generation-card__body {
padding: 22px 22px 24px !important;
gap: 12px !important;
text-align: left !important;
align-items: flex-start !important;
}
@media (max-width: 920px) {
.generation-grid,
.dwdg-formations-row {
grid-template-columns: repeat(2, minmax(0, 280px)) !important;
justify-content: start !important;
}
}
@media (max-width: 760px) {
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
grid-template-columns: 1fr !important;
max-width: 420px !important;
padding: 28px 24px !important;
gap: 22px !important;
}
.home .expertise-divider,
.front-page .expertise-divider,
body.home .expertise-divider,
.expertise .expertise-divider {
display: none !important;
}
.generation-grid,
.dwdg-formations-row {
grid-template-columns: 1fr !important;
justify-content: center !important;
justify-items: center !important;
max-width: 280px !important;
margin-inline: auto !important;
}
.generation-body,
.dwdg-generation-card__body {
text-align: center !important;
align-items: center !important;
}
}
.home .expertise,
.front-page .expertise,
body.home .expertise,
.expertise {
padding-block: clamp(30px, 3.8vw, 46px) !important;
}
.home .expertise-caption-top,
.front-page .expertise-caption-top,
body.home .expertise-caption-top,
.expertise .expertise-caption-top {
max-width: 760px !important;
margin: 0 auto clamp(14px, 1.8vw, 20px) !important;
font-size: clamp(.95rem, 1.25vw, 1.12rem) !important;
line-height: 1.32 !important;
letter-spacing: -0.02em !important;
color: #0c0d0b !important;
}
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
max-width: 760px !important;
width: min(100%, 760px) !important;
min-height: 0 !important;
margin-inline: auto !important;
grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr) !important;
align-items: center !important;
column-gap: clamp(34px, 5vw, 58px) !important;
padding: clamp(24px, 2.7vw, 32px) clamp(34px, 5vw, 58px) !important;
border-radius: clamp(20px, 2.2vw, 28px) !important;
background: linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.34)) !important;
border: 1px solid rgba(255,255,255,.72) !important;
box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 18px 44px rgba(0, 95, 42, .075) !important;
backdrop-filter: blur(12px) saturate(1.08) !important;
-webkit-backdrop-filter: blur(12px) saturate(1.08) !important;
}
.home .expertise-green-block h2,
.front-page .expertise-green-block h2,
body.home .expertise-green-block h2,
.expertise .expertise-green-block h2 {
font-size: clamp(1.45rem, 2.15vw, 1.9rem) !important;
line-height: 1.02 !important;
letter-spacing: -0.04em !important;
margin: 0 0 clamp(14px, 1.6vw, 18px) !important;
font-weight: 800 !important;
}
.home .expertise-green-block .link-list,
.front-page .expertise-green-block .link-list,
body.home .expertise-green-block .link-list,
.expertise .expertise-green-block .link-list {
gap: clamp(10px, 1.15vw, 13px) !important;
}
.home .expertise-green-block .link-list a,
.front-page .expertise-green-block .link-list a,
body.home .expertise-green-block .link-list a,
.expertise .expertise-green-block .link-list a {
font-size: clamp(1rem, 1.35vw, 1.18rem) !important;
line-height: 1.16 !important;
font-weight: 500 !important;
letter-spacing: -0.025em !important;
gap: 14px !important;
}
.home .expertise-divider,
.front-page .expertise-divider,
body.home .expertise-divider,
.expertise .expertise-divider {
width: 72px !important;
align-self: center !important;
justify-content: center !important;
margin-top: 22px !important;
}
.home .expertise-vector,
.front-page .expertise-vector,
body.home .expertise-vector,
.expertise .expertise-vector {
width: 58px !important;
height: auto !important;
opacity: .96 !important;
}
.dwdg-empty-programs {
grid-column: 1 / -1;
width: 100%;
max-width: 620px;
margin: 0;
padding: 18px 20px;
border-radius: 16px;
background: rgba(255,255,255,.55);
color: var(--ink-soft, #34352f);
font-size: var(--fs-body, .92rem);
line-height: 1.5;
}
.program-single,
.program-archive {
background: var(--paper, #fffdf8);
color: var(--ink, #0c0d0b);
}
.program-hero,
.program-archive-hero {
padding: clamp(110px, 13vw, 160px) 0 clamp(42px, 6vw, 76px);
background: radial-gradient(circle at 78% 10%, rgba(18,201,95,.2), transparent 34%), var(--paper, #fffdf8);
}
.program-hero-grid {
display: grid;
grid-template-columns: minmax(0, .85fr) minmax(260px, .72fr);
gap: clamp(28px, 6vw, 72px);
align-items: center;
}
.program-hero-copy h1,
.program-archive-hero h1 {
margin: 0 0 18px;
font-size: clamp(2.6rem, 6vw, 5rem);
line-height: .95;
letter-spacing: -0.055em;
font-weight: 800;
}
.program-lead,
.program-archive-hero p {
max-width: 560px;
margin: 0 0 24px;
color: var(--ink-soft, #34352f);
font-size: var(--fs-body, .92rem);
line-height: 1.55;
}
.program-hero-media {
margin: 0;
border-radius: 28px;
overflow: hidden;
aspect-ratio: 4 / 3;
background: var(--soft, #eee9e4);
}
.program-hero-media img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.program-content-section {
padding: clamp(22px, 4vw, 44px) 0 clamp(38px, 6vw, 72px);
}
.program-content {
color: var(--ink-soft, #34352f);
font-size: var(--fs-body, .92rem);
line-height: 1.65;
}
.program-content > *:first-child { margin-top: 0; }
.program-content > *:last-child { margin-bottom: 0; }
.program-carousel-section {
padding: clamp(44px, 6vw, 84px) 0;
background: linear-gradient(135deg, rgba(170,239,193,.65), rgba(18,201,95,.9));
}
.program-carousel-head {
display: grid;
grid-template-columns: minmax(0, .8fr) minmax(240px, .7fr);
gap: 24px;
align-items: end;
margin-bottom: clamp(20px, 3vw, 34px);
}
.program-carousel-head h2 {
margin: 0;
font-size: var(--fs-title, clamp(1.3rem, 2vw, 1.75rem));
line-height: 1.1;
letter-spacing: -0.025em;
font-weight: 800;
}
.program-carousel-head p {
margin: 0;
color: var(--ink-soft, #34352f);
font-size: var(--fs-body, .92rem);
line-height: 1.55;
}
.program-carousel {
display: grid;
grid-auto-flow: column;
grid-auto-columns: minmax(246px, 280px);
gap: clamp(18px, 2.5vw, 28px);
overflow-x: auto;
overflow-y: visible;
overscroll-behavior-x: contain;
scroll-snap-type: x proximity;
padding: 4px 0 18px;
-webkit-overflow-scrolling: touch;
}
.program-carousel-card {
scroll-snap-align: start;
width: 100% !important;
max-width: 280px !important;
}
.program-carousel::-webkit-scrollbar { height: 8px; }
.program-carousel::-webkit-scrollbar-track { background: rgba(255,255,255,.28); border-radius: 999px; }
.program-carousel::-webkit-scrollbar-thumb { background: rgba(12,13,11,.28); border-radius: 999px; }
@media (max-width: 760px) {
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
grid-template-columns: 1fr !important;
max-width: 420px !important;
padding: 28px 24px !important;
gap: 24px !important;
}
.program-hero-grid,
.program-carousel-head {
grid-template-columns: 1fr;
}
.program-hero,
.program-archive-hero {
padding-top: 96px;
}
}
.home .expertise,
.front-page .expertise,
body.home .expertise,
.expertise {
padding-block: clamp(26px, 3.2vw, 38px) !important;
}
.home .expertise > .wrap,
.front-page .expertise > .wrap,
body.home .expertise > .wrap,
.expertise > .wrap {
padding-inline: clamp(20px, 9vw, 144px) !important;
}
.home .expertise-caption-top,
.front-page .expertise-caption-top,
body.home .expertise-caption-top,
.expertise .expertise-caption-top {
width: min(100%, 584px) !important;
max-width: 584px !important;
margin: 0 auto clamp(16px, 1.7vw, 22px) !important;
text-align: left !important;
font-size: clamp(1rem, 1.45vw, 1.22rem) !important;
line-height: 1.22 !important;
letter-spacing: -0.035em !important;
color: #0c0d0b !important;
}
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
width: min(100%, 680px) !important;
max-width: 680px !important;
min-height: 0 !important;
margin-inline: auto !important;
display: grid !important;
grid-template-columns: minmax(230px, 1fr) 48px minmax(230px, 1fr) !important;
column-gap: clamp(24px, 3.4vw, 38px) !important;
align-items: start !important;
padding: clamp(30px, 3.1vw, 38px) clamp(38px, 4vw, 48px) !important;
border-radius: clamp(18px, 1.8vw, 24px) !important;
background: linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.35)) !important;
border: 1px solid rgba(255,255,255,.72) !important;
box-shadow: inset 0 1px 0 rgba(255,255,255,.48), 0 16px 38px rgba(0, 95, 42, .07) !important;
backdrop-filter: blur(12px) saturate(1.08) !important;
-webkit-backdrop-filter: blur(12px) saturate(1.08) !important;
}
.home .expertise-green-block h2,
.front-page .expertise-green-block h2,
body.home .expertise-green-block h2,
.expertise .expertise-green-block h2 {
font-size: clamp(1.55rem, 2vw, 1.95rem) !important;
line-height: 1 !important;
letter-spacing: -0.045em !important;
margin: 0 0 clamp(14px, 1.4vw, 18px) !important;
font-weight: 800 !important;
}
.home .expertise-green-block .link-list,
.front-page .expertise-green-block .link-list,
body.home .expertise-green-block .link-list,
.expertise .expertise-green-block .link-list {
display: grid !important;
gap: clamp(9px, 1vw, 12px) !important;
margin: 0 !important;
padding: 0 !important;
}
.home .expertise-green-block .link-list li,
.front-page .expertise-green-block .link-list li,
body.home .expertise-green-block .link-list li,
.expertise .expertise-green-block .link-list li {
min-width: 0 !important;
}
.home .expertise-green-block .link-list a,
.front-page .expertise-green-block .link-list a,
body.home .expertise-green-block .link-list a,
.expertise .expertise-green-block .link-list a {
font-size: clamp(1rem, 1.25vw, 1.16rem) !important;
line-height: 1.14 !important;
font-weight: 500 !important;
letter-spacing: -0.025em !important;
gap: 13px !important;
white-space: nowrap !important;
}
.home .expertise-green-block .link-list a::before,
.front-page .expertise-green-block .link-list a::before,
body.home .expertise-green-block .link-list a::before,
.expertise .expertise-green-block .link-list a::before {
font-size: 1.02em !important;
transform: translateY(-1px) !important;
flex: 0 0 auto !important;
}
.home .expertise-divider,
.front-page .expertise-divider,
body.home .expertise-divider,
.expertise .expertise-divider {
width: 48px !important;
display: flex !important;
align-self: start !important;
justify-content: center !important;
margin-top: 0 !important;
padding-top: 0 !important;
}
.home .expertise-vector,
.front-page .expertise-vector,
body.home .expertise-vector,
.expertise .expertise-vector {
width: 46px !important;
height: auto !important;
opacity: .96 !important;
filter: drop-shadow(0 7px 10px rgba(19,189,98,.16)) !important;
}
@media (max-width: 760px) {
.home .expertise-caption-top,
.front-page .expertise-caption-top,
body.home .expertise-caption-top,
.expertise .expertise-caption-top {
width: min(100%, 420px) !important;
max-width: 420px !important;
font-size: 1rem !important;
line-height: 1.28 !important;
}
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
grid-template-columns: 1fr !important;
width: min(100%, 420px) !important;
max-width: 420px !important;
padding: 28px 24px !important;
gap: 22px !important;
}
.home .expertise-divider,
.front-page .expertise-divider,
body.home .expertise-divider,
.expertise .expertise-divider {
display: none !important;
}
.home .expertise-green-block .link-list a,
.front-page .expertise-green-block .link-list a,
body.home .expertise-green-block .link-list a,
.expertise .expertise-green-block .link-list a {
white-space: normal !important;
}
}
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
padding-block: clamp(22px, 2.35vw, 30px) !important;
padding-inline: clamp(38px, 4vw, 48px) !important;
}
.home .expertise-green-block h2,
.front-page .expertise-green-block h2,
body.home .expertise-green-block h2,
.expertise .expertise-green-block h2 {
margin-bottom: clamp(10px, 1vw, 13px) !important;
}
.home .expertise-green-block .link-list,
.front-page .expertise-green-block .link-list,
body.home .expertise-green-block .link-list,
.expertise .expertise-green-block .link-list {
gap: clamp(7px, .75vw, 9px) !important;
}
@media (max-width: 760px) {
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
padding-block: 24px !important;
}
}
.home .expertise > .wrap,
.front-page .expertise > .wrap,
body.home .expertise > .wrap,
.expertise > .wrap {
width: 100% !important;
max-width: none !important;
padding-inline: clamp(20px, 4vw, 56px) !important;
margin-inline: auto !important;
}
.home .expertise-green-block,
.front-page .expertise-green-block,
body.home .expertise-green-block,
.expertise .expertise-green-block {
width: 100% !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
}
.home .expertise-caption-top,
.front-page .expertise-caption-top,
body.home .expertise-caption-top,
.expertise .expertise-caption-top {
width: min(100%, 720px) !important;
max-width: 720px !important;
margin-inline: auto !important;
text-align: left !important;
}
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
width: min(100%, 660px) !important;
max-width: 660px !important;
margin-inline: auto !important;
grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr) !important;
column-gap: clamp(24px, 3.4vw, 38px) !important;
padding-block: clamp(18px, 2vw, 24px) !important;
padding-inline: clamp(28px, 3.2vw, 40px) !important;
}
.home .expertise-divider,
.front-page .expertise-divider,
body.home .expertise-divider,
.expertise .expertise-divider {
width: 54px !important;
}
.home .expertise-vector,
.front-page .expertise-vector,
body.home .expertise-vector,
.expertise .expertise-vector {
width: 44px !important;
}
.home .expertise-green-block h2,
.front-page .expertise-green-block h2,
body.home .expertise-green-block h2,
.expertise .expertise-green-block h2 {
margin-bottom: clamp(8px, .85vw, 11px) !important;
}
.home .expertise-green-block .link-list,
.front-page .expertise-green-block .link-list,
body.home .expertise-green-block .link-list,
.expertise .expertise-green-block .link-list {
gap: clamp(5px, .55vw, 7px) !important;
}
@media (max-width: 760px) {
.home .expertise-caption-top,
.front-page .expertise-caption-top,
body.home .expertise-caption-top,
.expertise .expertise-caption-top {
width: min(100%, 420px) !important;
max-width: 420px !important;
}
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
width: min(100%, 390px) !important;
max-width: 390px !important;
padding-block: 22px !important;
padding-inline: 22px !important;
}
}
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
min-height: 0 !important;
padding-block: clamp(12px, 1.4vw, 16px) !important;
}
.home .expertise-green-block .link-list,
.front-page .expertise-green-block .link-list,
body.home .expertise-green-block .link-list,
.expertise .expertise-green-block .link-list {
gap: clamp(3px, .35vw, 5px) !important;
}
@media (max-width: 760px) {
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
min-height: 0 !important;
padding-block: 16px !important;
}
}
.home .expertise-caption-top,
.front-page .expertise-caption-top,
body.home .expertise-caption-top,
.expertise .expertise-caption-top {
width: min(100%, 660px) !important;
max-width: 660px !important;
margin: 0 auto clamp(18px, 2vw, 24px) !important;
text-align: center !important;
font-size: clamp(0.88rem, 1.1vw, 0.98rem) !important;
font-weight: 400 !important;
line-height: 1.5 !important;
letter-spacing: -0.005em !important;
color: var(--ink) !important;
}
.home .expertise-caption-top strong,
.front-page .expertise-caption-top strong,
body.home .expertise-caption-top strong,
.expertise .expertise-caption-top strong {
font-weight: 700 !important;
color: var(--ink) !important;
}
.home .expertise-green-block h2,
.front-page .expertise-green-block h2,
body.home .expertise-green-block h2,
.expertise .expertise-green-block h2 {
font-size: clamp(1rem, 1.3vw, 1.15rem) !important;
font-weight: 800 !important;
line-height: 1.15 !important;
letter-spacing: -0.025em !important;
margin: 0 0 clamp(8px, 1vw, 12px) !important;
}
.home .expertise-green-block .link-list a,
.front-page .expertise-green-block .link-list a,
body.home .expertise-green-block .link-list a,
.expertise .expertise-green-block .link-list a {
font-size: clamp(0.82rem, 1.05vw, 0.92rem) !important;
font-weight: 500 !important;
line-height: 1.3 !important;
letter-spacing: -0.005em !important;
gap: 10px !important;
}
.home .expertise-green-block .link-list,
.front-page .expertise-green-block .link-list,
body.home .expertise-green-block .link-list,
.expertise .expertise-green-block .link-list {
gap: clamp(5px, 0.65vw, 8px) !important;
}
.home .expertise-green-block .expertise-grid,
.front-page .expertise-green-block .expertise-grid,
body.home .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
padding-block: clamp(20px, 2.4vw, 28px) !important;
padding-inline: clamp(30px, 3.4vw, 42px) !important;
}
.home .expertise-vector,
.front-page .expertise-vector,
body.home .expertise-vector,
.expertise .expertise-vector {
width: 44px !important;
}
@media (max-width: 760px) {
.home .expertise-caption-top,
.front-page .expertise-caption-top,
body.home .expertise-caption-top,
.expertise .expertise-caption-top {
width: min(100%, 390px) !important;
max-width: 390px !important;
}
}
.home .expertise .expertise-green-block .expertise-grid,
.front-page .expertise .expertise-green-block .expertise-grid,
body.home .expertise .expertise-green-block .expertise-grid {
max-width: 660px !important;
min-height: 0 !important;
padding: clamp(20px, 2.4vw, 28px) clamp(30px, 3.4vw, 42px) !important;
grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr) !important;
column-gap: clamp(24px, 3.4vw, 38px) !important;
row-gap: 0 !important;
align-items: start !important;
}
.home .expertise .expertise-green-block h2,
.front-page .expertise .expertise-green-block h2,
body.home .expertise .expertise-green-block h2 {
font-size: clamp(1rem, 1.3vw, 1.15rem) !important;
font-weight: 800 !important;
line-height: 1.15 !important;
letter-spacing: -0.025em !important;
margin: 0 0 clamp(8px, 1vw, 12px) !important;
}
.home .expertise .expertise-green-block .link-list,
.front-page .expertise .expertise-green-block .link-list,
body.home .expertise .expertise-green-block .link-list {
display: grid !important;
gap: clamp(5px, 0.65vw, 8px) !important;
}
.home .expertise .expertise-green-block .link-list a,
.front-page .expertise .expertise-green-block .link-list a,
body.home .expertise .expertise-green-block .link-list a {
font-size: clamp(0.82rem, 1.05vw, 0.92rem) !important;
font-weight: 500 !important;
line-height: 1.3 !important;
letter-spacing: -0.005em !important;
gap: 10px !important;
}
.home .expertise .expertise-divider,
.front-page .expertise .expertise-divider,
body.home .expertise .expertise-divider {
width: 54px !important;
height: auto !important;
margin-top: 0 !important;
padding-top: 3px !important;
align-self: start !important;
}
.home .expertise .expertise-vector,
.front-page .expertise .expertise-vector,
body.home .expertise .expertise-vector {
width: 44px !important;
height: auto !important;
}
.home .expertise .expertise-caption-top,
.front-page .expertise .expertise-caption-top,
body.home .expertise .expertise-caption-top {
width: min(100%, 660px) !important;
max-width: 660px !important;
margin: 0 auto clamp(18px, 2vw, 24px) !important;
text-align: center !important;
font-size: clamp(0.88rem, 1.1vw, 0.98rem) !important;
font-weight: 400 !important;
line-height: 1.5 !important;
letter-spacing: -0.005em !important;
color: var(--ink) !important;
}
.home .expertise .expertise-caption-top strong,
.front-page .expertise .expertise-caption-top strong,
body.home .expertise .expertise-caption-top strong {
font-weight: 700 !important;
color: var(--ink) !important;
}
@media (max-width: 760px) {
.home .expertise .expertise-green-block .expertise-grid,
.front-page .expertise .expertise-green-block .expertise-grid,
body.home .expertise .expertise-green-block .expertise-grid {
grid-template-columns: 1fr !important;
padding: 24px 22px !important;
column-gap: 0 !important;
row-gap: 22px !important;
}
.home .expertise .expertise-caption-top,
.front-page .expertise .expertise-caption-top,
body.home .expertise .expertise-caption-top {
width: min(100%, 390px) !important;
max-width: 390px !important;
}
.home .expertise .expertise-divider,
.front-page .expertise .expertise-divider,
body.home .expertise .expertise-divider {
display: none !important;
}
}
.home .expertise .expertise-green-block .expertise-grid,
.front-page .expertise .expertise-green-block .expertise-grid,
body.home .expertise .expertise-green-block .expertise-grid {
grid-template-columns: auto auto auto !important;
justify-content: center !important;
column-gap: clamp(40px, 5.5vw, 72px) !important;
}
.home .expertise .expertise-vector,
.front-page .expertise .expertise-vector,
body.home .expertise .expertise-vector {
width: 44px !important;
height: auto !important;
transform: translateY(3px) !important;
}
.home .expertise .expertise-divider,
.front-page .expertise .expertise-divider,
body.home .expertise .expertise-divider {
width: 44px !important;
padding-top: 0 !important;
margin-top: 0 !important;
align-self: start !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
height: calc(clamp(1rem, 1.3vw, 1.15rem) * 1.15) !important;
}
.home .works,
.home .expertise,
.home .publications,
.home .insights,
.front-page .works,
.front-page .expertise,
.front-page .publications,
.front-page .insights,
body.home .works,
body.home .expertise,
body.home .publications,
body.home .insights {
padding-top: var(--section) !important;
padding-bottom: var(--section) !important;
}
.home .works .work-copy p,
.front-page .works .work-copy p,
body.home .works .work-copy p {
font-size: clamp(0.82rem, 1.05vw, 0.92rem) !important;
line-height: 1.5 !important;
}
:root {
--section: clamp(36px, 4.5vw, 64px) !important;
}
.generation-img img {
object-position: center 25% !important;
}
.dwdg-nav-bar__links > li.has-sub::after {
content: '';
position: absolute;
left: -10px;
right: -10px;
top: 38px;
height: 26px;
pointer-events: auto;
}
.dwdg-nav-sub-panel {
transition:
opacity 180ms ease 90ms,
transform 180ms ease 90ms,
visibility 0s linear 260ms;
visibility: hidden;
}
.dwdg-nav-bar__links > li.has-sub:hover .dwdg-nav-sub-panel,
.dwdg-nav-bar__links > li.has-sub:focus-within .dwdg-nav-sub-panel {
visibility: visible;
transition-delay: 80ms, 80ms, 0s;
}
.dwdg-nav-sub-panel:hover {
opacity: 1;
pointer-events: auto;
transform: translateY(0);
visibility: visible;
}
/*! == /assets/css/scale.css == */
body { font-size: 15px; }
.hero-grid h1 {
font-size: clamp(2.2rem, 4.2vw, 3.8rem) !important;
line-height: 0.92 !important;
}
.hero-intro {
font-size: clamp(0.9rem, 1.3vw, 1.05rem) !important;
line-height: 1.5 !important;
letter-spacing: -0.01em !important;
}
.conviction-visual {
min-height: 200px !important;
}
.conviction {
width: 160px !important;
aspect-ratio: 1 !important;
font-size: 0.8rem !important;
font-weight: 700 !important;
letter-spacing: 0 !important;
line-height: 1.25 !important;
}
.conviction-light {
box-shadow: 0 0 40px rgba(18,201,95,.18) !important;
}
.conviction-strong {
margin-left: -12px !important;
box-shadow: 0 0 56px rgba(18,201,95,.28) !important;
}
.conviction-dot {
font-size: 0.85rem !important;
margin-inline: -4px -6px !important;
}
.convictions-label {
font-size: clamp(0.85rem, 1.3vw, 1rem) !important;
line-height: 1.3 !important;
letter-spacing: -0.01em !important;
white-space: nowrap !important;
}
.convictions {
grid-template-columns: minmax(200px, 0.9fr) minmax(320px, 1.45fr) !important;
gap: clamp(48px, 8vw, 112px) !important;
}
h2 {
font-size: clamp(1.4rem, 2.2vw, 1.9rem);
line-height: 1.05;
}
h3 {
font-size: clamp(0.95rem, 1.45vw, 1.2rem);
line-height: 1.15;
}
.join-copy p {
font-size: 22px !important;
line-height: 1.5 !important;
letter-spacing: -0.01em !important;
}
.work-copy p {
font-size: clamp(0.82rem, 1.05vw, 0.92rem);
line-height: 1.55;
}
.future-head h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.future-head p  { font-size: clamp(0.85rem, 1.1vw, 0.95rem); line-height: 1.55; }
.generation-body h3 { font-size: 1.35rem !important; }
.generation-body p  { font-size: 0.85rem; line-height: 1.5; }
.insight-copy h3 {
font-size: clamp(0.78rem, 1.15vw, 0.92rem) !important;
min-height: 80px !important;
padding: 10px 12px !important;
line-height: 1.2 !important;
letter-spacing: -0.02em !important;
}
#works-heading, #insights-heading, #pub-heading, #future-heading {
font-size: clamp(1.3rem, 2vw, 1.75rem) !important;
}
.footer-col-title  { font-size: 16px; }
.footer-sub-list li { font-size: 16px; }
.footer-copy, .footer-bottom > a { font-size: 16px; }
.eyebrow { font-size: 0.58rem !important; letter-spacing: 0.05em !important; }
@media (max-width: 760px) {
.conviction {
width: min(38vw, 140px) !important;
font-size: 0.7rem !important;
}
.conviction-strong { margin-left: -8px !important; }
}
/*! == /assets/css/sections.css == */
.expertise-services-wrap { display: none !important; }
.pub-grid { display: none !important; }
.eyebrow.on-image {
background: var(--green) !important;
color: #fff !important;
backdrop-filter: none;
-webkit-backdrop-filter: none;
}
.generation-img { position: relative; overflow: hidden; }
.dwdg-edit-img {
display: none;
position: absolute; inset: 0;
background: rgba(0,0,0,.5);
color: #fff;
align-items: center;
justify-content: center;
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
text-decoration: none;
}
.generation-img:hover .dwdg-edit-img { display: flex; }
.dwdg-generation-card {
overflow: hidden;
border: 1px solid rgba(255,255,255,.56);
border-radius: var(--radius-lg);
background: rgba(247,255,248,.72);
box-shadow: 0 20px 60px rgba(0,80,35,.1);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
max-width: 320px;
}
.dwdg-generation-card:hover {
transform: translateY(-4px);
background: rgba(255,255,255,.88);
box-shadow: 0 24px 80px rgba(0,80,35,.16);
}
.dwdg-generation-card__img {
height: 160px;
overflow: hidden;
}
.dwdg-generation-card__img img {
width: 100%; height: 100%; object-fit: cover;
transition: transform var(--t-slow) var(--ease), filter var(--t-slow) var(--ease);
}
.dwdg-generation-card:hover .dwdg-generation-card__img img {
transform: scale(1.05);
filter: saturate(1.06) brightness(1.02);
}
.dwdg-generation-card__body {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 14px;
padding: 26px 24px 28px;
}
.dwdg-generation-card__body h3 { font-size: 1.9rem; margin: 0; }
.dwdg-generation-card__body p  { font-size: 0.9375rem; line-height: 1.35; margin: 0; }
.dwdg-generation-card__body .button { margin-top: auto; }
.dwdg-pub-card {
display: grid;
grid-template-columns: minmax(200px,.75fr) minmax(320px,1.15fr);
overflow: hidden;
border: 1px solid var(--line);
border-radius: var(--radius-xl);
background: rgba(255,255,255,.82);
box-shadow: var(--shadow);
margin-block: 1.5em;
}
.dwdg-pub-card__preview {
display: grid;
place-items: center;
min-height: 220px;
padding: 36px;
background:
radial-gradient(circle at 70% 30%, rgba(18,201,95,.1), transparent 40%),
linear-gradient(135deg, rgba(255,255,255,.9), rgba(246,243,238,.95));
}
.dwdg-pub-card__cover {
position: relative;
width: min(170px,100%);
aspect-ratio: .72;
overflow: hidden;
border-radius: 6px;
background: #fafaf7;
box-shadow: 0 20px 40px rgba(0,0,0,.16);
padding: 28px 24px;
}
.dwdg-pub-card__cover::before {
content: '';
position: absolute; inset: 0;
background: linear-gradient(135deg, transparent 42%, rgba(18,201,95,.18) 42% 64%, transparent 64%);
}
.dwdg-pub-card__cover::after {
content: '';
position: absolute; inset: 0;
background: linear-gradient(45deg, transparent 48%, rgba(18,201,95,.32) 48% 66%, transparent 66%);
}
.dwdg-pub-card__cover > * { position: relative; z-index: 1; }
.dwdg-pub-card__cover-title {
display: block;
color: var(--green-deep);
font-size: 1rem;
font-weight: 800;
line-height: .95;
letter-spacing: -.05em;
}
.dwdg-pub-card__cover-desc {
max-width: 100px;
margin-top: 32px;
color: var(--ink);
font-size: .46rem;
font-weight: 600;
line-height: 1.3;
}
.dwdg-pub-card__cover-brand {
position: absolute;
bottom: 16px; left: 24px;
font-size: .9rem;
letter-spacing: -.12em;
}
.dwdg-pub-card__copy {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 20px;
padding: var(--card-pad);
background: rgba(255,255,255,.72);
}
.dwdg-pub-card__copy h3 {
max-width: 520px;
color: var(--ink);
font-size: clamp(1rem, 1.5vw, 1.3rem);
font-weight: 700;
line-height: 1.2;
letter-spacing: -0.025em;
margin: 0;
}
@media (max-width: 600px) {
.dwdg-pub-card { grid-template-columns: 1fr; }
.dwdg-pub-card__copy { padding: 28px 24px; }
.dwdg-pub-card__copy h3 { font-size: clamp(1.4rem, 7vw, 2rem); }
}
.dwdg-stat-block {
border-radius: var(--radius-lg);
padding: clamp(32px,5vw,56px) clamp(28px,5vw,56px);
margin-block: 1.5em;
position: relative;
overflow: hidden;
}
.dwdg-stat-block--green {
background: linear-gradient(135deg, #0aa04b 0%, #12c95f 60%, #58d986 100%);
color: #fff;
}
.dwdg-stat-block--dark {
background: var(--ink);
color: #fff;
}
.dwdg-stat-block__inner {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
gap: 12px;
}
.dwdg-stat-block__value {
display: block;
font-size: clamp(3.5rem, 9vw, 7rem);
font-weight: 800;
line-height: .9;
letter-spacing: -.06em;
}
.dwdg-stat-block--green .dwdg-stat-block__value { color: #fff; }
.dwdg-stat-block--dark  .dwdg-stat-block__value { color: var(--green); }
.dwdg-stat-block__label {
max-width: 480px;
font-size: clamp(1.1rem, 2.5vw, 1.6rem);
font-weight: 700;
line-height: 1.1;
letter-spacing: -.04em;
margin: 0;
color: inherit;
}
.dwdg-stat-block--green .dwdg-stat-block__label { color: rgba(255,255,255,.9); }
.dwdg-stat-block--dark  .dwdg-stat-block__label { color: rgba(255,255,255,.85); }
.dwdg-stat-block__context {
display: block;
font-size: .75rem;
font-weight: 600;
letter-spacing: .04em;
text-transform: uppercase;
opacity: .55;
}
.dwdg-highlight {
border-radius: var(--radius-md);
padding: clamp(24px,4vw,40px) clamp(24px,4vw,40px);
margin-block: 1.5em;
display: flex;
flex-direction: column;
gap: 14px;
border-left: 3px solid var(--green);
}
.dwdg-highlight--light {
background: rgba(18,201,95,.07);
border-left-color: var(--green);
}
.dwdg-highlight--green {
background: linear-gradient(135deg, rgba(10,160,75,.1), rgba(88,217,134,.14));
border-left-color: var(--green-deep);
}
.dwdg-highlight--dark {
background: var(--ink);
border-left-color: var(--green);
}
.dwdg-highlight__title {
font-size: clamp(1.1rem, 2.2vw, 1.45rem);
font-weight: 800;
line-height: 1.08;
letter-spacing: -.04em;
color: var(--ink);
margin: 0;
}
.dwdg-highlight--dark .dwdg-highlight__title { color: #fff; }
.dwdg-highlight__body {
font-size: clamp(.9rem, 1.5vw, 1.05rem);
line-height: 1.45;
color: var(--ink-soft);
margin: 0;
}
.dwdg-highlight--dark .dwdg-highlight__body { color: rgba(255,255,255,.72); }
.dwdg-highlight--dark .eyebrow { background: rgba(18,201,95,.25); color: var(--green); }
.dwdg-key-insight {
position: relative;
overflow: hidden;
border-radius: var(--radius-lg);
background: var(--card-bg);
border: 1px solid var(--line);
box-shadow: var(--shadow);
margin-block: 1.5em;
transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.dwdg-key-insight:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-hover);
}
.dwdg-key-insight__img {
position: relative;
height: 200px;
overflow: hidden;
}
.dwdg-key-insight__img img {
width: 100%; height: 100%; object-fit: cover;
transition: transform var(--t-slow) var(--ease);
}
.dwdg-key-insight:hover .dwdg-key-insight__img img { transform: scale(1.04); }
.dwdg-key-insight__img::after {
content: '';
position: absolute; inset: 0;
background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.22));
pointer-events: none;
}
.dwdg-key-insight__body {
display: flex;
flex-direction: column;
gap: 16px;
padding: 24px 28px 28px;
}
.dwdg-key-insight__body h3 {
font-size: clamp(.95rem, 1.7vw, 1.2rem);
line-height: 1.15;
letter-spacing: -.03em;
font-weight: 800;
margin: 0;
color: var(--ink);
}
.dwdg-conviction-duo {
position: relative;
display: flex;
align-items: center;
justify-content: center;
min-height: clamp(180px, 22vw, 280px);
margin-block: 1.5em;
}
.dwdg-expert-card {
display: flex;
flex-direction: column;
gap: 14px;
background: var(--card-bg);
border: 1px solid var(--line);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow);
transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.dwdg-expert-card:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-hover);
}
.dwdg-expert-card__img {
height: 180px;
overflow: hidden;
background: var(--soft);
}
.dwdg-expert-card__img img {
width: 100%; height: 100%; object-fit: cover; object-position: top center;
transition: transform var(--t-slow) var(--ease);
}
.dwdg-expert-card:hover .dwdg-expert-card__img img { transform: scale(1.04); }
.dwdg-expert-card__img--empty {
display: grid; place-items: center;
background: linear-gradient(135deg, rgba(18,201,95,.15), rgba(18,201,95,.05));
}
.dwdg-expert-card__img--empty span {
font-size: 3rem; font-weight: 800; color: var(--green); letter-spacing: -0.05em;
}
.dwdg-expert-card__body {
display: flex; flex-direction: column; gap: 8px;
padding: 20px 22px 24px;
}
.dwdg-expert-card__name {
font-size: 1rem; font-weight: 800; letter-spacing: -0.03em; color: var(--ink);
}
.dwdg-expert-card__role {
font-size: 0.78rem; font-weight: 700; color: var(--green-dark);
text-transform: uppercase; letter-spacing: 0.04em;
}
.dwdg-expert-card__bio {
font-size: 0.875rem; line-height: 1.45; color: var(--ink-soft); margin: 4px 0 6px;
}
.dwdg-expert-card__body .button { align-self: flex-start; margin-top: 4px; }
.dwdg-expertise-pill {
display: flex;
flex-direction: column;
overflow: hidden;
border-radius: var(--radius-md);
border: 1px solid var(--line);
background: var(--card-bg);
box-shadow: var(--shadow);
text-decoration: none;
color: var(--ink);
transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
a.dwdg-expertise-pill:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-hover);
border-color: rgba(18,201,95,.22);
}
.dwdg-expertise-pill__img {
height: 120px; overflow: hidden; background: var(--soft);
}
.dwdg-expertise-pill__img img {
width: 100%; height: 100%; object-fit: cover;
transition: transform var(--t-slow) var(--ease);
}
a.dwdg-expertise-pill:hover .dwdg-expertise-pill__img img { transform: scale(1.06); }
.dwdg-expertise-pill__label {
display: block; padding: 12px 16px;
font-size: 0.875rem; font-weight: 700; letter-spacing: -0.02em;
color: var(--ink);
}
.dwdg-contact-expert {
display: grid;
grid-template-columns: minmax(260px, 0.48fr) 1fr;
overflow: hidden;
border-radius: var(--radius-xl);
background: #eeeee9;
margin-block: 1.5em;
align-items: stretch;
min-height: 460px;
}
.dwdg-contact-expert__img {
min-height: 460px;
overflow: hidden;
position: relative;
align-self: stretch;
}
.dwdg-contact-expert__img img {
position: absolute;
inset: 0;
width: 100%; height: 100%;
object-fit: cover; object-position: top center;
display: block;
}
.dwdg-contact-expert__body {
display: flex; flex-direction: column; gap: 14px;
padding: clamp(36px,5vw,56px) clamp(36px,5vw,64px);
justify-content: center;
background: #eeeee9;
}
.dwdg-contact-expert .eyebrow {
display: inline-flex;
align-items: center;
padding: 6px 16px;
border-radius: 999px;
background: rgba(18,201,95,.12);
color: var(--green-deep);
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
width: fit-content;
}
.dwdg-contact-expert__name {
display: block;
font-size: clamp(1.8rem, 3.5vw, 2.8rem);
font-weight: 800;
letter-spacing: -0.04em;
line-height: 0.95;
color: var(--ink);
margin: 0;
}
.dwdg-contact-expert__role {
display: block;
font-size: 0.8rem;
font-weight: 800;
color: var(--green-deep);
text-transform: uppercase;
letter-spacing: 0.06em;
padding-bottom: 6px;
border-bottom: 1.5px solid var(--green-deep);
width: fit-content;
}
.dwdg-contact-expert__bio {
max-width: 520px;
font-size: clamp(0.875rem, 1.4vw, 1rem);
line-height: 1.6;
color: var(--ink-soft);
margin: 0;
}
.dwdg-contact-expert__email {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--green-deep);
font-size: 0.875rem;
font-weight: 600;
text-decoration: none;
border-bottom: 1px solid var(--green-deep);
padding-bottom: 2px;
width: fit-content;
transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.dwdg-contact-expert__email:hover { color: var(--green); border-color: var(--green); }
@media (max-width: 760px) {
.dwdg-contact-expert { grid-template-columns: 1fr; min-height: 0; }
.dwdg-contact-expert__img { min-height: 320px; }
}
.dwdg-sector-intro {
display: flex;
flex-direction: column;
gap: clamp(24px, 4vw, 40px);
margin-block: 1.5em;
}
.dwdg-sector-intro__title {
font-size: clamp(2.2rem, 5vw, 4.2rem);
font-weight: 800; line-height: 0.92; letter-spacing: -0.045em;
color: var(--ink); margin: 0;
}
.dwdg-sector-intro__subtitle {
font-size: clamp(1rem, 1.8vw, 1.3rem);
line-height: 1.3; letter-spacing: -0.03em;
color: var(--ink); font-weight: 500; max-width: 700px; margin: 0;
}
.dwdg-sector-intro__body {
font-size: clamp(0.9rem, 1.5vw, 1.05rem);
line-height: 1.55; color: var(--ink-soft);
max-width: 680px; margin: 0;
}
.dwdg-sector-intro__img {
width: 100%; max-height: 420px; overflow: hidden;
border-radius: var(--radius-xl);
}
.dwdg-sector-intro__img img {
width: 100%; height: 100%; object-fit: cover; max-height: 420px;
}
.dwdg-experts-row {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: clamp(16px, 2.5vw, 24px);
margin-block: 1.5em;
}
@media (max-width: 900px) { .dwdg-experts-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dwdg-experts-row { grid-template-columns: 1fr; } }
.dwdg-formations-row {
display: grid;
grid-template-columns: repeat(3, minmax(0, 280px));
justify-content: space-between;
gap: clamp(20px, 3.5vw, 48px);
margin-block: 1.5em;
}
@media (max-width: 760px) { .dwdg-formations-row { grid-template-columns: 1fr; justify-items: center; } }
.dwdg-formations-row .generation-card { width: 100%; }
.dwdg-expertise-badge-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
gap: clamp(12px, 2vw, 20px);
margin-block: 1.5em;
}
.sector-page-intro {
padding-top: clamp(96px, 12vw, 140px);
}
.sector-page-intro .wrap {
padding-bottom: clamp(28px, 4vw, 44px);
}
.sector-page-intro__title {
font-size: clamp(2.4rem, 5.5vw, 5rem);
font-weight: 800;
line-height: 0.9;
letter-spacing: -0.045em;
color: var(--ink);
margin: 0 0 clamp(20px, 3vw, 36px);
}
.sector-page-intro__subtitle {
font-size: clamp(1rem, 1.8vw, 1.25rem);
line-height: 1.4;
letter-spacing: -0.02em;
color: var(--ink);
font-weight: 500;
max-width: 680px;
margin: 0;
}
.sector-page-intro__hero {
width: 100%;
max-height: clamp(280px, 40vw, 500px);
overflow: hidden;
margin-top: clamp(24px, 4vw, 48px);
border-radius: 0 0 clamp(24px, 4vw, 48px) clamp(24px, 4vw, 48px);
}
.sector-page-intro__hero img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 40%;
display: block;
}
.sector-page-body {
padding-top: clamp(48px, 6vw, 80px);
}
.sector-page-content > p,
.sector-page-content > .wp-block-paragraph {
font-size: clamp(0.95rem, 1.6vw, 1.1rem);
line-height: 1.65;
color: var(--ink-soft);
max-width: 720px;
margin-bottom: 1.2em;
}
.sector-page-content a,
.sector-page-content .green-link {
color: var(--green-deep);
font-weight: 500;
text-decoration: none;
border-bottom: 1px solid currentColor;
transition: color var(--t-fast) var(--ease);
}
.sector-page-content a:hover { color: var(--green); }
.sector-page-content .dwdg-expertise-badge-grid,
.sector-page-content .dwdg-experts-row,
.sector-page-content .dwdg-pub-card,
.sector-page-content .dwdg-contact-expert {
margin-block: clamp(48px, 7vw, 80px);
}
.sector-page-content h2,
.sector-page-content .section-heading h2 {
font-size: clamp(1.6rem, 3vw, 2.6rem);
font-weight: 800;
letter-spacing: -0.04em;
line-height: 0.95;
color: var(--ink);
margin-bottom: clamp(28px, 4vw, 44px);
}
.sector-page-content .dwdg-expertise-badge-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: clamp(12px, 2vw, 20px);
}
.sector-page-content .dwdg-expertise-badge-grid .dwdg-expertise-pill:nth-child(5),
.sector-page-content .dwdg-expertise-badge-grid .dwdg-expertise-pill:nth-child(6) {
}
@media (max-width: 900px) {
.sector-page-content .dwdg-expertise-badge-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 600px) {
.sector-page-content .dwdg-expertise-badge-grid {
grid-template-columns: repeat(2, 1fr);
}
}
.sector-page-content .dwdg-experts-row {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.sector-page-content .work-list {
display: flex;
flex-direction: column;
gap: clamp(12px, 2vw, 20px);
}
.sector-page-content .dwdg-contact-expert {
background: var(--soft);
border-radius: var(--radius-xl);
}
.sector-page-content > .dwdg-section-heading-block {
margin-top: clamp(56px, 8vw, 96px);
padding-top: clamp(40px, 5vw, 64px);
border-top: 1px solid var(--line);
}
@media (max-width: 900px) {
.sector-page-content .dwdg-experts-row {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 560px) {
.sector-page-intro__hero {
border-radius: 0;
}
.sector-page-content .dwdg-experts-row {
grid-template-columns: 1fr;
}
}
.dwdg-conviction-section { padding-block: clamp(24px,4vw,48px); }
.dwdg-recent-projects { padding-block: clamp(48px,7vw,80px); }
.expertise-caption-top {
font-size: clamp(0.9rem,1.5vw,1.05rem);
line-height: 1.55;
color: rgba(255,255,255,.82);
max-width: 640px;
margin: 0 auto clamp(28px,4vw,44px);
text-align: center;
position: relative; z-index:1;
}
.dwdg-publications-slider { padding-block: clamp(48px,7vw,80px); }
.dwdg-pub-slider__track { overflow: hidden; }
.dwdg-pub-slider__item { display: none; }
.dwdg-pub-slider__item:first-child,
.dwdg-pub-slider__item.active { display: grid; }
.dwdg-pub-slider__nav {
display: flex; align-items: center; justify-content: center;
gap: 20px; margin-top: 28px;
}
.dwdg-pub-slider__btn {
width: 40px; height: 40px; border-radius: 50%;
border: 1.5px solid var(--line); background: transparent;
font-size: 1.4rem; cursor: pointer; color: var(--ink);
display: grid; place-items: center;
transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.dwdg-pub-slider__btn:hover { background: var(--green); border-color: var(--green); color: #fff; }
.dwdg-pub-slider__dots { display:flex; gap:8px; }
.dwdg-pub-slider__dot {
width:8px; height:8px; border-radius:50%;
background: var(--line); transition: background var(--t-fast) var(--ease);
}
.dwdg-pub-slider__dot.active { background: var(--green); }
.dwdg-insights-grid-block { padding-block: clamp(48px,7vw,80px); }
.dwdg-insights-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0,1fr));
gap: clamp(12px,2vw,20px);
}
@media(max-width:760px){ .dwdg-insights-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px){ .dwdg-insights-grid { grid-template-columns: 1fr; } }
.dwdg-join-us { padding-block: clamp(56px,8vw,96px); }
.dwdg-hero-sector-block { padding-top: clamp(96px,12vw,140px); }
.dwdg-hero-sector-block__body {
max-width: 720px; margin-top: clamp(32px,5vw,56px);
display: flex; flex-direction: column; gap: 1.2em;
}
.dwdg-hero-sector-block__body p {
font-size: clamp(0.95rem,1.6vw,1.1rem);
line-height: 1.65; color: var(--ink-soft); margin: 0;
}
.dwdg-editorial-text { max-width:720px; display:flex; flex-direction:column; gap:1.4em; margin-block:1.5em; }
.dwdg-editorial-text__para { font-size:clamp(.95rem,1.6vw,1.1rem); line-height:1.65; color:var(--ink-soft); margin:0; }
.dwdg-green-link { color:var(--green-deep); font-weight:500; text-decoration:none; border-bottom:1px solid currentColor; }
.dwdg-green-link:hover { color:var(--green); }
.dwdg-experts-carousel-block { padding-block: clamp(48px,7vw,80px); }
.dwdg-other-insights { padding-block: clamp(48px,7vw,80px); }
.dwdg-other-insights__grid {
display: grid;
grid-template-columns: repeat(3, minmax(0,1fr));
gap: clamp(12px,2vw,20px);
}
@media(max-width:760px){ .dwdg-other-insights__grid { grid-template-columns: 1fr; } }
.dwdg-expertise-pill__content {
display: flex;
flex-direction: column;
padding: 12px 16px;
gap: 0;
}
.dwdg-expertise-pill--hoverable .dwdg-expertise-pill__content {
transition: gap var(--t-base) var(--ease);
}
.dwdg-expertise-pill__label {
display: block;
font-size: 0.9rem;
font-weight: 700;
letter-spacing: -0.02em;
color: var(--ink);
transition: color var(--t-fast) var(--ease);
}
.dwdg-expertise-pill__desc {
font-size: 0.82rem;
line-height: 1.45;
color: var(--ink-soft);
margin: 0;
max-height: 0;
overflow: hidden;
opacity: 0;
transition:
max-height 280ms var(--ease),
opacity    280ms var(--ease),
margin-top 280ms var(--ease);
}
.dwdg-expertise-pill--hoverable:hover .dwdg-expertise-pill__desc,
.dwdg-expertise-pill--hoverable:focus .dwdg-expertise-pill__desc {
max-height: 120px;
opacity: 1;
margin-top: 8px;
}
.dwdg-expertise-pill--hoverable:hover {
border-color: rgba(18,201,95,.3);
box-shadow: var(--shadow-hover);
}
.dwdg-expertise-pill--hoverable:hover .dwdg-expertise-pill__label {
color: var(--green-deep);
}
.work-card__img-link {
display: block;
text-decoration: none;
overflow: hidden;
flex-shrink: 0;
}
.work-card--has-img {
max-height: none;
min-height: unset;
}
.dwdg-recent-projects .work-card__img,
.dwdg-recent-projects .work-card__img-link .work-card__img {
height: clamp(50px, 6vw, 70px);
}
.dwdg-recent-projects .work-card {
min-height: unset;
}
.dwdg-hero-sector-block .sector-page-intro__title {
margin-bottom: clamp(20px, 3vw, 36px);
}
.dwdg-recent-projects .section-heading,
.dwdg-experts-carousel-block .section-heading,
.dwdg-insights-grid-block .section-heading,
.dwdg-other-insights .section-heading,
.dwdg-publications-slider .section-heading {
margin-bottom: clamp(16px, 2vw, 24px);
}
.work-card__body {
display: flex;
flex-direction: column;
justify-content: center;
gap: 4px;
padding: clamp(8px, 1vw, 12px) clamp(10px, 1.5vw, 16px);
}
.work-card__body h3 {
font-size: clamp(0.85rem, 1.3vw, 1rem);
font-weight: 800;
line-height: 1.15;
letter-spacing: -0.025em;
color: var(--ink);
margin: 0;
}
.work-card__body h3 a {
color: inherit;
text-decoration: none;
transition: color var(--t-fast) var(--ease);
}
.work-card__body h3 a:hover { color: var(--green-deep); }
.work-card__body p {
font-size: clamp(0.7rem, 0.9vw, 0.78rem);
line-height: 1.4;
color: var(--ink-soft);
margin: 0;
max-width: 380px;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
}
.dwdg-expertise-pill__desc {
font-size: 0.82rem;
line-height: 1.45;
color: var(--ink-soft);
margin: 6px 0 0;
max-height: none !important;
opacity: 1 !important;
overflow: visible !important;
}
.dwdg-expertise-pill--hoverable:hover .dwdg-expertise-pill__desc {
max-height: none;
opacity: 1;
margin-top: 6px;
}
.dwdg-contact-expert {
background: linear-gradient(to right, #0a7a35 0%, #12c95f 30%, #a8f0c6 65%, #e8fdf2 100%) !important;
border-radius: var(--radius-xl);
}
.dwdg-contact-expert__img img {
mix-blend-mode: multiply;
background: transparent;
}
.dwdg-contact-expert__body {
background: transparent !important;
}
.dwdg-contact-expert .eyebrow {
background: rgba(255,255,255,.35) !important;
color: var(--ink) !important;
}
.dwdg-contact-expert__name { color: var(--ink) !important; }
.dwdg-contact-expert__role {
color: var(--green-deep) !important;
border-bottom: none !important;
}
.dwdg-contact-expert__bio { color: var(--ink-soft) !important; }
.dwdg-contact-expert__email {
color: var(--ink) !important;
border-bottom: none !important;
}
.dwdg-contact-expert__email:hover { color: var(--green-deep) !important; }
.dwdg-experts-8-block { padding-block: clamp(48px,7vw,80px); }
.dwdg-experts-8-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: clamp(16px, 2.5vw, 24px);
}
@media (max-width: 900px) { .dwdg-experts-8-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dwdg-experts-8-grid { grid-template-columns: 1fr; } }
.dwdg-contact-expert__img img {
mix-blend-mode: normal !important;
object-fit: cover;
object-position: top center;
width: 100%;
height: 100%;
}
.dwdg-contact-expert__img {
background: linear-gradient(to bottom, #0a7a35, #12c95f);
}
.dwdg-recent-projects .section-heading,
.dwdg-experts-carousel-block .section-heading,
.dwdg-experts-8-block .section-heading,
.dwdg-insights-grid-block .section-heading,
.dwdg-other-insights .section-heading,
.dwdg-publications-slider .section-heading,
.dwdg-join-us .section-heading,
.dwdg-expertise-badge-grid + .section-heading,
.dwdg-section-heading-block,
.sector-page-content .section-heading {
margin-bottom: var(--section-gap, clamp(19px, 2.4vw, 29px)) !important;
}
.work-card__img {
position: relative;
overflow: hidden;
height: clamp(50px, 6vw, 70px);
}
.work-card__img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform var(--t-slow) var(--ease);
}
.work-card__img-link:hover .work-card__img img {
transform: scale(1.04);
}
.work-card__img .eyebrow.on-image {
position: absolute;
top: 14px;
left: 14px;
z-index: 2;
background: var(--green) !important;
color: #fff !important;
backdrop-filter: none;
-webkit-backdrop-filter: none;
font-size: 0.68rem !important;
padding: 5px 12px !important;
}
.sector-page-content > * {
width: 100%;
}
.sector-page-content .dwdg-recent-projects,
.sector-page-content .dwdg-experts-carousel-block,
.sector-page-content .dwdg-experts-8-block,
.sector-page-content .dwdg-insights-grid-block,
.sector-page-content .dwdg-other-insights,
.sector-page-content .dwdg-publications-slider,
.sector-page-content .expertise-green-block,
.sector-page-content .dwdg-contact-expert,
.sector-page-content .dwdg-expertise-badge-grid,
.sector-page-content .dwdg-section-heading-block {
max-width: 100%;
margin-inline: 0;
}
.sector-page-content .dwdg-editorial-text {
max-width: 740px;
}
.dwdg-projects-list { padding-block: clamp(48px,7vw,80px); }
.dwdg-projects-list__stack {
display: flex;
flex-direction: column;
gap: clamp(16px, 2.5vw, 24px);
}
.dwdg-projects-list__item {
display: grid;
grid-template-columns: 1fr 1fr;
min-height: clamp(220px, 22vw, 290px);
overflow: hidden;
border: 1px solid var(--line);
border-radius: var(--radius-xl);
background: var(--card-bg);
box-shadow: var(--shadow);
transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.dwdg-projects-list__item:hover {
transform: translateY(-3px);
border-color: rgba(18,201,95,.18);
box-shadow: var(--shadow-hover);
}
.dwdg-projects-list__item--reversed {
grid-template-columns: 1fr 1fr;
}
.dwdg-projects-list__item--reversed .dwdg-projects-list__copy { order: 1; }
.dwdg-projects-list__item--reversed .dwdg-projects-list__media { order: 2; }
.dwdg-projects-list__media {
position: relative;
overflow: hidden;
display: block;
text-decoration: none;
background: var(--soft);
}
.dwdg-projects-list__media--empty {
display: flex;
align-items: flex-start;
padding: clamp(24px,3.5vw,40px) clamp(28px,4vw,48px);
background: linear-gradient(135deg, rgba(18,201,95,.08), rgba(88,217,134,.05));
}
.dwdg-projects-list__media img {
position: absolute;
inset: 0;
width: 100%; height: 100%;
object-fit: cover; display: block;
transition: transform var(--t-slow) var(--ease);
}
.dwdg-projects-list__item:hover .dwdg-projects-list__media img {
transform: scale(1.04);
}
.dwdg-projects-list__media .eyebrow.on-image {
position: absolute;
top: 14px; left: 14px;
z-index: 2;
}
.dwdg-projects-list__copy {
display: flex;
flex-direction: column;
justify-content: center;
gap: 14px;
padding: clamp(24px,3.5vw,40px) clamp(28px,4vw,48px);
}
.dwdg-projects-list__copy h3 {
font-size: clamp(1rem,1.8vw,1.3rem);
font-weight: 800;
line-height: 1.1;
letter-spacing: -0.03em;
color: var(--ink);
margin: 0;
}
.dwdg-projects-list__copy p {
font-size: clamp(0.875rem,1.3vw,1rem);
line-height: 1.5;
color: var(--ink-soft);
margin: 0;
max-width: 420px;
}
@media (max-width: 760px) {
.dwdg-projects-list__item,
.dwdg-projects-list__item--reversed {
grid-template-columns: 1fr;
}
.dwdg-projects-list__item--reversed .dwdg-projects-list__copy { order: 2; }
.dwdg-projects-list__item--reversed .dwdg-projects-list__media { order: 1; }
.dwdg-projects-list__media { min-height: 200px; }
}
.dwdg-pull-quote {
position: relative;
margin-block: 2em;
padding: clamp(28px,4vw,48px) clamp(28px,4vw,48px) clamp(28px,4vw,48px) clamp(36px,5vw,60px);
border-left: 3px solid var(--green);
border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.dwdg-pull-quote--light {
background: rgba(18,201,95,.06);
}
.dwdg-pull-quote--dark {
background: var(--ink);
border-left-color: var(--green);
}
.dwdg-pull-quote__text {
font-size: clamp(1.1rem,2.2vw,1.6rem);
font-weight: 700;
line-height: 1.25;
letter-spacing: -0.03em;
color: var(--ink);
margin: 0 0 18px;
}
.dwdg-pull-quote--dark .dwdg-pull-quote__text { color: #fff; }
.dwdg-pull-quote__footer {
display: flex;
align-items: baseline;
gap: 10px;
flex-wrap: wrap;
}
.dwdg-pull-quote__author {
font-size: 0.82rem;
font-weight: 700;
font-style: normal;
color: var(--ink);
letter-spacing: -0.01em;
}
.dwdg-pull-quote--dark .dwdg-pull-quote__author { color: rgba(255,255,255,.85); }
.dwdg-pull-quote__role {
font-size: 0.75rem;
font-weight: 500;
color: var(--muted);
font-style: normal;
}
.dwdg-pull-quote--dark .dwdg-pull-quote__role { color: rgba(255,255,255,.5); }
.dwdg-expert-inline {
display: inline-flex;
align-items: center;
gap: 14px;
padding: 12px 18px 12px 12px;
border: 1px solid var(--line);
border-radius: 999px;
background: var(--card-bg);
box-shadow: var(--shadow);
text-decoration: none;
color: var(--ink);
margin-block: 1em;
transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
a.dwdg-expert-inline:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-hover);
border-color: rgba(18,201,95,.22);
}
.dwdg-expert-inline__avatar {
width: 44px; height: 44px;
border-radius: 50%;
overflow: hidden;
flex-shrink: 0;
background: linear-gradient(135deg, rgba(18,201,95,.18), rgba(18,201,95,.06));
display: grid; place-items: center;
}
.dwdg-expert-inline__avatar img {
width: 100%; height: 100%;
object-fit: cover; object-position: top center;
display: block;
}
.dwdg-expert-inline__initials {
font-size: 1.1rem;
font-weight: 800;
color: var(--green-deep);
line-height: 1;
}
.dwdg-expert-inline__info {
display: flex;
flex-direction: column;
gap: 2px;
}
.dwdg-expert-inline__name {
font-size: 0.9rem;
font-weight: 700;
letter-spacing: -0.02em;
color: var(--ink);
}
.dwdg-expert-inline__role {
font-size: 0.72rem;
font-weight: 600;
color: var(--green-dark);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.sector-page-content > * + * {
margin-top: clamp(40px, 6vw, 72px);
}
.sector-page-content .dwdg-contact-expert {
width: 100%;
max-width: 100%;
border-radius: var(--radius-xl);
}
.sector-page-content .dwdg-expertise-badge-grid {
grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.sector-page-content .dwdg-pub-card {
width: 100%;
max-width: 100%;
}
.dwdg-work-card {
display: grid;
grid-template-columns: 1fr 1fr;
max-height: 200px;
overflow: hidden;
border: 1px solid var(--line);
border-radius: var(--radius-xl);
background: var(--card-bg);
box-shadow: var(--shadow);
transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.dwdg-work-card:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-hover);
}
.dwdg-work-card__media {
position: relative;
overflow: hidden;
height: 100%;
}
.dwdg-work-card__media img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform var(--t-slow) var(--ease);
}
.dwdg-work-card:hover .dwdg-work-card__media img {
transform: scale(1.04);
}
.dwdg-work-card__media .eyebrow.on-image {
position: absolute;
top: 14px;
left: 14px;
z-index: 2;
background: var(--green) !important;
color: #fff !important;
backdrop-filter: none;
font-size: 0.68rem !important;
padding: 5px 12px !important;
}
.dwdg-work-card__copy {
display: flex;
flex-direction: column;
justify-content: center;
gap: 8px;
padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 28px);
overflow: hidden;
}
.dwdg-work-card__copy h3 {
font-size: clamp(0.9rem, 1.3vw, 1.05rem);
font-weight: 800;
line-height: 1.15;
letter-spacing: -0.025em;
color: var(--ink);
margin: 0;
}
.dwdg-work-card__copy h3 a {
color: inherit;
text-decoration: none;
}
.dwdg-work-card__copy h3 a:hover { color: var(--green-deep); }
.dwdg-work-card__copy p {
font-size: clamp(0.78rem, 1.1vw, 0.9rem);
line-height: 1.45;
color: var(--ink-soft);
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.dwdg-work-card__copy .button { align-self: flex-start; }
.dwdg-work-card {
max-height: 100px;
}
.dwdg-work-card__copy {
gap: 4px;
padding: clamp(8px, 1vw, 12px) clamp(10px, 1.5vw, 16px);
}
.dwdg-work-card__copy p {
-webkit-line-clamp: 1;
}
.dwdg-section-surface {
position: relative;
overflow: hidden;
}
.dwdg-section-surface--beige { background: var(--soft, #f2ece7); }
.dwdg-section-surface--white { background: var(--paper, #fff); }
.dwdg-section-surface--transparent { background: transparent; }
.dwdg-section-surface--green {
background: linear-gradient(180deg, #aaf0bd 0%, #4fd988 45%, #12c95f 100%);
}
.dwdg-section-surface--compact { padding-block: clamp(28px, 4vw, 48px); }
.dwdg-section-surface--normal { padding-block: clamp(48px, 7vw, 84px); }
.dwdg-section-surface--large { padding-block: clamp(72px, 10vw, 124px); }
.dwdg-section-surface > *:first-child { margin-top: 0; }
.dwdg-section-surface > *:last-child { margin-bottom: 0; }
.dwdg-section-surface-editor { border: 1px dashed rgba(0,0,0,.18); padding: 18px; border-radius: 18px; background: rgba(18,201,95,.04); }
.dwdg-video-container {
max-width: 1180px;
margin: clamp(36px, 6vw, 72px) auto;
padding-inline: var(--page-pad, clamp(20px, 5vw, 72px));
}
.dwdg-video-container.alignfull { max-width: none; padding-inline: 0; }
.dwdg-video-container__title {
font-size: clamp(1.6rem, 3vw, 2.6rem);
line-height: .96;
letter-spacing: -.045em;
font-weight: 800;
margin: 0 0 clamp(18px, 3vw, 32px);
}
.dwdg-video-container__frame {
position: relative;
background: #111;
overflow: hidden;
aspect-ratio: 16/9;
box-shadow: 0 24px 70px rgba(20, 14, 9, .12);
}
.dwdg-video-container--cinema .dwdg-video-container__frame { aspect-ratio: 21/9; }
.dwdg-video-container--square .dwdg-video-container__frame { aspect-ratio: 1/1; max-height: 720px; }
.dwdg-video-container.is-rounded .dwdg-video-container__frame { border-radius: clamp(18px, 3vw, 34px); }
.dwdg-video-container.has-slant .dwdg-video-container__frame { clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); }
.dwdg-video-container__frame video,
.dwdg-video-container__frame img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
}
.dwdg-video-container__placeholder {
min-height: 240px;
display: grid;
place-items: center;
color: rgba(255,255,255,.72);
font-weight: 700;
letter-spacing: -.02em;
}
.dwdg-video-container__caption {
max-width: 720px;
margin: 14px 0 0 auto;
font-size: .92rem;
line-height: 1.55;
color: var(--ink-soft, rgba(12,13,11,.64));
}
.dwdg-sector-split-intro {
padding-top: clamp(96px, 12vw, 140px);
background: var(--paper, #fff);
}
.dwdg-sector-split-intro__eyebrow {
color: var(--green-deep, #0fa958);
font-weight: 700;
font-size: .78rem;
letter-spacing: .02em;
margin: 0 0 12px;
}
.dwdg-sector-split-intro__title {
font-size: clamp(2.15rem, 4.8vw, 4.65rem);
line-height: .92;
letter-spacing: -.055em;
font-weight: 800;
margin: 0 0 clamp(18px, 2.6vw, 30px);
}
.dwdg-sector-split-intro__subtitle {
max-width: 690px;
font-size: clamp(1rem, 1.55vw, 1.22rem);
line-height: 1.42;
letter-spacing: -.025em;
font-weight: 500;
margin: 0;
}
.dwdg-sector-split-intro__media {
width: min(100% - clamp(32px, 8vw, 120px), 1180px);
margin: clamp(24px, 4vw, 46px) auto 0;
min-height: clamp(260px, 36vw, 500px);
border-radius: 18px 18px 0 0;
overflow: hidden;
clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
background: #111;
}
.dwdg-sector-split-intro__media img,
.dwdg-sector-split-intro__media video {
width: 100%;
height: 100%;
min-height: inherit;
object-fit: cover;
display: block;
}
.dwdg-sector-split-intro__copy-wrap {
display: flex;
justify-content: flex-end;
}
.dwdg-sector-split-intro__copy {
max-width: 650px;
margin-top: clamp(14px, 2.5vw, 34px);
margin-bottom: clamp(38px, 6vw, 78px);
}
.dwdg-sector-split-intro__copy p {
font-size: clamp(.94rem, 1.3vw, 1.05rem);
line-height: 1.65;
color: var(--ink-soft, rgba(12,13,11,.68));
margin: 0 0 1.1em;
}
.dwdg-sector-split-intro__copy a { color: var(--green-deep, #0fa958); font-weight: 600; text-decoration: none; border-bottom: 1px solid currentColor; }
.dwdg-sector-split-intro--two-columns {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
align-items: end;
gap: clamp(28px, 5vw, 72px);
width: min(100% - clamp(32px, 8vw, 120px), 1180px);
margin-inline: auto;
}
.dwdg-sector-split-intro--two-columns > .wrap { width: auto; padding: 0; }
.dwdg-sector-split-intro--two-columns .dwdg-sector-split-intro__media { width: 100%; margin: 0; grid-column: 2; grid-row: 1 / span 2; }
.dwdg-sector-split-intro--two-columns .dwdg-sector-split-intro__copy-wrap { width: auto; padding: 0; justify-content: flex-start; }
.dwdg-expertise-mosaic {
padding-block: clamp(48px, 7vw, 84px);
}
.dwdg-expertise-mosaic--beige { background: var(--soft, #f2ece7); }
.dwdg-expertise-mosaic--white { background: var(--paper, #fff); }
.dwdg-expertise-mosaic--transparent { background: transparent; }
.dwdg-expertise-mosaic .section-heading {
font-size: clamp(1.6rem, 3vw, 2.6rem);
line-height: .98;
letter-spacing: -.045em;
font-weight: 800;
margin: 0 0 clamp(26px, 4vw, 46px);
}
.dwdg-expertise-mosaic__grid {
display: grid;
grid-template-columns: repeat(12, minmax(0, 1fr));
gap: clamp(12px, 2vw, 22px);
}
.dwdg-expertise-mosaic__card {
position: relative;
min-height: clamp(140px, 16vw, 220px);
border-radius: clamp(16px, 2.2vw, 28px);
overflow: hidden;
background: rgba(255,255,255,.5);
box-shadow: 0 16px 46px rgba(20,14,9,.06);
}
.dwdg-expertise-mosaic__card--1,
.dwdg-expertise-mosaic__card--2,
.dwdg-expertise-mosaic__card--3,
.dwdg-expertise-mosaic__card--4 { grid-column: span 3; }
.dwdg-expertise-mosaic__card--5,
.dwdg-expertise-mosaic__card--6 { grid-column: span 6; }
.dwdg-expertise-mosaic__card img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.dwdg-expertise-mosaic__card:hover img { transform: scale(1.045); }
.dwdg-expertise-mosaic__card span {
position: absolute;
left: 0;
right: 0;
bottom: 0;
min-height: 38px;
padding: 10px 16px 12px;
display: flex;
align-items: center;
justify-content: flex-start;
background: rgba(255,255,255,.92);
border-radius: 0 clamp(18px, 2vw, 28px) 0 0;
color: var(--ink, #10110f);
font-size: clamp(.78rem, 1vw, .92rem);
font-weight: 600;
letter-spacing: -.025em;
}
.dwdg-expertise-mosaic__card--5 span,
.dwdg-expertise-mosaic__card--6 span { justify-content: flex-end; border-radius: clamp(18px, 2vw, 28px) 0 0 0; left: auto; min-width: 44%; }
.dwdg-media-text-card {
display: grid;
grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
min-height: clamp(160px, 18vw, 240px);
border-radius: clamp(18px, 2.6vw, 30px);
overflow: hidden;
background: rgba(255,255,255,.88);
box-shadow: 0 18px 58px rgba(20,14,9,.06);
color: inherit;
text-decoration: none;
}
.dwdg-media-text-card--right .dwdg-media-text-card__media { order: 2; }
.dwdg-media-text-card--right .dwdg-media-text-card__body { order: 1; }
.dwdg-media-text-card__media { position: relative; min-height: inherit; background: #ddd; }
.dwdg-media-text-card__media img,
.dwdg-media-text-card__media video { width: 100%; height: 100%; display: block; object-fit: cover; }
.dwdg-media-text-card__badge {
position: absolute;
top: 14px;
left: 14px;
z-index: 2;
display: inline-flex;
align-items: center;
min-height: 22px;
padding: 4px 10px;
border-radius: 999px;
background: var(--green, #12c95f);
color: #fff;
font-size: .68rem;
font-weight: 700;
letter-spacing: -.01em;
}
.dwdg-media-text-card__body {
padding: clamp(22px, 3.5vw, 42px);
display: flex;
flex-direction: column;
justify-content: center;
}
.dwdg-media-text-card__body h3 {
font-size: clamp(1.05rem, 1.8vw, 1.5rem);
line-height: 1.05;
letter-spacing: -.045em;
font-weight: 800;
margin: 0 0 12px;
}
.dwdg-media-text-card__body p {
font-size: clamp(.82rem, 1.1vw, .98rem);
line-height: 1.45;
color: var(--ink-soft, rgba(12,13,11,.65));
margin: 0;
}
.dwdg-media-text-card--editorial { grid-template-columns: .85fr 1.15fr; }
.dwdg-media-text-card--compact { min-height: 132px; border-radius: 20px; }
.dwdg-media-text-card + .dwdg-media-text-card { margin-top: clamp(14px, 2vw, 22px); }
@media (max-width: 900px) {
.dwdg-sector-split-intro--two-columns { display: block; width: 100%; }
.dwdg-sector-split-intro--two-columns > .wrap { width: min(100% - clamp(32px, 8vw, 120px), 1180px); margin-inline: auto; }
.dwdg-sector-split-intro--two-columns .dwdg-sector-split-intro__media { width: min(100% - clamp(32px, 8vw, 120px), 1180px); margin: clamp(24px,4vw,46px) auto 0; }
.dwdg-expertise-mosaic__card--1,
.dwdg-expertise-mosaic__card--2,
.dwdg-expertise-mosaic__card--3,
.dwdg-expertise-mosaic__card--4,
.dwdg-expertise-mosaic__card--5,
.dwdg-expertise-mosaic__card--6 { grid-column: span 6; }
}
@media (max-width: 620px) {
.dwdg-media-text-card { grid-template-columns: 1fr; }
.dwdg-media-text-card--right .dwdg-media-text-card__media,
.dwdg-media-text-card--right .dwdg-media-text-card__body { order: initial; }
.dwdg-expertise-mosaic__grid { grid-template-columns: 1fr; }
.dwdg-expertise-mosaic__card--1,
.dwdg-expertise-mosaic__card--2,
.dwdg-expertise-mosaic__card--3,
.dwdg-expertise-mosaic__card--4,
.dwdg-expertise-mosaic__card--5,
.dwdg-expertise-mosaic__card--6 { grid-column: auto; }
.dwdg-video-container.has-slant .dwdg-video-container__frame,
.dwdg-sector-split-intro__media { clip-path: none; }
}
/*! == /assets/css/energy-v6.css == */
.dwdg-energy-page,
.dwdg-energy-hero,
.dwdg-energy-expertise,
.dwdg-energy-experts,
.dwdg-energy-projects,
.dwdg-energy-publications,
.dwdg-energy-insights,
.dwdg-energy-contact {
--dwdg-energy-max:        1480px;
--dwdg-energy-pad:        clamp(20px, 3.4vw, 56px);
--dwdg-energy-paper:      #fffdf8;
--dwdg-energy-soft:       #f1ece6;
--dwdg-energy-soft-2:     #ece6df;
--dwdg-energy-ink:        #0c0d0b;
--dwdg-energy-muted:      #4a4b46;
--dwdg-energy-green:      #12c95f;
--dwdg-energy-green-soft: #d9f7e6;
--dwdg-energy-green-deep: #0aa04b;
--dwdg-energy-radius:     22px;
--dwdg-energy-pill:       999px;
--dwdg-energy-shadow:     0 12px 30px rgba(20,14,9,.06);
--dwdg-energy-glass:      rgba(255,255,255,.55);
--dwdg-energy-glass-deep: rgba(255,255,255,.72);
}
.dwdg-energy-page {
width: 100%;
margin: 0;
padding: 0;
background: var(--dwdg-energy-paper);
}
.dwdg-energy-page > * { max-width: none; }
.dwdg-energy-wrap {
width: min(100% - 2 * var(--dwdg-energy-pad), var(--dwdg-energy-max));
margin-inline: auto;
}
.dwdg-energy-hero .dwdg-energy-section-title,
.dwdg-energy-expertise .dwdg-energy-section-title,
.dwdg-energy-experts .dwdg-energy-section-title,
.dwdg-energy-projects .dwdg-energy-section-title,
.dwdg-energy-projects .section-heading h2,
.dwdg-energy-publications .section-heading h2,
.dwdg-energy-insights .dwdg-energy-section-title,
.dwdg-energy-insights .section-heading h2 {
display: block;
color: var(--dwdg-energy-ink);
font-size: clamp(2rem, 3.6vw, 3rem);
line-height: 1;
letter-spacing: -.045em;
font-weight: 800;
margin: 0 0 clamp(24px, 3vw, 40px);
}
.dwdg-energy-hero {
background: var(--dwdg-energy-paper);
padding-top:    clamp(110px, 12vw, 170px);
padding-bottom: clamp(48px, 6vw, 80px);
}
.dwdg-energy-hero__head { margin-bottom: clamp(40px, 5vw, 64px); }
.dwdg-energy-hero__title {
color: var(--dwdg-energy-ink);
font-size: clamp(2.8rem, 5.4vw, 4.6rem);
line-height: .98;
letter-spacing: -.06em;
font-weight: 800;
margin: 0;
}
.dwdg-energy-hero__subtitle {
max-width: 660px;
color: var(--dwdg-energy-ink);
font-size: clamp(1.05rem, 1.5vw, 1.3rem);
line-height: 1.42;
letter-spacing: -.018em;
font-weight: 500;
margin: clamp(28px, 3.4vw, 42px) 0 0;
}
.dwdg-energy-hero__media {
position: relative;
width: 100%;
aspect-ratio: 2.4 / 1;
overflow: hidden;
border-radius: 18px 18px 0 0;
background: #d9d7d0;
isolation: isolate;
}
.dwdg-energy-hero__media img,
.dwdg-energy-hero__media video {
width: 100%; height: 100%; display: block;
object-fit: cover;
object-position: var(--dwdg-energy-object-position, center center);
}
.dwdg-energy-hero__curve {
position: absolute;
left: 0; right: 0; bottom: -1px;
width: 100%; height: 38%;
pointer-events: none;
z-index: 2;
display: block;
}
.dwdg-energy-hero__curve path { fill: var(--dwdg-energy-paper); }
.dwdg-energy-hero__copy {
width: min(58%, 640px);
margin: clamp(28px, 3.4vw, 48px) 0 0 auto;
}
.dwdg-energy-hero__copy p {
color: var(--dwdg-energy-ink);
font-size: clamp(.95rem, 1.18vw, 1.08rem);
line-height: 1.55;
letter-spacing: -.015em;
margin: 0;
}
.dwdg-energy-hero__copy p + p { margin-top: clamp(16px, 2vw, 24px); }
.dwdg-energy-hero__copy strong {
color: var(--dwdg-energy-green);
font-weight: 500;
}
.dwdg-energy-expertise {
background: var(--dwdg-energy-soft);
padding-block: clamp(72px, 9vw, 128px);
}
.dwdg-energy-expertise__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: clamp(18px, 2.2vw, 30px);
}
.dwdg-energy-expertise__card {
position: relative;
border-radius: var(--dwdg-energy-radius);
box-shadow: var(--dwdg-energy-shadow);
overflow: hidden;
background: #d9d7d0;
aspect-ratio: 0.8 / 1;
}
.dwdg-energy-expertise__card:nth-child(4n + 5),
.dwdg-energy-expertise__card:nth-child(4n + 6) {
grid-column: span 2;
aspect-ratio: 2.05 / 1;
}
.dwdg-energy-expertise__media {
position: absolute;
inset: 0;
overflow: hidden;
}
.dwdg-energy-expertise__media img {
width: 100%; height: 100%; object-fit: cover; display: block;
transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.dwdg-energy-expertise__card:hover .dwdg-energy-expertise__media img,
.dwdg-energy-expertise__card:focus-within .dwdg-energy-expertise__media img {
transform: scale(1.05);
}
.dwdg-energy-expertise__body {
position: absolute;
left: clamp(12px, 1.4vw, 18px);
right: clamp(12px, 1.4vw, 18px);
bottom: clamp(12px, 1.4vw, 18px);
display: flex;
flex-direction: column;
gap: 8px;
padding: clamp(14px, 1.6vw, 20px) clamp(16px, 1.9vw, 24px);
background: #fff;
border-radius: 18px;
box-shadow: 0 10px 26px rgba(20, 14, 9, .12);
}
.dwdg-energy-expertise__card:nth-child(4n + 5) .dwdg-energy-expertise__body,
.dwdg-energy-expertise__card:nth-child(4n + 6) .dwdg-energy-expertise__body {
left: auto;
width: min(62%, 420px);
}
.dwdg-energy-expertise__title {
color: var(--dwdg-energy-ink);
font-size: clamp(1.05rem, 1.35vw, 1.25rem);
line-height: 1.12;
letter-spacing: -.03em;
font-weight: 700;
margin: 0;
}
.dwdg-energy-expertise__desc {
color: var(--dwdg-energy-muted);
font-size: clamp(.88rem, 1.05vw, .98rem);
line-height: 1.45;
letter-spacing: -.012em;
margin: 0;
max-height: 0;
opacity: 0;
overflow: hidden;
transform: translateY(8px);
transition:
max-height .5s cubic-bezier(.4, 0, .2, 1),
opacity .35s ease .06s,
transform .5s cubic-bezier(.4, 0, .2, 1);
}
.dwdg-energy-expertise__card:hover .dwdg-energy-expertise__desc,
.dwdg-energy-expertise__card:focus-within .dwdg-energy-expertise__desc {
max-height: 16em;
opacity: 1;
transform: none;
}
@media (hover: none) {
.dwdg-energy-expertise__desc {
max-height: none;
opacity: 1;
transform: none;
}
}
@media (prefers-reduced-motion: reduce) {
.dwdg-energy-expertise__media img,
.dwdg-energy-expertise__desc { transition: none; }
.dwdg-energy-expertise__card:hover .dwdg-energy-expertise__media img { transform: none; }
}
.dwdg-energy-experts {
background: var(--dwdg-energy-paper);
padding-block: clamp(72px, 9vw, 128px);
}
.dwdg-energy-experts__head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
margin-bottom: clamp(24px, 3vw, 40px);
}
.dwdg-energy-experts__head .dwdg-energy-section-title { margin: 0; }
.dwdg-energy-experts__shell {
position: relative;
display: grid;
grid-template-columns: clamp(36px, 3.4vw, 52px) 1fr clamp(36px, 3.4vw, 52px);
gap: clamp(14px, 1.8vw, 24px);
align-items: stretch;
}
.dwdg-energy-experts__track {
display: flex;
gap: clamp(24px, 3vw, 48px);
overflow-x: auto;
overflow-y: hidden;
scroll-snap-type: x mandatory;
scrollbar-width: none;
-ms-overflow-style: none;
padding-bottom: 4px;
scroll-behavior: smooth;
min-width: 0;
}
.dwdg-energy-experts__track::-webkit-scrollbar { display: none; }
.dwdg-energy-experts__card {
flex: 0 0 calc((100% - 3 * clamp(24px, 3vw, 48px)) / 4);
scroll-snap-align: start;
display: flex;
flex-direction: column;
align-items: flex-start;
min-width: 0;
}
.dwdg-energy-experts__photo {
width: 100%;
max-width: 200px;
aspect-ratio: 1 / 1;
border-radius: 18px;
overflow: hidden;
background: #efeee9;
margin: 0 0 clamp(14px, 1.6vw, 18px);
}
.dwdg-energy-experts__photo img {
width: 100%; height: 100%;
object-fit: cover;
object-position: top center;
display: block;
}
.dwdg-energy-experts__name {
color: var(--dwdg-energy-ink);
font-size: clamp(1rem, 1.25vw, 1.15rem);
line-height: 1.15;
letter-spacing: -.03em;
font-weight: 700;
margin: 0 0 6px;
}
.dwdg-energy-experts__role {
color: var(--dwdg-energy-green);
font-size: clamp(.85rem, 1vw, .95rem);
line-height: 1.2;
font-weight: 500;
letter-spacing: -.015em;
margin: 0 0 14px;
}
.dwdg-energy-experts__bio {
color: var(--dwdg-energy-ink);
font-size: clamp(.85rem, 1vw, .95rem);
line-height: 1.42;
letter-spacing: -.012em;
margin: 0 0 18px;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 6;
line-clamp: 6;
overflow: hidden;
}
.dwdg-energy-experts__more {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 20px;
border-radius: var(--dwdg-energy-pill);
background: var(--dwdg-energy-green);
color: #fff;
font-size: .88rem;
font-weight: 500;
letter-spacing: -.012em;
text-decoration: none;
transition: background .2s;
}
.dwdg-energy-experts__more:hover { background: var(--dwdg-energy-green-deep); }
.dwdg-energy-experts__nav {
align-self: center;
width: clamp(36px, 3.4vw, 52px);
height: clamp(36px, 3.4vw, 52px);
display: inline-flex;
align-items: center;
justify-content: center;
border: none;
background: transparent;
color: var(--dwdg-energy-green);
font-size: clamp(2rem, 3vw, 2.6rem);
line-height: 1;
cursor: pointer;
padding: 0;
border-radius: 50%;
transition: color .2s, opacity .2s, transform .2s;
}
.dwdg-energy-experts__nav:hover { color: var(--dwdg-energy-green-deep); }
.dwdg-energy-experts__nav--prev { justify-self: end; }
.dwdg-energy-experts__nav--next { justify-self: start; }
.dwdg-energy-experts__nav[aria-disabled="true"] {
opacity: .25;
cursor: default;
pointer-events: none;
}
.dwdg-energy-projects {
background: var(--dwdg-energy-soft);
padding-block: clamp(72px, 9vw, 128px);
}
.dwdg-energy-projects .work-list {
display: flex;
flex-direction: column;
gap: clamp(16px, 2vw, 24px);
}
.dwdg-energy-projects .work-card {
display: grid;
grid-template-columns: 1fr 1fr;
min-height: clamp(220px, 22vw, 290px);
overflow: hidden;
border-radius: var(--dwdg-energy-radius);
background: #fff;
box-shadow: var(--dwdg-energy-shadow);
padding: 0;
margin: 0;
gap: 0;
}
.dwdg-energy-projects .work-card-reverse .work-media { order: 2; }
.dwdg-energy-projects .work-card-reverse .work-copy { order: 1; }
.dwdg-energy-projects .work-card .work-media {
position: relative;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
border-radius: 0;
overflow: hidden;
}
.dwdg-energy-projects .work-card .work-media img {
width: 100%; height: 100%; object-fit: cover; display: block;
}
.dwdg-energy-projects .work-card .work-copy {
display: flex;
flex-direction: column;
justify-content: center;
padding: clamp(28px, 3.5vw, 48px) clamp(28px, 3.6vw, 52px);
gap: clamp(10px, 1.2vw, 14px);
background: #fff;
}
.dwdg-energy-projects .work-card .work-copy h3 {
color: var(--dwdg-energy-ink);
font-size: clamp(1.05rem, 1.5vw, 1.4rem);
line-height: 1.15;
letter-spacing: -.035em;
font-weight: 700;
margin: 0;
}
.dwdg-energy-projects .work-card .work-copy p {
color: var(--dwdg-energy-muted);
font-size: clamp(.85rem, 1vw, .95rem);
line-height: 1.45;
letter-spacing: -.012em;
margin: 0;
max-width: 460px;
}
.dwdg-energy-projects .work-card .work-copy .button {
align-self: flex-start;
margin-top: 8px;
padding: 8px 20px;
border-radius: var(--dwdg-energy-pill);
background: var(--dwdg-energy-green);
color: #fff;
font-size: .88rem;
font-weight: 500;
text-decoration: none;
}
.dwdg-energy-projects .work-card .work-copy .button:hover {
background: #fff;
border-color: var(--green, #12c95f);
color: var(--green, #12c95f);
}
.dwdg-energy-projects .work-card .work-media .eyebrow {
position: absolute;
top: clamp(14px, 1.6vw, 20px);
left: clamp(14px, 1.6vw, 20px);
z-index: 2;
display: inline-flex;
align-items: center;
padding: 6px 14px;
border-radius: var(--dwdg-energy-pill);
background: var(--dwdg-energy-glass-deep);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
color: var(--dwdg-energy-ink);
font-size: .76rem;
font-weight: 500;
letter-spacing: 0;
text-transform: none;
box-shadow: 0 4px 12px rgba(20,14,9,.06);
}
.dwdg-energy-publications {
background: var(--dwdg-energy-soft);
padding-block: clamp(20px, 3vw, 48px) clamp(72px, 9vw, 128px);
}
.dwdg-energy-publications .dwdg-pub-slider__track { position: relative; }
.dwdg-energy-publications .publication-card {
display: none;
grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
align-items: center;
min-height: clamp(280px, 28vw, 380px);
background: rgba(255,255,255,.55);
border-radius: var(--dwdg-energy-radius);
padding: clamp(28px, 3.5vw, 52px) clamp(36px, 4.5vw, 72px);
box-shadow: var(--dwdg-energy-shadow);
gap: clamp(28px, 4vw, 64px);
}
.dwdg-energy-publications .publication-card.active { display: grid; }
.dwdg-energy-publications .report-preview {
display: flex;
align-items: center;
margin: 0;
padding: 0;
}
.dwdg-energy-publications .report-preview img,
.dwdg-energy-publications .report-cover-media img {
width: 100%;
max-width: 240px;
height: auto;
display: block;
border-radius: 8px;
box-shadow: 0 16px 32px rgba(20,14,9,.14);
background: #fff;
}
.dwdg-energy-publications .publication-copy {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: clamp(18px, 2.2vw, 30px);
}
.dwdg-energy-publications .publication-copy .eyebrow {
display: inline-flex;
align-items: center;
padding: 6px 14px;
border-radius: var(--dwdg-energy-pill);
background: var(--dwdg-energy-green-soft);
color: var(--dwdg-energy-green-deep);
font-size: .72rem;
font-weight: 500;
letter-spacing: 0;
}
.dwdg-energy-publications .publication-copy h3 {
color: var(--dwdg-energy-ink);
font-size: clamp(1.15rem, 1.6vw, 1.45rem);
line-height: 1.2;
letter-spacing: -.028em;
font-weight: 700;
margin: 0;
max-width: 520px;
}
.dwdg-energy-publications .publication-copy .button {
padding: 9px 22px;
border-radius: var(--dwdg-energy-pill);
background: var(--dwdg-energy-green);
color: #fff;
font-size: .9rem;
font-weight: 500;
text-decoration: none;
}
.dwdg-energy-publications .publication-copy .button:hover {
background: #fff;
border-color: var(--green, #12c95f);
color: var(--green, #12c95f);
}
.dwdg-energy-publications .dwdg-pub-slider__nav {
display: flex;
align-items: center;
justify-content: center;
gap: 18px;
margin-top: clamp(24px, 3vw, 36px);
}
.dwdg-energy-publications .dwdg-pub-slider__btn {
width: clamp(40px, 3.6vw, 52px);
height: clamp(40px, 3.6vw, 52px);
border: none;
border-radius: 50%;
background: transparent;
color: var(--dwdg-energy-ink);
font-size: 1.4rem;
line-height: 1;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
transition: background .2s;
}
.dwdg-energy-publications .dwdg-pub-slider__btn:hover {
background: var(--dwdg-energy-glass-deep);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
}
.dwdg-energy-publications .dwdg-pub-slider__dots {
display: inline-flex;
align-items: center;
gap: 8px;
}
.dwdg-energy-publications .dwdg-pub-slider__dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--dwdg-energy-soft-2);
display: inline-block;
transition: background .2s;
cursor: pointer;
}
.dwdg-energy-publications .dwdg-pub-slider__dot.active {
background: var(--dwdg-energy-green);
}
.dwdg-energy-insights {
background: var(--dwdg-energy-paper);
padding-block: clamp(72px, 9vw, 128px);
}
.dwdg-energy-insights .insight-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(20px, 2.5vw, 36px);
}
.dwdg-energy-insights .insight-card {
position: relative;
overflow: hidden;
border-radius: var(--dwdg-energy-radius);
background: #d8d5cc;
box-shadow: var(--dwdg-energy-shadow);
aspect-ratio: .85 / 1;
margin: 0;
padding: 0;
}
.dwdg-energy-insights .insight-card img {
position: absolute;
inset: 0;
width: 100%; height: 100%;
object-fit: cover;
border-radius: 0;
}
.dwdg-energy-insights .insight-card .eyebrow {
position: absolute;
top: clamp(14px, 1.6vw, 22px);
left: clamp(14px, 1.6vw, 22px);
z-index: 2;
display: inline-flex;
align-items: center;
padding: 6px 14px;
border-radius: var(--dwdg-energy-pill);
background: var(--dwdg-energy-green);
color: #fff;
font-size: .76rem;
font-weight: 500;
letter-spacing: 0;
}
.dwdg-energy-insights .insight-card .insight-copy {
position: absolute;
left: clamp(14px, 1.6vw, 22px);
right: clamp(14px, 1.6vw, 22px);
bottom: clamp(14px, 1.6vw, 22px);
z-index: 2;
}
.dwdg-energy-insights .insight-card .insight-copy h3 {
background: var(--dwdg-energy-glass);
-webkit-backdrop-filter: blur(18px) saturate(140%);
backdrop-filter: blur(18px) saturate(140%);
color: var(--dwdg-energy-ink);
padding: clamp(12px, 1.3vw, 16px) clamp(14px, 1.6vw, 20px);
border-radius: 18px;
font-size: clamp(.92rem, 1.1vw, 1.05rem);
line-height: 1.25;
letter-spacing: -.022em;
font-weight: 500;
margin: 0;
box-shadow: 0 6px 16px rgba(20,14,9,.06);
text-align: center;
}
.dwdg-energy-insights .insight-card .insight-copy h3 a {
color: inherit;
text-decoration: none;
}
.dwdg-energy-contact {
position: relative;
overflow: hidden;
background: linear-gradient(100deg,
#eafff4 0%,
#d2f7e0 22%,
#8cebb4 55%,
#18c95f 100%);
width: 100%;
padding-block: 0;
}
.dwdg-energy-contact__inner {
width: min(100% - 2 * var(--dwdg-energy-pad), var(--dwdg-energy-max));
margin-inline: auto;
min-height: clamp(560px, 52vw, 720px);
display: grid;
grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
gap: clamp(30px, 4vw, 64px);
align-items: end;
padding: 0;
}
.dwdg-energy-contact__photo {
align-self: end;
justify-self: start;
width: 100%;
max-width: 620px;
height: clamp(540px, 54vw, 720px);
margin: 0;
padding: 0;
display: flex;
align-items: flex-end;
justify-content: flex-start;
}
.dwdg-energy-contact__photo img {
width: 100%;
height: 100%;
object-fit: contain;
object-position: bottom left;
display: block;
}
.dwdg-energy-contact__photo.is-empty {
height: clamp(280px, 30vw, 360px);
background: rgba(255,255,255,.25);
border-radius: 28px 28px 0 0;
align-items: center;
justify-content: center;
}
.dwdg-energy-contact__body {
align-self: center;
max-width: 720px;
padding-block: clamp(60px, 7vw, 88px);
display: flex;
flex-direction: column;
align-items: flex-start;
gap: clamp(14px, 1.8vw, 22px);
}
.dwdg-energy-contact__eyebrow {
display: inline-flex;
align-items: center;
min-height: 38px;
padding: 0 20px;
border-radius: var(--dwdg-energy-pill);
background: var(--dwdg-energy-glass-deep);
-webkit-backdrop-filter: blur(14px) saturate(140%);
backdrop-filter: blur(14px) saturate(140%);
color: var(--dwdg-energy-ink);
font-size: .95rem;
font-weight: 400;
letter-spacing: -.012em;
margin: 0;
box-shadow: 0 6px 16px rgba(20,14,9,.06);
}
.dwdg-energy-contact__body h2 {
color: var(--dwdg-energy-ink);
font-size: clamp(2rem, 3.6vw, 3rem);
line-height: 1;
letter-spacing: -.045em;
font-weight: 800;
margin: 0;
}
.dwdg-energy-contact__body strong {
color: var(--dwdg-energy-ink);
font-size: clamp(1rem, 1.25vw, 1.18rem);
line-height: 1.2;
letter-spacing: -.022em;
font-weight: 500;
margin: 0;
}
.dwdg-energy-contact__body p {
color: rgba(12,13,11,.92);
font-size: clamp(.92rem, 1.1vw, 1.02rem);
line-height: 1.55;
letter-spacing: -.012em;
max-width: 680px;
margin: 0;
}
.dwdg-energy-contact__email {
display: inline-flex;
align-items: center;
gap: 14px;
color: var(--dwdg-energy-ink);
font-size: clamp(.92rem, 1.08vw, 1rem);
font-weight: 500;
text-decoration: none;
margin-top: 8px;
}
.dwdg-energy-contact__email svg {
flex: 0 0 auto;
width: 22px;
height: 22px;
padding: 10px;
box-sizing: content-box;
border-radius: 50%;
background: #fff;
color: var(--dwdg-energy-ink);
box-shadow: 0 6px 14px rgba(20,14,9,.08);
}
@media (max-width: 1024px) {
.dwdg-energy-page,
.dwdg-energy-hero,
.dwdg-energy-expertise,
.dwdg-energy-experts,
.dwdg-energy-projects,
.dwdg-energy-publications,
.dwdg-energy-insights,
.dwdg-energy-contact { --dwdg-energy-pad: clamp(20px, 3.5vw, 40px); }
.dwdg-energy-expertise__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dwdg-energy-expertise__card { aspect-ratio: 0.9 / 1; }
.dwdg-energy-expertise__card:nth-child(4n + 5),
.dwdg-energy-expertise__card:nth-child(4n + 6) { aspect-ratio: 1.9 / 1; }
.dwdg-energy-experts__card { flex: 0 0 calc((100% - clamp(24px, 3vw, 48px)) / 2); }
.dwdg-energy-hero__copy { width: 70%; }
}
@media (max-width: 768px) {
.dwdg-energy-page,
.dwdg-energy-hero,
.dwdg-energy-expertise,
.dwdg-energy-experts,
.dwdg-energy-projects,
.dwdg-energy-publications,
.dwdg-energy-insights,
.dwdg-energy-contact { --dwdg-energy-pad: 20px; }
.dwdg-energy-hero__title { font-size: clamp(2.2rem, 9vw, 2.8rem); }
.dwdg-energy-hero__media { aspect-ratio: 1.6 / 1; border-radius: 14px; }
.dwdg-energy-hero__copy { width: 100%; }
.dwdg-energy-expertise__grid { grid-template-columns: 1fr; }
.dwdg-energy-expertise__card,
.dwdg-energy-expertise__card:nth-child(4n + 5),
.dwdg-energy-expertise__card:nth-child(4n + 6) {
grid-column: auto;
aspect-ratio: 1.15 / 1;
}
.dwdg-energy-expertise__card:nth-child(4n + 5) .dwdg-energy-expertise__body,
.dwdg-energy-expertise__card:nth-child(4n + 6) .dwdg-energy-expertise__body {
left: clamp(12px, 1.4vw, 18px);
width: auto;
}
.dwdg-energy-experts__card { flex: 0 0 100%; }
.dwdg-energy-experts__shell { grid-template-columns: 1fr; }
.dwdg-energy-experts__nav { display: none; }
.dwdg-energy-projects .work-card,
.dwdg-energy-projects .work-card-reverse {
grid-template-columns: 1fr;
}
.dwdg-energy-projects .work-card-reverse .work-media,
.dwdg-energy-projects .work-card-reverse .work-copy { order: initial; }
.dwdg-energy-projects .work-card .work-media { min-height: 200px; }
.dwdg-energy-publications .publication-card { grid-template-columns: 1fr; padding: clamp(20px, 5vw, 32px); }
.dwdg-energy-insights .insight-grid { grid-template-columns: 1fr; }
.dwdg-energy-insights .insight-card { aspect-ratio: 1.2 / 1; }
.dwdg-energy-contact__inner {
grid-template-columns: 1fr;
gap: 0;
min-height: 0;
}
.dwdg-energy-contact__photo {
order: 2;
justify-self: center;
height: 420px;
max-width: 340px;
}
.dwdg-energy-contact__photo img { object-position: bottom center; }
.dwdg-energy-contact__body {
order: 1;
padding-block: clamp(40px, 8vw, 56px) 0;
}
}
.dwdg-single,
.dwdg-expert {
--dwdg-energy-max:        1480px;
--dwdg-energy-pad:        clamp(20px, 3.4vw, 56px);
--dwdg-energy-paper:      #fffdf8;
--dwdg-energy-soft:       #f1ece6;
--dwdg-energy-ink:        #0c0d0b;
--dwdg-energy-muted:      #4a4b46;
--dwdg-energy-green:      #12c95f;
--dwdg-energy-green-deep: #0aa04b;
--dwdg-energy-radius:     22px;
--dwdg-energy-pill:       999px;
background: var(--dwdg-energy-paper);
padding-top:    clamp(110px, 12vw, 170px);
padding-bottom: clamp(72px, 9vw, 128px);
color: var(--dwdg-energy-ink);
}
.dwdg-single__wrap,
.dwdg-expert__wrap {
width: min(100% - 2 * var(--dwdg-energy-pad), var(--dwdg-energy-max));
margin-inline: auto;
}
.dwdg-single__head {
margin-bottom: clamp(32px, 4vw, 52px);
max-width: 760px;
margin-inline: auto;
}
.dwdg-single__eyebrow {
display: inline-flex;
align-items: center;
padding: 6px 14px;
margin-bottom: 18px;
border-radius: var(--dwdg-energy-pill);
background: var(--dwdg-energy-green);
color: #fff;
font-size: .76rem;
font-weight: 500;
}
.dwdg-single__title {
color: var(--dwdg-energy-ink);
font-size: clamp(2rem, 4.4vw, 3.6rem);
line-height: 1;
letter-spacing: -.055em;
font-weight: 800;
margin: 0;
max-width: 1000px;
}
.dwdg-single__lede {
margin: 18px 0 0;
font-size: clamp(1rem, 1.3vw, 1.15rem);
line-height: 1.55;
color: var(--dwdg-energy-muted);
}
.dwdg-single__cta {
max-width: 760px;
margin: clamp(36px, 4.5vw, 56px) auto 0;
}
.dwdg-single__hero {
margin: 0 0 clamp(40px, 5vw, 72px);
border-radius: var(--dwdg-energy-radius);
overflow: hidden;
max-height: 540px;
}
.dwdg-single__hero img {
width: 100%; height: auto; display: block; object-fit: cover;
}
.dwdg-single__body {
max-width: 760px;
margin-inline: auto;
font-size: clamp(1rem, 1.2vw, 1.1rem);
line-height: 1.65;
color: var(--dwdg-energy-muted);
}
.dwdg-single__body p { margin: 0 0 1em; }
.dwdg-single__body h2 {
font-size: clamp(1.3rem, 1.8vw, 1.6rem);
letter-spacing: -.025em;
color: var(--dwdg-energy-ink);
margin: 1.5em 0 .5em;
}
.dwdg-single__body p,
.dwdg-single__body li,
.dwdg-single__body h1,
.dwdg-single__body h2,
.dwdg-single__body h3,
.dwdg-single__body h4,
.dwdg-single__body h5,
.dwdg-single__body h6,
.dwdg-single__body figcaption {
text-align: left !important;
text-indent: 0 !important;
}
.dwdg-single__body h1 {
font-size: clamp(1.4rem, 2vw, 1.8rem);
letter-spacing: -.03em;
color: var(--dwdg-energy-ink);
margin: 1.5em 0 .5em;
}
.dwdg-single__body h3,
.dwdg-single__body h4 {
font-size: clamp(1.12rem, 1.5vw, 1.3rem);
letter-spacing: -.02em;
color: var(--dwdg-energy-ink);
margin: 1.4em 0 .5em;
}
.dwdg-single__body strong { color: var(--dwdg-energy-ink); }
.dwdg-single__body a { color: var(--dwdg-energy-green-deep); }
.dwdg-single__body img {
display: block;
float: none !important;
width: 100% !important;
max-width: 100% !important;
height: auto !important;
margin: clamp(24px, 3vw, 40px) auto;
border-radius: var(--dwdg-energy-radius);
}
.dwdg-single__body figure,
.dwdg-single__body .wp-block-image,
.dwdg-single__body .wp-caption {
float: none !important;
width: 100% !important;
max-width: 100% !important;
margin: clamp(24px, 3vw, 40px) 0;
}
.dwdg-single__body figure img,
.dwdg-single__body .wp-caption img { margin: 0 auto; }
.dwdg-single__body figcaption,
.dwdg-single__body .wp-caption-text {
margin-top: 10px;
font-size: .85rem;
color: var(--dwdg-energy-muted);
opacity: .85;
}
.dwdg-single__body .alignleft,
.dwdg-single__body .alignright,
.dwdg-single__body .aligncenter,
.dwdg-single__body .alignnone {
float: none !important;
margin-left: 0 !important;
margin-right: 0 !important;
}
.dwdg-single__body ul,
.dwdg-single__body ol {
margin: 0 0 1.2em;
padding-left: 1.3em;
}
.dwdg-single__body li { margin: 0 0 .45em; }
.dwdg-single__body blockquote {
margin: clamp(24px, 3vw, 40px) 0;
padding: 4px 0 4px 20px;
border-left: 3px solid var(--dwdg-energy-green);
color: var(--dwdg-energy-ink);
font-weight: 500;
}
.dwdg-single__body blockquote p:last-child { margin-bottom: 0; }
.dwdg-single__body table {
display: block;
width: 100% !important;
max-width: 100%;
overflow-x: auto;
border-collapse: collapse;
margin: clamp(24px, 3vw, 40px) 0;
font-size: .9rem;
line-height: 1.45;
}
.dwdg-single__body th,
.dwdg-single__body td {
padding: 10px 14px;
border: 1px solid rgba(20, 14, 9, .12);
text-align: left !important;
vertical-align: top;
}
.dwdg-single__body th {
background: var(--dwdg-energy-soft);
color: var(--dwdg-energy-ink);
font-weight: 600;
}
.dwdg-single__body iframe,
.dwdg-single__body video,
.dwdg-single__body embed {
max-width: 100% !important;
border-radius: var(--dwdg-energy-radius);
margin: clamp(24px, 3vw, 40px) 0;
}
.dwdg-single__body p[style*="margin-left"],
.dwdg-single__body p[style*="padding-left"],
.dwdg-single__body div[style*="margin-left"],
.dwdg-single__body div[style*="padding-left"] {
margin-left: 0 !important;
padding-left: 0 !important;
}
.dwdg-single__body br + br { display: none; }
.dwdg-single__body hr {
border: 0;
border-top: 1px solid rgba(20, 14, 9, .1);
margin: clamp(28px, 3.4vw, 44px) 0;
}
.dwdg-single__nav {
margin-top: clamp(56px, 6vw, 80px);
padding-top: clamp(28px, 3vw, 40px);
border-top: 1px solid rgba(20,14,9,.08);
display: flex;
justify-content: space-between;
gap: 24px;
flex-wrap: wrap;
}
.dwdg-single__nav-link {
display: inline-flex;
align-items: center;
gap: 10px;
max-width: 360px;
padding: 10px 18px;
border-radius: var(--dwdg-energy-pill);
background: transparent;
border: 1.5px solid rgba(20,14,9,.12);
color: var(--dwdg-energy-ink);
font-size: .88rem;
font-weight: 500;
text-decoration: none;
transition: border-color .2s, background .2s;
}
.dwdg-single__nav-link:hover {
border-color: var(--dwdg-energy-green);
background: rgba(18,201,95,.06);
}
.dwdg-single__nav-link--next { margin-left: auto; }
.dwdg-single__nav-title {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.dwdg-expert__top {
display: grid;
grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
gap: clamp(36px, 4.5vw, 72px);
align-items: start;
margin-bottom: clamp(64px, 7vw, 96px);
}
.dwdg-expert__media {
width: 100%;
aspect-ratio: 1 / 1;
max-width: 420px;
border-radius: var(--dwdg-energy-radius);
overflow: hidden;
background: #efeee9;
}
.dwdg-expert__media img {
width: 100%; height: 100%;
object-fit: cover; object-position: top center;
display: block;
}
.dwdg-expert__media-empty {
width: 100%; height: 100%;
display: flex; align-items: center; justify-content: center;
font-size: clamp(4rem, 8vw, 8rem);
font-weight: 800;
color: rgba(20,14,9,.18);
}
.dwdg-expert__intro {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 16px;
padding-top: clamp(20px, 3vw, 36px);
}
.dwdg-expert__name {
color: var(--dwdg-energy-ink);
font-size: clamp(2rem, 4vw, 3.2rem);
line-height: 1;
letter-spacing: -.055em;
font-weight: 800;
margin: 0;
}
.dwdg-expert__role {
color: var(--dwdg-energy-green);
font-size: clamp(1rem, 1.25vw, 1.18rem);
font-weight: 500;
letter-spacing: -.015em;
margin: 0 0 12px;
}
.dwdg-expert__bio {
color: var(--dwdg-energy-ink);
font-size: clamp(1rem, 1.18vw, 1.08rem);
line-height: 1.6;
letter-spacing: -.012em;
margin: 0 0 12px;
max-width: 720px;
}
.dwdg-expert__bio p { margin: 0 0 1em; }
.dwdg-expert__bio p:last-child { margin-bottom: 0; }
.dwdg-expert__email {
display: inline-flex;
align-items: center;
gap: 14px;
color: var(--dwdg-energy-ink);
font-size: clamp(.92rem, 1.08vw, 1rem);
font-weight: 500;
text-decoration: none;
}
.dwdg-expert__email svg {
flex: 0 0 auto;
width: 22px;
height: 22px;
padding: 10px;
box-sizing: content-box;
border-radius: 50%;
background: #fff;
color: var(--dwdg-energy-ink);
box-shadow: 0 6px 14px rgba(20,14,9,.08);
}
.dwdg-expert__related-title {
color: var(--dwdg-energy-ink);
font-size: clamp(1.6rem, 2.6vw, 2.2rem);
line-height: 1;
letter-spacing: -.045em;
font-weight: 800;
margin: 0 0 clamp(24px, 3vw, 36px);
}
.dwdg-expert__related-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: clamp(20px, 2.5vw, 36px);
}
.dwdg-expert__related-card {
display: flex;
flex-direction: column;
align-items: flex-start;
text-decoration: none;
color: inherit;
transition: transform .2s;
}
.dwdg-expert__related-card:hover { transform: translateY(-2px); }
.dwdg-expert__related-photo {
width: 100%;
max-width: 200px;
aspect-ratio: 1 / 1;
border-radius: 18px;
overflow: hidden;
background: #efeee9;
margin: 0 0 14px;
}
.dwdg-expert__related-photo img {
width: 100%; height: 100%;
object-fit: cover; object-position: top center;
}
.dwdg-expert__related-name {
font-size: clamp(1rem, 1.18vw, 1.1rem);
font-weight: 700;
letter-spacing: -.025em;
color: var(--dwdg-energy-ink);
margin: 0 0 4px;
}
.dwdg-expert__related-role {
font-size: clamp(.82rem, .98vw, .92rem);
color: var(--dwdg-energy-green);
font-weight: 500;
margin: 0;
}
@media (max-width: 768px) {
.dwdg-single,
.dwdg-expert { --dwdg-energy-pad: 20px; }
.dwdg-expert__top { grid-template-columns: 1fr; }
.dwdg-expert__media { max-width: 320px; }
.dwdg-expert__related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
.dwdg-expert__related-grid { grid-template-columns: 1fr; }
}
.dwdg-energy-page,
.dwdg-energy-hero,
.dwdg-energy-expertise,
.dwdg-energy-experts,
.dwdg-energy-projects,
.dwdg-energy-publications,
.dwdg-energy-insights,
.dwdg-energy-contact {
--dwdg-energy-max: 1180px;
--dwdg-energy-wide: 1320px;
--dwdg-energy-pad: clamp(24px, 4vw, 64px);
font-family: var(--wp--preset--font-family--inter, 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}
.dwdg-energy-wrap {
width: min(calc(100% - 2 * var(--dwdg-energy-pad)), var(--dwdg-energy-max));
max-width: var(--dwdg-energy-max);
}
.dwdg-energy-hero .dwdg-energy-wrap { max-width: var(--dwdg-energy-wide); }
.dwdg-energy-hero__head { max-width: var(--dwdg-energy-wide); }
.dwdg-energy-hero__media { aspect-ratio: 2.35 / 1; border-radius: 26px 26px 0 0; }
.dwdg-energy-hero__curve { height: 34%; }
.dwdg-energy-hero__copy { width: min(58%, 610px); margin-top: clamp(30px, 3.2vw, 44px); margin-right: clamp(20px, 8vw, 170px); }
.dwdg-energy-hero__copy p { font-size: clamp(1rem, 1.25vw, 1.18rem); line-height: 1.42; }
.dwdg-energy-hero__copy strong { color: var(--dwdg-energy-green); font-weight: 500; }
.dwdg-energy-experts { padding-block: clamp(64px, 7vw, 94px); }
.dwdg-energy-experts__head { margin-bottom: clamp(26px, 3vw, 42px); }
.dwdg-energy-experts__shell {
display: block;
position: relative;
}
.dwdg-energy-experts__track {
gap: clamp(34px, 4.2vw, 58px);
padding: 0 clamp(18px, 2vw, 26px) 4px 0;
}
.dwdg-energy-experts__card {
flex: 0 0 calc((100% - 3 * clamp(34px, 4.2vw, 58px)) / 4);
min-height: 0;
}
.dwdg-energy-experts__photo {
width: min(100%, 158px);
max-width: 158px;
aspect-ratio: .88 / 1;
border-radius: 18px;
margin-bottom: clamp(14px, 1.4vw, 18px);
background: #efeee9;
}
.dwdg-energy-experts__photo img {
object-fit: contain;
object-position: center bottom;
background: #efeee9;
}
.dwdg-energy-experts__name { font-size: clamp(1.02rem, 1.12vw, 1.16rem); line-height: 1.04; margin-bottom: 7px; }
.dwdg-energy-experts__role { font-size: clamp(.86rem, .95vw, .96rem); margin-bottom: 14px; }
.dwdg-energy-experts__bio { font-size: clamp(.86rem, .95vw, .94rem); line-height: 1.36; margin-bottom: 18px; }
.dwdg-energy-experts__more { padding: 7px 18px; font-size: .86rem; }
.dwdg-energy-experts__nav {
position: absolute;
z-index: 5;
top: 42%;
transform: translateY(-50%);
visibility: visible !important;
opacity: 1;
width: 42px;
height: 42px;
color: var(--dwdg-energy-green);
background: transparent;
}
.dwdg-energy-experts__nav--prev { left: -56px; justify-self: auto; }
.dwdg-energy-experts__nav--next { right: -56px; justify-self: auto; }
.dwdg-energy-experts__nav[aria-disabled="true"] { opacity: .28; pointer-events: auto; }
.dwdg-energy-projects { padding-block: clamp(62px, 6.2vw, 86px); }
.dwdg-energy-projects .section-heading { margin-bottom: clamp(20px, 2vw, 28px); }
.dwdg-energy-projects .work-list { gap: clamp(14px, 1.6vw, 18px); }
.dwdg-energy-projects .work-card {
min-height: clamp(145px, 14vw, 176px);
border-radius: 18px;
box-shadow: none;
background: rgba(255,255,255,.78);
}
.dwdg-energy-projects .work-card .work-copy {
justify-content: center;
padding: clamp(22px, 2.4vw, 34px) clamp(24px, 3vw, 42px);
gap: 9px;
}
.dwdg-energy-projects .work-card .work-copy h3 {
font-size: clamp(1rem, 1.18vw, 1.16rem);
line-height: 1.12;
letter-spacing: -.032em;
max-width: 420px;
}
.dwdg-energy-projects .work-card .work-copy p {
font-size: clamp(.82rem, .9vw, .9rem);
line-height: 1.35;
max-width: 430px;
}
.dwdg-energy-projects .work-card .work-copy .button {
margin-top: 4px;
padding: 7px 16px;
font-size: .78rem;
}
.dwdg-energy-projects .work-card .work-media img { object-fit: cover; }
.dwdg-energy-projects .work-card .work-media .eyebrow {
top: 14px;
left: 14px;
padding: 5px 12px;
font-size: .7rem;
}
.dwdg-energy-publications { padding-block: clamp(30px, 3vw, 46px) clamp(62px, 6.2vw, 86px); }
.dwdg-energy-publications .dwdg-energy-wrap { max-width: 1040px; }
.dwdg-energy-insights { padding-block: clamp(62px, 6.5vw, 92px); }
.dwdg-energy-insights .dwdg-energy-wrap { max-width: 1180px; }
.dwdg-energy-contact {
min-height: 0;
padding: 0;
}
.dwdg-energy-contact__inner {
width: min(calc(100% - 2 * var(--dwdg-energy-pad)), 1180px);
min-height: clamp(340px, 34vw, 430px);
grid-template-columns: minmax(270px, .42fr) minmax(0, .58fr);
gap: clamp(32px, 5vw, 72px);
align-items: end;
}
.dwdg-energy-contact__photo {
width: min(100%, 330px);
max-width: 330px;
height: clamp(310px, 32vw, 410px);
justify-self: start;
align-items: flex-end;
}
.dwdg-energy-contact__photo img {
width: 100%;
height: 100%;
object-fit: contain;
object-position: bottom left;
image-rendering: auto;
}
.dwdg-energy-contact__body {
max-width: 620px;
padding-block: clamp(52px, 6vw, 74px);
gap: clamp(12px, 1.4vw, 18px);
}
.dwdg-energy-contact__body h2 { font-size: clamp(1.75rem, 2.8vw, 2.35rem); }
.dwdg-energy-contact__body p { font-size: clamp(.9rem, 1vw, .98rem); line-height: 1.46; }
.dwdg-energy-contact__eyebrow { min-height: 32px; padding: 0 16px; font-size: .86rem; }
.dwdg-video-container {
max-width: 1320px;
width: min(calc(100% - 2 * var(--dwdg-energy-pad, clamp(24px, 4vw, 64px))), 1320px);
margin: clamp(44px, 6vw, 80px) auto;
padding-inline: 0;
}
.dwdg-video-container__frame {
position: relative;
border-radius: 26px 26px 0 0;
aspect-ratio: 2.35 / 1;
box-shadow: none;
isolation: isolate;
}
.dwdg-video-container.is-rounded .dwdg-video-container__frame { border-radius: 26px 26px 0 0; }
.dwdg-video-container.has-slant .dwdg-video-container__frame { clip-path: none; }
.dwdg-video-container__curve {
position: absolute;
left: 0;
right: 0;
bottom: -1px;
width: 100%;
height: 34%;
z-index: 2;
pointer-events: none;
}
.dwdg-video-container__curve path { fill: var(--dwdg-energy-paper, #fffdf8); }
@media (max-width: 1240px) {
.dwdg-energy-experts__nav--prev { left: -10px; }
.dwdg-energy-experts__nav--next { right: -10px; }
.dwdg-energy-experts__track { padding-inline: 48px; }
}
@media (max-width: 1024px) {
.dwdg-energy-experts__card { flex-basis: calc((100% - clamp(34px, 4.2vw, 58px)) / 2); }
.dwdg-energy-projects .work-card { min-height: 160px; }
}
@media (max-width: 768px) {
.dwdg-energy-wrap,
.dwdg-energy-hero .dwdg-energy-wrap { width: min(calc(100% - 40px), var(--dwdg-energy-max)); }
.dwdg-energy-hero__media,
.dwdg-video-container__frame { aspect-ratio: 1.55 / 1; border-radius: 18px 18px 0 0; }
.dwdg-energy-hero__copy { width: 100%; margin-right: 0; }
.dwdg-energy-experts__track { padding-inline: 0; }
.dwdg-energy-experts__nav { display: inline-flex; top: auto; bottom: -58px; transform: none; }
.dwdg-energy-experts__nav--prev { left: 0; }
.dwdg-energy-experts__nav--next { right: 0; }
.dwdg-energy-experts { padding-bottom: clamp(88px, 14vw, 120px); }
.dwdg-energy-projects .work-card { min-height: 0; }
.dwdg-energy-projects .work-card .work-media { min-height: 210px; }
.dwdg-energy-contact__inner { grid-template-columns: 1fr; min-height: 0; }
.dwdg-energy-contact__photo { order: 2; justify-self: center; width: 270px; height: 330px; }
.dwdg-energy-contact__body { order: 1; padding-block: 42px 0; }
}
.dwdg-energy-experts__track {
align-items: flex-start;
}
.dwdg-energy-experts__card {
min-width: 0;
}
.dwdg-energy-experts__photo {
width: min(100%, 180px);
max-width: 180px;
aspect-ratio: .86 / 1;
border-radius: 20px;
overflow: hidden;
background: #efeee9;
display: block;
margin-bottom: clamp(16px, 1.7vw, 22px);
}
.dwdg-energy-experts__photo img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
display: block;
background: #efeee9;
}
@media (min-width: 1024px) {
.dwdg-energy-experts__card {
flex-basis: calc((100% - 3 * clamp(30px, 3.8vw, 52px)) / 4);
}
}
.dwdg-energy-contact__inner {
min-height: clamp(390px, 34vw, 480px);
grid-template-columns: minmax(300px, .44fr) minmax(0, .56fr);
align-items: stretch;
}
.dwdg-energy-contact__photo {
align-self: stretch;
width: min(100%, 390px);
max-width: 390px;
height: auto;
min-height: calc(clamp(390px, 34vw, 480px) - 8px);
justify-self: start;
display: flex;
align-items: flex-end;
justify-content: flex-start;
}
.dwdg-energy-contact__photo img {
width: auto;
height: min(100%, 456px);
max-height: calc(clamp(390px, 34vw, 480px) - 6px);
max-width: 100%;
object-fit: contain;
object-position: bottom left;
}
.dwdg-energy-contact__body {
align-self: center;
padding-block: clamp(44px, 5vw, 64px);
}
@media (max-width: 720px) {
.dwdg-energy-contact__inner {
min-height: 0;
grid-template-columns: 1fr;
}
.dwdg-energy-contact__photo {
order: 2;
min-height: 300px;
width: 260px;
max-width: 72vw;
justify-self: center;
}
.dwdg-energy-contact__photo img {
height: 100%;
max-height: 320px;
}
.dwdg-energy-contact__body {
order: 1;
padding-block: 42px 4px;
}
}
.dwdg-energy-hero__curve,
.dwdg-video-container__curve {
height: 44%;
}
.dwdg-energy-hero__media,
.dwdg-video-container__frame {
border-radius: 26px 26px 0 0;
}
.dwdg-energy-insights {
padding-block: clamp(52px, 6vw, 78px);
}
.dwdg-energy-insights .dwdg-energy-wrap {
max-width: 1180px;
}
.dwdg-energy-insights .insight-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(16px, 2.5vw, 28px);
}
.dwdg-energy-insights .insight-card {
position: relative;
display: flex;
min-height: 300px;
aspect-ratio: auto;
overflow: hidden;
border-radius: var(--radius-lg, 24px);
background: #dfe4dc;
box-shadow: var(--shadow, 0 20px 55px rgba(20,14,9,.08));
transition: transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .28s cubic-bezier(.22,.61,.36,1);
}
.dwdg-energy-insights .insight-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-hover, 0 24px 70px rgba(20,14,9,.12));
}
.dwdg-energy-insights .insight-card::after {
content: "";
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(180deg, rgba(0,0,0,.02) 40%, rgba(0,0,0,.36));
}
.dwdg-energy-insights .insight-card img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 0;
transition: transform .45s cubic-bezier(.22,.61,.36,1), filter .45s cubic-bezier(.22,.61,.36,1);
}
.dwdg-energy-insights .insight-card:hover img {
transform: scale(1.05);
filter: saturate(1.06) brightness(1.02);
}
.dwdg-energy-insights .insight-card .eyebrow {
position: absolute;
top: 16px;
left: 16px;
z-index: 3;
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 30px;
padding: 6px 16px;
border-radius: 999px;
background: var(--dwdg-energy-green, var(--green, #12c95f));
color: #fff;
font-size: .76rem;
font-weight: 600;
line-height: 1;
letter-spacing: .02em;
text-transform: uppercase;
}
.dwdg-energy-insights .insight-card .insight-copy {
position: relative;
z-index: 2;
display: flex;
width: 100%;
flex-direction: column;
justify-content: flex-end;
padding: 16px;
left: auto;
right: auto;
bottom: auto;
}
.dwdg-energy-insights .insight-card .insight-copy h3 {
margin: 10px 0 0;
min-height: 100px;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 16px 18px;
border-radius: var(--radius-md, 16px);
background: rgba(255,255,255,.82);
-webkit-backdrop-filter: blur(16px);
backdrop-filter: blur(16px);
color: var(--ink, #0c0d0b);
font-size: clamp(.94rem, 1.55vw, 1.2rem);
line-height: 1.15;
letter-spacing: -.04em;
font-weight: 500;
text-align: center;
box-shadow: none;
}
.dwdg-energy-insights .insight-card .insight-copy h3 a {
color: inherit;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
text-align: center;
}
@media (max-width: 900px) {
.dwdg-energy-insights .insight-grid {
grid-template-columns: 1fr;
}
.dwdg-energy-insights .insight-card {
min-height: 300px;
}
}
:root {
--dwdg-type-h1: clamp(4.1rem, 7.6vw, 7rem);
--dwdg-type-h2: clamp(2.65rem, 4.8vw, 4.7rem);
--dwdg-type-lead: clamp(1.45rem, 2vw, 2rem);
--dwdg-type-body: clamp(.98rem, 1.05vw, 1.08rem);
--dwdg-type-small: clamp(.84rem, .92vw, .94rem);
--dwdg-image-ratio: 4 / 5;
}
.dwdg-energy-hero__title { font-size: var(--dwdg-type-h1); line-height: .86; letter-spacing: -.075em; }
.dwdg-energy-section-title,
.dwdg-energy-insights .section-heading h2 { font-size: var(--dwdg-type-h2); line-height: .92; letter-spacing: -.07em; }
.dwdg-energy-hero__subtitle { font-size: var(--dwdg-type-lead); line-height: 1.12; letter-spacing: -.035em; }
.dwdg-energy-hero__copy p,
.dwdg-energy-contact__body p { font-size: var(--dwdg-type-body); }
.dwdg-energy-experts__photo {
width: 100%;
max-width: 210px;
aspect-ratio: var(--dwdg-image-ratio);
border-radius: 24px;
background: #f1f0ec;
overflow: hidden;
display: flex;
align-items: stretch;
justify-content: center;
}
.dwdg-energy-experts__photo img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center center;
display: block;
}
.dwdg-energy-experts__name { font-size: clamp(1.08rem, 1.28vw, 1.28rem); line-height: 1.05; }
.dwdg-energy-experts__role { font-size: clamp(.94rem, 1.05vw, 1.08rem); }
.dwdg-energy-experts__bio { font-size: clamp(.88rem, .98vw, .98rem); line-height: 1.42; }
.dwdg-energy-contact__inner {
min-height: clamp(430px, 36vw, 540px);
grid-template-columns: minmax(360px, .47fr) minmax(0, .53fr);
align-items: stretch;
}
.dwdg-energy-contact__photo {
align-self: stretch;
justify-self: center;
width: auto;
height: calc(100% - clamp(34px, 4vw, 58px));
min-height: 0;
aspect-ratio: var(--dwdg-image-ratio);
max-width: min(44vw, 430px);
margin-top: clamp(26px, 3.2vw, 42px);
border-radius: 0;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.dwdg-energy-contact__photo img {
width: 100%;
height: 100%;
max-width: none;
max-height: none;
object-fit: cover;
object-position: center center;
display: block;
}
.dwdg-energy-contact__body {
align-self: center;
max-width: 690px;
padding-block: clamp(48px, 5vw, 70px);
}
.dwdg-energy-contact__body h2 { font-size: clamp(2.25rem, 3.9vw, 4rem); line-height: .95; letter-spacing: -.065em; }
.dwdg-energy-contact__body strong { font-size: clamp(1.12rem, 1.55vw, 1.55rem); }
.dwdg-energy-contact__email { font-size: clamp(1.02rem, 1.35vw, 1.25rem); }
.dwdg-energy-hero__curve,
.dwdg-video-container__curve { height: 50%; }
.dwdg-energy-hero__curve path,
.dwdg-video-container__curve path { fill: var(--dwdg-energy-paper, #fffdf8); }
.dwdg-energy-insights .insight-card { min-height: 330px; border-radius: 28px; }
.dwdg-energy-insights .insight-card .insight-copy { padding: clamp(16px, 1.5vw, 20px); }
.dwdg-energy-insights .insight-card .insight-copy h3 {
min-height: 96px;
margin: 0;
padding: 18px 22px;
display: grid;
place-items: center;
text-align: center;
}
.dwdg-energy-insights .insight-card .insight-copy h3 a {
display: grid;
place-items: center;
text-align: center;
width: 100%;
min-height: 100%;
}
@media (min-width: 1100px) {
.dwdg-energy-experts__card { flex-basis: calc((100% - 3 * clamp(28px, 3.1vw, 44px)) / 4); }
.dwdg-energy-experts__track { gap: clamp(28px, 3.1vw, 44px); }
}
@media (max-width: 900px) {
.dwdg-energy-contact__inner { grid-template-columns: 1fr; min-height: 0; }
.dwdg-energy-contact__photo {
order: 2;
width: min(78vw, 360px);
height: auto;
aspect-ratio: var(--dwdg-image-ratio);
margin: 20px auto 0;
}
.dwdg-energy-contact__body { order: 1; padding-block: 42px 8px; }
.dwdg-energy-experts__photo { max-width: 190px; }
}
.dwdg-energy-page,
.dwdg-energy-hero,
.dwdg-energy-expertise,
.dwdg-energy-experts,
.dwdg-energy-projects,
.dwdg-energy-publications,
.dwdg-energy-insights,
.dwdg-energy-contact {
--dwdg-type-h1: clamp(3rem, 4.1vw, 4rem);
--dwdg-type-h2: clamp(2.05rem, 3vw, 3rem);
--dwdg-type-h3: clamp(1.25rem, 1.7vw, 1.55rem);
--dwdg-type-body-lg: clamp(1.05rem, 1.28vw, 1.22rem);
--dwdg-type-body: clamp(.94rem, 1.02vw, 1rem);
--dwdg-type-small: clamp(.78rem, .84vw, .88rem);
--dwdg-energy-max: 1180px;
--dwdg-energy-wide: 1320px;
}
.dwdg-energy-hero { padding-top: clamp(116px, 11vw, 156px); }
.dwdg-energy-hero__title {
font-size: var(--dwdg-type-h1) !important;
line-height: .96;
letter-spacing: -.058em;
max-width: 980px;
}
.dwdg-energy-hero__subtitle {
font-size: var(--dwdg-type-body-lg) !important;
max-width: 760px;
margin-top: clamp(26px, 3vw, 40px);
}
.dwdg-energy-hero__media { aspect-ratio: 2.42 / 1; }
.dwdg-energy-hero__curve { height: 39%; }
.dwdg-energy-hero__curve path { d: path('M0,240 L0,204 C250,172 535,68 1200,104 L1200,240 Z'); }
.dwdg-energy-hero__copy { width: min(55%, 600px); margin-right: clamp(24px, 8vw, 160px); }
.dwdg-energy-hero__copy p { font-size: var(--dwdg-type-body) !important; line-height: 1.46; }
.dwdg-energy-expertise .dwdg-energy-section-title,
.dwdg-energy-experts .dwdg-energy-section-title,
.dwdg-energy-projects .section-heading h2,
.dwdg-energy-publications .section-heading h2,
.dwdg-energy-insights .section-heading h2,
.dwdg-energy-insights .dwdg-energy-section-title {
font-size: var(--dwdg-type-h2) !important;
line-height: .98;
letter-spacing: -.05em;
margin-bottom: 0;
}
.dwdg-energy-experts__track { gap: clamp(30px, 3.6vw, 52px); padding-right: 0; }
.dwdg-energy-experts__card { flex-basis: calc((100% - 3 * clamp(30px, 3.6vw, 52px)) / 4); }
.dwdg-energy-experts__photo {
width: min(100%, 178px) !important;
max-width: 178px !important;
aspect-ratio: 4 / 5 !important;
height: auto !important;
border-radius: 22px !important;
background: #efeee9;
display: flex;
align-items: center;
justify-content: center;
}
.dwdg-energy-experts__photo img {
width: 100%;
height: 100%;
object-fit: cover !important;
object-position: center center !important;
display: block;
}
.dwdg-energy-experts__name { font-size: 22px !important; }
.dwdg-energy-experts__role,
.dwdg-energy-experts__bio { font-size: 16px !important; }
.dwdg-energy-experts__more { font-size: 16px; }
.dwdg-energy-publications { padding-block: clamp(54px, 6vw, 82px); }
.dwdg-energy-publications .dwdg-energy-wrap { max-width: 1180px !important; }
.dwdg-energy-publications .publication-card {
grid-template-columns: minmax(250px, .38fr) minmax(0, .62fr) !important;
min-height: clamp(360px, 30vw, 450px) !important;
padding: clamp(42px, 4.5vw, 68px) clamp(50px, 5vw, 84px) !important;
gap: clamp(46px, 5vw, 78px) !important;
align-items: center;
}
.dwdg-energy-publications .report-preview {
justify-content: center;
align-items: center;
}
.dwdg-energy-publications .report-cover-media {
width: clamp(150px, 15vw, 205px);
aspect-ratio: 340 / 480;
display: block;
}
.dwdg-energy-publications .report-preview img,
.dwdg-energy-publications .report-cover-media img,
.dwdg-energy-publications .publication-cover-img {
width: 100% !important;
height: 100% !important;
max-width: none !important;
aspect-ratio: 340 / 480;
object-fit: cover;
object-position: center center;
border-radius: 8px;
}
.dwdg-energy-publications .publication-copy { align-items: flex-start; text-align: left; }
.dwdg-energy-publications .publication-copy h3 {
font-size: var(--dwdg-type-h3) !important;
line-height: 1.13;
max-width: 620px;
}
.dwdg-energy-publications .publication-copy .button { font-size: .92rem; }
.dwdg-energy-contact__inner {
width: min(calc(100% - 2 * var(--dwdg-energy-pad)), 1180px) !important;
min-height: clamp(430px, 40vw, 560px) !important;
grid-template-columns: minmax(360px, .46fr) minmax(0, .54fr) !important;
gap: clamp(48px, 6vw, 92px) !important;
align-items: center !important;
}
.dwdg-energy-contact__photo {
width: min(100%, 430px) !important;
max-width: 430px !important;
height: clamp(390px, 38vw, 520px) !important;
justify-self: center !important;
align-self: center !important;
display: flex !important;
align-items: flex-end !important;
justify-content: center !important;
overflow: hidden;
}
.dwdg-energy-contact__photo img {
width: 100% !important;
height: 100% !important;
object-fit: contain !important;
object-position: center bottom !important;
}
.dwdg-energy-contact__body { max-width: 620px; padding-block: clamp(56px, 5.5vw, 76px); }
.dwdg-energy-contact__body h2 { font-size: var(--dwdg-type-h2) !important; }
.dwdg-energy-contact__body strong { font-size: var(--dwdg-type-body-lg) !important; }
.dwdg-energy-contact__body p,
.dwdg-energy-contact__email { font-size: var(--dwdg-type-body) !important; }
.editor-styles-wrapper .dwdg-energy-page,
.editor-styles-wrapper .dwdg-energy-hero,
.editor-styles-wrapper .dwdg-energy-expertise,
.editor-styles-wrapper .dwdg-energy-experts,
.editor-styles-wrapper .dwdg-energy-projects,
.editor-styles-wrapper .dwdg-energy-publications,
.editor-styles-wrapper .dwdg-energy-insights,
.editor-styles-wrapper .dwdg-energy-contact {
font-family: var(--wp--preset--font-family--inter, 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif) !important;
}
@media (max-width: 1024px) {
.dwdg-energy-experts__card { flex-basis: calc((100% - clamp(24px, 3vw, 40px)) / 2); }
.dwdg-energy-contact__inner { grid-template-columns: 1fr 1fr !important; }
.dwdg-energy-contact__photo { width: min(100%, 340px) !important; height: clamp(340px, 44vw, 460px) !important; }
}
@media (max-width: 768px) {
.dwdg-energy-hero__title { font-size: clamp(2.4rem, 12vw, 3.1rem) !important; }
.dwdg-energy-hero__copy { width: 100%; margin-right: 0; }
.dwdg-energy-experts__card { flex-basis: 100%; }
.dwdg-energy-publications .publication-card { grid-template-columns: 1fr !important; }
.dwdg-energy-contact__inner { grid-template-columns: 1fr !important; }
.dwdg-energy-contact__photo { order: 2; justify-self: center !important; }
.dwdg-energy-contact__body { order: 1; }
}
.dwdg-energy-publications {
background: var(--dwdg-energy-soft) !important;
padding-block: clamp(52px, 6vw, 78px) clamp(68px, 7vw, 96px) !important;
}
.dwdg-energy-publications .dwdg-energy-wrap {
width: min(calc(100% - 2 * var(--dwdg-energy-pad)), 980px) !important;
max-width: 980px !important;
margin-inline: auto !important;
}
.dwdg-energy-publications .section-heading {
margin-bottom: var(--section-gap, clamp(19px, 2.4vw, 29px)) !important;
}
.dwdg-energy-publications .section-heading h2 {
font-size: var(--dwdg-type-h2) !important;
line-height: .96 !important;
letter-spacing: -.065em !important;
}
.dwdg-energy-publications .dwdg-pub-slider__track {
position: relative !important;
width: 100% !important;
}
.dwdg-energy-publications .publication-card,
.dwdg-energy-publications .publication-card.active {
display: grid !important;
grid-template-columns: minmax(245px, .42fr) minmax(0, .58fr) !important;
align-items: center !important;
width: 100% !important;
min-height: clamp(330px, 30vw, 420px) !important;
padding: clamp(38px, 4vw, 58px) clamp(42px, 4.6vw, 70px) !important;
gap: clamp(36px, 4vw, 58px) !important;
border: 1px solid rgba(20,14,9,.08) !important;
border-radius: 26px !important;
background: rgba(255,255,255,.78) !important;
box-shadow: 0 18px 50px rgba(20,14,9,.06) !important;
overflow: hidden !important;
}
.dwdg-energy-publications .publication-card[aria-hidden="true"] {
display: none !important;
}
.dwdg-energy-publications .report-preview {
width: 100% !important;
min-height: 0 !important;
padding: 0 !important;
margin: 0 !important;
display: grid !important;
place-items: center !important;
background:
radial-gradient(circle at 70% 30%, rgba(18,201,95,.10), transparent 42%),
linear-gradient(135deg, rgba(255,255,255,.92), rgba(246,243,238,.94)) !important;
}
.dwdg-energy-publications .report-cover-media,
.dwdg-energy-publications .report-cover {
width: clamp(150px, 15vw, 210px) !important;
aspect-ratio: 340 / 480 !important;
height: auto !important;
display: block !important;
border-radius: 8px !important;
overflow: hidden !important;
box-shadow: 0 24px 46px rgba(20,14,9,.15) !important;
}
.dwdg-energy-publications .report-preview img,
.dwdg-energy-publications .report-cover-media img,
.dwdg-energy-publications .publication-cover-img {
width: 100% !important;
height: 100% !important;
max-width: none !important;
max-height: none !important;
object-fit: cover !important;
object-position: center center !important;
display: block !important;
border-radius: 8px !important;
}
.dwdg-energy-publications .publication-copy {
align-items: flex-start !important;
justify-content: center !important;
text-align: left !important;
gap: clamp(18px, 2.2vw, 28px) !important;
padding: 0 !important;
background: transparent !important;
}
.dwdg-energy-publications .publication-copy .eyebrow {
font-size: .78rem !important;
line-height: 1 !important;
letter-spacing: .08em !important;
font-weight: 700 !important;
padding: 10px 18px !important;
}
.dwdg-energy-publications .publication-copy h3 {
max-width: 560px !important;
font-size: clamp(1.85rem, 2.65vw, 2.8rem) !important;
line-height: 1.08 !important;
letter-spacing: -.055em !important;
margin: 0 !important;
}
.dwdg-energy-publications .publication-copy .button {
min-height: 46px !important;
padding: 0 26px !important;
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
border-radius: 999px !important;
font-size: 1rem !important;
font-weight: 600 !important;
}
.dwdg-energy-publications .dwdg-pub-slider__nav {
margin-top: 22px !important;
}
.dwdg-energy-contact__inner {
width: min(calc(100% - 2 * var(--dwdg-energy-pad)), 1180px) !important;
min-height: clamp(500px, 41vw, 640px) !important;
grid-template-columns: minmax(340px, .46fr) minmax(0, .54fr) !important;
align-items: center !important;
gap: clamp(52px, 6vw, 96px) !important;
}
.dwdg-energy-contact__photo {
justify-self: center !important;
align-self: center !important;
width: min(100%, 450px) !important;
max-width: 450px !important;
height: auto !important;
aspect-ratio: 4 / 5 !important;
margin: 0 !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
overflow: hidden !important;
border-radius: 0 !important;
background: transparent !important;
}
.dwdg-energy-contact__photo img {
width: 100% !important;
height: 100% !important;
max-width: none !important;
max-height: none !important;
object-fit: cover !important;
object-position: center center !important;
display: block !important;
}
.dwdg-energy-contact__body {
align-self: center !important;
padding-block: clamp(42px, 5vw, 70px) !important;
max-width: 630px !important;
}
.editor-post-meta-boxes-area #dwdg_page_sector,
.editor-post-meta-boxes-area #dwdg_video {
display: none !important;
}
@media (max-width: 900px) {
.dwdg-energy-publications .publication-card,
.dwdg-energy-publications .publication-card.active {
grid-template-columns: 1fr !important;
justify-items: start !important;
}
.dwdg-energy-contact__inner {
grid-template-columns: 1fr !important;
}
.dwdg-energy-contact__photo {
order: 2 !important;
width: min(74vw, 360px) !important;
}
.dwdg-energy-contact__body {
order: 1 !important;
}
}
.dwdg-energy-contact__inner {
min-height: clamp(420px, 34vw, 540px) !important;
grid-template-columns: minmax(260px, .42fr) minmax(0, .58fr) !important;
gap: clamp(56px, 7vw, 112px) !important;
}
.dwdg-energy-contact__photo {
width: clamp(230px, 22vw, 315px) !important;
max-width: 315px !important;
aspect-ratio: 4 / 5 !important;
justify-self: center !important;
align-self: center !important;
margin-inline: auto !important;
background: transparent !important;
overflow: hidden !important;
}
.dwdg-energy-contact__photo img {
width: 100% !important;
height: 100% !important;
object-fit: cover !important;
object-position: center center !important;
}
.dwdg-energy-contact__body {
padding-block: clamp(46px, 4.5vw, 64px) !important;
}
.dwdg-energy-publications .dwdg-energy-wrap {
width: min(calc(100% - 2 * var(--dwdg-energy-pad)), 920px) !important;
max-width: 920px !important;
}
.dwdg-energy-publications .publication-card,
.dwdg-energy-publications .publication-card.active {
grid-template-columns: minmax(220px, .42fr) minmax(0, .58fr) !important;
min-height: clamp(300px, 25vw, 370px) !important;
padding: clamp(34px, 3.6vw, 48px) clamp(38px, 4vw, 58px) !important;
gap: clamp(34px, 4vw, 54px) !important;
border-radius: 28px !important;
}
.dwdg-energy-publications .report-preview {
min-height: 0 !important;
height: clamp(220px, 23vw, 300px) !important;
}
.dwdg-energy-publications .report-cover-media,
.dwdg-energy-publications .report-cover {
width: clamp(132px, 13vw, 178px) !important;
aspect-ratio: 340 / 480 !important;
}
.dwdg-energy-publications .publication-copy h3 {
max-width: 480px !important;
font-size: clamp(1.45rem, 2.1vw, 2.1rem) !important;
line-height: 1.08 !important;
letter-spacing: -.052em !important;
}
.dwdg-energy-publications .publication-copy .button {
min-height: 42px !important;
padding-inline: 24px !important;
font-size: .94rem !important;
}
@media (max-width: 900px) {
.dwdg-energy-contact__inner { grid-template-columns: 1fr !important; min-height: 0 !important; }
.dwdg-energy-contact__photo { width: min(62vw, 280px) !important; }
.dwdg-energy-publications .publication-card,
.dwdg-energy-publications .publication-card.active { grid-template-columns: 1fr !important; }
.dwdg-energy-publications .report-preview { height: auto !important; min-height: 220px !important; }
}
/*! == /assets/css/locations.css == */
.dwdg-loc-page,
.dwdg-loc-hero,
.dwdg-loc-list,
.dwdg-loc-presence,
.dwdg-loc-impact,
.dwdg-loc-offices,
.dwdg-loc-single {
--loc-max:        1180px;
--loc-pad:        clamp(24px, 4vw, 64px);
--loc-paper:      #fffdf8;
--loc-soft:       #f1ece6;
--loc-ink:        #0c0d0b;
--loc-muted:      #4a4b46;
--loc-green:      #12c95f;
--loc-green-deep: #0aa04b;
--loc-green-dark: #08763a;
--loc-line:       rgba(12, 13, 11, 0.82);
--loc-radius:     22px;
--loc-shadow:     0 12px 30px rgba(20, 14, 9, 0.06);
--loc-shadow-lg:  0 20px 48px rgba(20, 14, 9, 0.13);
--loc-ease:       cubic-bezier(0.16, 1, 0.3, 1);
}
.dwdg-loc-wrap {
width: min(100% - 2 * var(--loc-pad, clamp(20px, 3.4vw, 56px)), var(--loc-max, 1480px));
margin-inline: auto;
}
.dwdg-loc-hero {
background: var(--loc-paper);
padding-top:    clamp(120px, 13vw, 180px);
padding-bottom: clamp(40px, 5vw, 72px);
}
.dwdg-loc-hero__head { max-width: 760px; }
.dwdg-loc-hero__title {
margin: 0;
color: var(--loc-ink);
font-size: clamp(2rem, 3.4vw, 2.8rem);
line-height: 1.02;
letter-spacing: -0.045em;
font-weight: 800;
}
.dwdg-loc-hero__subtitle {
margin: clamp(14px, 1.6vw, 20px) 0 0;
max-width: 620px;
color: var(--loc-muted);
font-size: clamp(1rem, 1.35vw, 1.18rem);
line-height: 1.45;
letter-spacing: -0.015em;
font-weight: 500;
}
.dwdg-loc-map {
container-type: inline-size;
position: relative;
width: 100%;
max-width: 1280px;
margin: clamp(28px, 4vw, 56px) auto clamp(8px, 1.6vw, 20px);
}
.dwdg-loc-map__img {
display: block;
width: 100%;
height: auto;
user-select: none;
-webkit-user-drag: none;
}
.dwdg-loc-map__markers {
position: absolute;
inset: 0;
pointer-events: none;
}
.dwdg-loc-marker {
position: absolute;
transform: translate(-50%, -50%);
display: block;
z-index: 2;
text-decoration: none;
pointer-events: auto;
-webkit-tap-highlight-color: transparent;
}
.dwdg-loc-marker:hover,
.dwdg-loc-marker:focus,
.dwdg-loc-marker:focus-visible { z-index: 30; outline: none; }
.dwdg-loc-marker__dot {
display: block;
box-sizing: border-box;
width: 21px;
height: 21px;
border: 3px solid var(--loc-green);
width:  max(11px, 2.1cqw);
height: max(11px, 2.1cqw);
border-width: max(2px, 0.26cqw);
border-style: solid;
border-color: var(--loc-green);
border-radius: 50%;
background: transparent;
transition:
transform 0.28s var(--loc-ease),
box-shadow 0.28s var(--loc-ease),
background-color 0.28s var(--loc-ease),
border-color 0.28s var(--loc-ease);
}
.dwdg-loc-marker:hover .dwdg-loc-marker__dot,
.dwdg-loc-marker:focus .dwdg-loc-marker__dot,
.dwdg-loc-marker:focus-visible .dwdg-loc-marker__dot {
transform: scale(1.12);
border-color: var(--loc-green-deep);
background: rgba(255, 255, 255, 0.5);
box-shadow:
0 0 0 6px rgba(18, 201, 95, 0.15),
0 10px 22px rgba(18, 201, 95, 0.28);
}
.dwdg-loc-marker__tip {
position: absolute;
left: 50%;
bottom: calc(100% + 12px);
transform: translate(-50%, 8px);
z-index: 3;
display: flex;
flex-direction: column;
align-items: center;
gap: 2px;
min-width: 118px;
padding: 11px 20px 12px;
text-align: center;
white-space: nowrap;
border-radius: 13px;
background: #ffffff;
border: 1px solid rgba(12, 13, 11, 0.08);
box-shadow: 0 6px 16px rgba(20, 14, 9, 0.10);
opacity: 0;
visibility: hidden;
pointer-events: none;
transition:
opacity 0.26s var(--loc-ease),
transform 0.26s var(--loc-ease),
visibility 0.26s var(--loc-ease);
}
.dwdg-loc-marker:hover .dwdg-loc-marker__tip,
.dwdg-loc-marker:focus .dwdg-loc-marker__tip,
.dwdg-loc-marker:focus-visible .dwdg-loc-marker__tip {
opacity: 1;
visibility: visible;
transform: translate(-50%, 0);
}
.dwdg-loc-marker.is-open .dwdg-loc-marker__tip {
opacity: 1;
visibility: visible;
transform: translate(-50%, 0);
}
.dwdg-loc-marker.is-open .dwdg-loc-marker__dot {
transform: scale(1.12);
border-color: var(--loc-green-deep);
}
.dwdg-loc-marker__city {
color: var(--loc-ink, #0c0d0b);
font-size: 0.98rem;
font-weight: 800;
letter-spacing: -0.02em;
line-height: 1.15;
}
.dwdg-loc-marker__country {
color: var(--loc-green, #12c95f);
font-size: 0.82rem;
font-weight: 600;
letter-spacing: -0.01em;
line-height: 1.1;
}
.dwdg-loc-marker--tip-left .dwdg-loc-marker__tip  { left: 0;  right: auto; transform: translate(-12px, 8px); }
.dwdg-loc-marker--tip-right .dwdg-loc-marker__tip { left: auto; right: 0;  transform: translate(12px, 8px); }
.dwdg-loc-marker--tip-left:hover .dwdg-loc-marker__tip,
.dwdg-loc-marker--tip-left:focus .dwdg-loc-marker__tip,
.dwdg-loc-marker--tip-left:focus-visible .dwdg-loc-marker__tip  { transform: translate(-12px, 0); }
.dwdg-loc-marker--tip-right:hover .dwdg-loc-marker__tip,
.dwdg-loc-marker--tip-right:focus .dwdg-loc-marker__tip,
.dwdg-loc-marker--tip-right:focus-visible .dwdg-loc-marker__tip { transform: translate(12px, 0); }
.dwdg-loc-marker--tip-left.is-open .dwdg-loc-marker__tip  { transform: translate(-12px, 0); }
.dwdg-loc-marker--tip-right.is-open .dwdg-loc-marker__tip { transform: translate(12px, 0); }
.dwdg-loc-hero__copy {
max-width: 1000px;
margin: clamp(26px, 3.4vw, 48px) auto 0;
}
.dwdg-loc-hero__copy p {
margin: 0;
color: var(--loc-ink);
font-size: 22px;
line-height: 1.62;
letter-spacing: -0.015em;
text-align: center;
}
.dwdg-loc-hero__copy strong {
color: var(--loc-green);
font-weight: 600;
}
.dwdg-loc-list {
position: relative;
background: var(--loc-soft);
padding-top:    clamp(110px, 13vw, 200px);
padding-bottom: clamp(80px, 10vw, 140px);
}
.dwdg-loc-list__curve {
position: absolute;
left: 0;
top: -1px;
width: 100%;
height: clamp(52px, 6.5vw, 100px);
line-height: 0;
pointer-events: none;
}
.dwdg-loc-list__curve svg { display: block; width: 100%; height: 100%; }
.dwdg-loc-list__curve path { fill: var(--loc-paper); }
.dwdg-loc-list__heading {
margin: 0 0 clamp(20px, 2.4vw, 36px);
color: var(--loc-ink);
font-size: clamp(2rem, 3.6vw, 3rem);
line-height: 1;
letter-spacing: -0.045em;
font-weight: 800;
}
.dwdg-loc-list__items {
list-style: none;
margin: 0;
padding: 0;
}
.dwdg-loc-list__item {
border-bottom: 1px solid var(--loc-line);
transition: border-color 0.3s var(--loc-ease);
}
.dwdg-loc-list__item:first-child {
border-top: 1px solid var(--loc-line);
}
.dwdg-loc-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
padding: clamp(26px, 3.4vw, 44px) clamp(14px, 1.8vw, 26px);
border-radius: var(--loc-radius);
text-decoration: none;
color: var(--loc-ink);
transition:
background-color 0.34s var(--loc-ease),
box-shadow 0.34s var(--loc-ease),
transform 0.34s var(--loc-ease);
}
.dwdg-loc-row__city {
font-size: 22px;
font-weight: 800;
letter-spacing: -0.045em;
line-height: 1;
color: var(--loc-ink);
}
.dwdg-loc-row__cta {
flex: none;
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 44px;
padding: 0 24px;
border-radius: 999px;
background: var(--loc-green, #12c95f);
color: #fff;
font-size: 0.95rem;
font-weight: 700;
letter-spacing: -0.01em;
white-space: nowrap;
transition:
background-color 0.3s var(--loc-ease),
color 0.3s var(--loc-ease),
transform 0.3s var(--loc-ease);
}
.dwdg-loc-row:hover,
.dwdg-loc-row:focus-visible {
outline: none;
}
.dwdg-loc-row:hover .dwdg-loc-row__cta,
.dwdg-loc-row:focus-visible .dwdg-loc-row__cta {
background: var(--loc-ink);
color: #fff;
}
button.dwdg-loc-row {
appearance: none;
-webkit-appearance: none;
width: 100%;
border: 0;
background: transparent;
font: inherit;
text-align: left;
cursor: pointer;
}
.dwdg-loc-row__arrow {
flex: none;
display: inline-flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
color: var(--loc-ink);
transition: color 0.24s var(--loc-ease), transform 0.3s var(--loc-ease);
}
.dwdg-loc-row__arrow svg { width: 26px; height: 14px; display: block; }
.dwdg-loc-row:hover .dwdg-loc-row__arrow,
.dwdg-loc-row:focus-visible .dwdg-loc-row__arrow { color: #09C460; }
.dwdg-loc-list__item.is-open .dwdg-loc-row__arrow { transform: rotate(180deg); }
.dwdg-loc-expert {
display: grid;
grid-template-rows: 0fr;
transition: grid-template-rows 0.42s var(--loc-ease);
}
.dwdg-loc-expert__inner {
overflow: hidden;
min-height: 0;
padding-bottom: clamp(24px, 3vw, 40px);
}
.dwdg-loc-list__item.is-open .dwdg-loc-expert { grid-template-rows: 1fr; }
.dwdg-loc-list__item.is-open { border-color: var(--loc-line); }
.dwdg-loc-expert__card {
display: grid;
grid-template-columns: minmax(200px, 300px) minmax(0, 1fr);
gap: clamp(24px, 3.4vw, 56px);
align-items: stretch;
padding: 0;
border-radius: var(--loc-radius);
overflow: hidden;
background: linear-gradient(100deg,
#eafff4 0%,
#d2f7e0 22%,
#8cebb4 55%,
#18c95f 100%);
opacity: 0;
transform: translateY(-8px);
transition: opacity 0.34s var(--loc-ease) 0.08s, transform 0.34s var(--loc-ease) 0.08s;
}
.dwdg-loc-list__item.is-open .dwdg-loc-expert__card { opacity: 1; transform: none; }
.dwdg-loc-expert__photo {
align-self: end;
justify-self: start;
margin: 0;
width: 100%;
height: clamp(220px, 20vw, 300px);
display: flex;
align-items: flex-end;
justify-content: flex-start;
}
.dwdg-loc-expert__photo img {
width: 100%;
height: 100%;
object-fit: contain;
object-position: bottom left;
display: block;
}
.dwdg-loc-expert__body {
display: flex;
flex-direction: column;
align-items: flex-start;
min-width: 0;
padding: clamp(24px, 3vw, 44px) clamp(24px, 3vw, 44px) clamp(24px, 3vw, 44px) 0;
text-align: left;
}
.dwdg-loc-expert__badge {
align-self: flex-start;
display: inline-flex;
align-items: center;
min-height: 30px;
margin: 0 0 clamp(12px, 1.4vw, 18px);
padding: 0 16px;
border-radius: 999px;
background: #fff;
color: var(--loc-ink);
font-size: 0.85rem;
font-weight: 700;
letter-spacing: -0.01em;
white-space: nowrap;
}
.dwdg-loc-expert__name {
margin: 0;
color: var(--loc-ink);
font-size: clamp(1.6rem, 2.6vw, 2.2rem);
line-height: 1.05;
letter-spacing: -0.04em;
font-weight: 800;
}
.dwdg-loc-expert__role {
margin: clamp(10px, 1.2vw, 14px) 0 0;
color: var(--loc-ink);
font-size: clamp(1rem, 1.2vw, 1.1rem);
line-height: 1.3;
letter-spacing: -0.015em;
font-weight: 700;
max-width: 640px;
}
.dwdg-loc-expert__bio {
margin: clamp(12px, 1.4vw, 18px) 0 0;
color: var(--loc-ink);
font-size: clamp(0.95rem, 1.12vw, 1.05rem);
line-height: 1.62;
letter-spacing: -0.01em;
max-width: 860px;
}
.dwdg-loc-expert__email {
margin: clamp(14px, 1.6vw, 20px) 0 0;
}
.dwdg-loc-expert__email a {
display: inline-flex;
align-items: center;
gap: 12px;
color: var(--loc-ink);
font-size: clamp(0.95rem, 1.12vw, 1.05rem);
letter-spacing: -0.01em;
font-weight: 500;
text-decoration: none;
}
.dwdg-loc-expert__email-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
flex: 0 0 40px;
border-radius: 50%;
background: var(--loc-ink);
color: #fff;
transition: background-color 0.28s var(--loc-ease), transform 0.28s var(--loc-ease);
}
.dwdg-loc-expert__email-icon svg { width: 18px; height: 18px; }
.dwdg-loc-expert__email a:hover .dwdg-loc-expert__email-icon {
background: #09C460;
transform: translateY(-1px);
}
.dwdg-loc-expert__email a:hover .dwdg-loc-expert__email-text { text-decoration: underline; }
.dwdg-loc-presence {
position: relative;
overflow: hidden;
width: 100%;
background: linear-gradient(100deg,
#eafff4 0%,
#d2f7e0 22%,
#8cebb4 55%,
#18c95f 100%);
}
.dwdg-loc-presence__inner {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
align-items: center;
gap: clamp(24px, 4vw, 64px);
padding-block: clamp(28px, 3.5vw, 48px);
}
.dwdg-loc-presence__copy { max-width: 620px; }
.dwdg-loc-presence__title {
margin: 0;
color: var(--loc-ink);
font-size: clamp(2rem, 3.6vw, 3rem);
line-height: 1.02;
letter-spacing: -0.045em;
font-weight: 800;
}
.dwdg-loc-presence__lead {
margin: clamp(14px, 1.8vw, 22px) 0 0;
color: var(--loc-ink);
font-size: clamp(1.1rem, 1.6vw, 1.35rem);
line-height: 1.3;
letter-spacing: -0.02em;
font-weight: 700;
}
.dwdg-loc-presence__text {
margin: clamp(14px, 1.6vw, 20px) 0 0;
color: #123a26;
font-size: clamp(0.95rem, 1.15vw, 1.05rem);
line-height: 1.6;
letter-spacing: -0.01em;
}
.dwdg-loc-presence .button {
margin-top: clamp(22px, 2.6vw, 32px);
background: var(--loc-ink, #0c0d0b);
border-color: var(--loc-ink, #0c0d0b);
color: #fff;
}
.dwdg-loc-presence .button:hover {
background: #000;
border-color: #000;
transform: translateY(-1px);
box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}
.dwdg-loc-presence__art {
position: relative;
justify-self: end;
width: 100%;
max-width: 460px;
aspect-ratio: 10 / 7;
}
.dwdg-loc-presence__art svg { width: 100%; height: 100%; overflow: visible; }
.dwdg-loc-presence__art circle { opacity: 0.92; }
.dwdg-loc-presence__img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}
.dwdg-loc-presence__img-placeholder {
display: grid;
place-items: center;
width: 100%;
height: 100%;
padding: 20px;
border: 1.5px dashed rgba(12, 58, 38, 0.45);
border-radius: var(--loc-radius);
color: #123a26;
font-size: 0.85rem;
font-weight: 600;
text-align: center;
}
.dwdg-loc-impact {
background: var(--loc-paper);
padding-block: clamp(64px, 9vw, 124px);
}
.dwdg-loc-impact__title {
margin: 0 0 clamp(28px, 3.4vw, 48px);
color: var(--loc-ink);
font-size: 32px;
line-height: 1.1;
letter-spacing: -0.045em;
font-weight: 800;
}
.dwdg-loc-impact__grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(16px, 2.5vw, 28px);
}
.dwdg-loc-impact__card {
display: flex;
flex-direction: column;
align-items: flex-start;
padding: clamp(26px, 2.6vw, 40px);
border-radius: var(--loc-radius);
background: linear-gradient(165deg, #f1fef7 0%, #e0fbec 100%);
border: 1px solid rgba(18, 201, 95, 0.16);
box-shadow: var(--loc-shadow);
}
.dwdg-loc-impact__card:nth-child(2) {
background: linear-gradient(165deg, #b9f3d2 0%, #34d978 55%, #12c95f 100%);
border-color: transparent;
box-shadow: 0 20px 44px rgba(18, 201, 95, 0.3);
}
.dwdg-loc-impact__value {
color: var(--loc-green-deep, #0aa04b);
font-size: 32px;
font-weight: 800;
letter-spacing: -0.05em;
line-height: 1;
font-variant-numeric: tabular-nums;
}
.dwdg-loc-impact__card:nth-child(2) .dwdg-loc-impact__value { color: #fff; }
.dwdg-loc-impact__label {
margin: clamp(16px, 1.8vw, 22px) 0 0;
color: var(--loc-ink);
font-size: 22px;
font-weight: 700;
line-height: 1.32;
letter-spacing: -0.02em;
}
.dwdg-loc-impact__desc {
margin: clamp(12px, 1.4vw, 16px) 0 0;
color: var(--loc-muted);
font-size: 16px;
line-height: 1.6;
}
.dwdg-loc-impact__card:nth-child(2) .dwdg-loc-impact__label,
.dwdg-loc-impact__card:nth-child(2) .dwdg-loc-impact__desc { color: #0b3a22; }
.dwdg-loc-offices {
background: var(--loc-soft);
padding-block: clamp(64px, 9vw, 124px);
}
.dwdg-loc-offices__grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
align-items: center;
gap: clamp(28px, 4.4vw, 72px);
}
.dwdg-loc-offices--media-right .dwdg-loc-offices__media { order: 2; }
.dwdg-loc-offices__media {
position: relative;
border-radius: var(--loc-radius);
overflow: hidden;
aspect-ratio: 4 / 3;
background: #e6e1da;
box-shadow: var(--loc-shadow);
}
.dwdg-loc-offices__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dwdg-loc-offices__media-empty {
position: absolute;
inset: 0;
display: grid;
place-items: center;
color: #9a948b;
font-size: 0.9rem;
}
.dwdg-loc-offices__title {
margin: 0;
color: var(--loc-ink);
font-size: clamp(1.6rem, 2.8vw, 2.4rem);
line-height: 1.08;
letter-spacing: -0.04em;
font-weight: 800;
}
.dwdg-loc-offices__text {
margin: clamp(16px, 1.8vw, 22px) 0 0;
color: var(--loc-muted);
font-size: clamp(0.95rem, 1.15vw, 1.05rem);
line-height: 1.6;
max-width: 540px;
}
.dwdg-loc-offices .button { margin-top: clamp(24px, 2.8vw, 34px); }
.dwdg-loc-single {
background: var(--loc-paper);
padding-top:    clamp(120px, 13vw, 180px);
padding-bottom: clamp(64px, 9vw, 120px);
}
.dwdg-loc-single__crumb {
display: flex;
align-items: center;
gap: 10px;
font-size: 0.85rem;
font-weight: 600;
color: var(--loc-muted);
margin-bottom: clamp(22px, 3vw, 40px);
}
.dwdg-loc-single__crumb a { color: var(--loc-muted); text-decoration: none; transition: color 0.2s var(--loc-ease); }
.dwdg-loc-single__crumb a:hover { color: var(--loc-green-deep); }
.dwdg-loc-single__crumb .is-current { color: var(--loc-ink); }
.dwdg-loc-single__hero {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
align-items: center;
gap: clamp(28px, 4.4vw, 72px);
}
.dwdg-loc-single__eyebrow {
display: inline-flex;
align-items: center;
min-height: 26px;
padding: 0 12px;
border-radius: 999px;
background: rgba(18, 201, 95, 0.12);
color: var(--loc-green-dark);
font-size: 0.6875rem;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
}
.dwdg-loc-single__name {
margin: clamp(14px, 1.8vw, 22px) 0 0;
color: var(--loc-ink);
font-size: clamp(2.6rem, 5.2vw, 4.4rem);
line-height: 0.98;
letter-spacing: -0.05em;
font-weight: 800;
}
.dwdg-loc-single__lead {
margin: clamp(16px, 2vw, 24px) 0 0;
max-width: 520px;
color: var(--loc-muted);
font-size: clamp(1rem, 1.3vw, 1.18rem);
line-height: 1.5;
letter-spacing: -0.015em;
}
.dwdg-loc-single__back { margin-top: clamp(24px, 3vw, 36px); }
.dwdg-loc-single__photo {
border-radius: var(--loc-radius);
overflow: hidden;
aspect-ratio: 4 / 3;
box-shadow: var(--loc-shadow);
}
.dwdg-loc-single__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dwdg-loc-single__locator {
container-type: inline-size;
position: relative;
border-radius: var(--loc-radius);
overflow: hidden;
background: var(--loc-paper);
border: 1px solid var(--line, rgba(12, 13, 11, 0.08));
box-shadow: var(--loc-shadow);
padding: clamp(18px, 2.4vw, 30px);
}
.dwdg-loc-single__locator-img { display: block; width: 100%; height: auto; }
.dwdg-loc-single__locator .dwdg-loc-marker { position: absolute; }
.dwdg-loc-marker--static { pointer-events: none; }
.dwdg-loc-marker--static .dwdg-loc-marker__dot {
animation: none;
}
@keyframes dwdgLocPulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(18, 201, 95, 0.34); }
50%      { box-shadow: 0 0 0 8px rgba(18, 201, 95, 0); }
}
.dwdg-loc-single__body {
max-width: 760px;
margin: clamp(40px, 6vw, 80px) 0 0;
color: var(--loc-ink);
font-size: clamp(1rem, 1.18vw, 1.1rem);
line-height: 1.7;
}
.dwdg-loc-single__body p { margin: 0 0 1.1em; }
.dwdg-loc-single__body h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: -0.03em; margin: 1.4em 0 0.5em; }
.dwdg-loc-single__body h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); letter-spacing: -0.02em; margin: 1.2em 0 0.4em; }
.dwdg-loc-single__others { margin-top: clamp(56px, 8vw, 104px); }
.dwdg-loc-single__others-title {
margin: 0 0 clamp(20px, 2.6vw, 34px);
color: var(--loc-ink);
font-size: clamp(1.5rem, 2.6vw, 2.1rem);
letter-spacing: -0.04em;
font-weight: 800;
}
.dwdg-loc-single__others-grid {
list-style: none;
margin: 0;
padding: 0;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(14px, 1.8vw, 24px);
}
.dwdg-loc-single__other {
display: flex;
flex-direction: column;
gap: 4px;
padding: clamp(20px, 2.2vw, 28px);
border-radius: var(--loc-radius);
background: var(--loc-soft);
text-decoration: none;
transition: background-color 0.3s var(--loc-ease), box-shadow 0.3s var(--loc-ease), transform 0.3s var(--loc-ease);
}
.dwdg-loc-single__other:hover {
background: rgba(255, 255, 255, 0.8);
box-shadow: var(--loc-shadow-lg);
transform: translateY(-2px);
}
.dwdg-loc-single__other-city { color: var(--loc-ink); font-size: clamp(1.2rem, 1.8vw, 1.5rem); font-weight: 800; letter-spacing: -0.03em; }
.dwdg-loc-single__other-country { color: var(--loc-green); font-size: 0.9rem; font-weight: 600; }
.dwdg-loc-single__other-cta { margin-top: 10px; color: var(--loc-green-deep); font-size: 0.85rem; font-weight: 700; }
.dwdg-loc-single__other:hover .dwdg-loc-single__other-cta { color: var(--loc-ink); }
@media (max-width: 900px) {
.dwdg-loc-presence__inner { grid-template-columns: 1fr; }
.dwdg-loc-presence__art { display: none; }
.dwdg-loc-impact__grid { grid-template-columns: 1fr; }
.dwdg-loc-impact__card { min-height: 0 !important; }
.dwdg-loc-offices__grid { grid-template-columns: 1fr; }
.dwdg-loc-offices--media-right .dwdg-loc-offices__media { order: 0; }
.dwdg-loc-single__hero { grid-template-columns: 1fr; }
.dwdg-loc-single__others-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
.dwdg-loc-expert__card { grid-template-columns: 1fr; }
.dwdg-loc-expert__photo {
max-width: 280px;
justify-self: center;
align-self: center;
}
.dwdg-loc-expert__photo img { object-position: bottom center; }
.dwdg-loc-expert__body { padding-left: clamp(24px, 6vw, 44px); }
}
@media (max-width: 600px) {
.dwdg-loc-row { gap: 14px; padding: 18px 14px; }
.dwdg-loc-row__cta { min-height: 38px; padding: 0 16px; font-size: 0.85rem; }
.dwdg-loc-single__others-grid { grid-template-columns: 1fr; }
}
@media (hover: none) {
.dwdg-loc-marker__tip { transition: opacity 0.2s ease, visibility 0.2s ease; }
}
@media (prefers-reduced-motion: reduce) {
.dwdg-loc-marker--static .dwdg-loc-marker__dot { animation: none; }
.dwdg-loc-row,
.dwdg-loc-row__arrow,
.dwdg-loc-expert,
.dwdg-loc-expert__card,
.dwdg-loc-marker__dot,
.dwdg-loc-marker__tip { transition: none; }
}
@media (scripting: none) {
.dwdg-loc-page .reveal,
.dwdg-loc-single .reveal { opacity: 1 !important; transform: none !important; }
.dwdg-loc-expert { grid-template-rows: 1fr !important; }
.dwdg-loc-expert__card { opacity: 1 !important; transform: none !important; }
}
.dwdg-loc-marker__city{font-size:clamp(.8rem,.9vw,.95rem)!important;}
.dwdg-loc-marker__tip{padding:5px 14px 6px;min-width:92px;gap:1px;bottom:calc(100% + 9px);border-radius:11px;}
.dwdg-loc-marker__city{line-height:1.05;}
.dwdg-loc-marker__country{font-size:.76rem;line-height:1.05;}
.dwdg-loc-offices__media img{border-radius:0 28px 0 0!important;overflow:hidden;}
.dwdg-loc-impact__card{min-height:460px!important;}
@media (max-width: 980px) {
.dwdg-loc-presence__inner { grid-template-columns: 1fr; }
}
.dwdg-loc-presence--develop .dwdg-loc-presence__art {
overflow: hidden;
border-radius: 0 0 0 clamp(56px, 8vw, 110px);
}
.dwdg-loc-presence--develop .dwdg-loc-presence__img {
object-fit: cover;
}
/*! == /assets/css/fixes-v75.css == */
h1 { font-size: 32px !important; line-height: 1.1  !important; }
h2 { font-size: 32px !important; line-height: 1.2  !important; }
h3 { font-size: 16px !important; line-height: 1.3  !important; }
.hero-grid h1 {
font-size: clamp(2rem, 3.4vw, 2.6rem) !important;
line-height: 0.96 !important;
}
.join h2 {
font-size: clamp(1.6rem, 2.8vw, 2.2rem) !important;
line-height: 0.97 !important;
}
@media (min-width: 761px) {
.conviction {
font-size: 22px !important;
}
}
.dwdg-sector-split-intro__title {
font-size: clamp(1.8rem, 3.6vw, 2.6rem) !important;
line-height: 0.94 !important;
}
.sector-page-intro__title {
font-size: clamp(1.8rem, 3.5vw, 2.4rem) !important;
line-height: 0.92 !important;
}
.program-hero-copy h1,
.program-archive-hero h1 {
font-size: clamp(1.8rem, 3.5vw, 2.4rem) !important;
line-height: 0.96 !important;
}
.dwdg-contact-expert__name  { font-size: clamp(1.4rem, 2.5vw, 2rem)  !important; }
.dwdg-stat-block__value     { font-size: clamp(2.5rem, 7vw,   5rem)  !important; }
.publication-copy h3,
.dwdg-pub-card__copy h3,
.dwdg-energy-publications .publication-copy h3 {
font-size: 22px !important;
line-height: 1.2 !important;
letter-spacing: -0.03em !important;
}
.dwdg-energy-hero__title {
font-size: 32px !important;
line-height: 1.05 !important;
}
h2.dwdg-energy-section-title,
.dwdg-energy-hero       h2.dwdg-energy-section-title,
.dwdg-energy-expertise  h1.dwdg-energy-section-title,
.dwdg-energy-experts    h1.dwdg-energy-section-title,
.dwdg-energy-projects   h1.dwdg-energy-section-title,
.dwdg-energy-publications h1.dwdg-energy-section-title,
.dwdg-energy-insights   h1.dwdg-energy-section-title,
.dwdg-energy-contact    h2.dwdg-energy-section-title,
.dwdg-energy-projects   .section-heading h2,
.dwdg-energy-publications .section-heading h2,
.dwdg-energy-insights   .section-heading h2,
.dwdg-energy-expertise  .dwdg-energy-section-title,
.dwdg-energy-experts    .dwdg-energy-section-title,
.dwdg-energy-page h2 {
font-size: 32px !important;
font-weight: 700 !important;
letter-spacing: -0.03em !important;
line-height: 1.1 !important;
}
#works-heading,
#pub-heading,
#insights-heading,
#future-heading,
#join-heading,
#clients-heading {
font-size: 32px !important;
}
.expertise .expertise-green-block .expertise-col h2,
.home .expertise .expertise-green-block .expertise-col h2,
.front-page .expertise .expertise-green-block .expertise-col h2,
body.home .expertise .expertise-green-block .expertise-col h2 {
font-size: 32px !important;
}
h2.dwdg-energy-section-title,
.dwdg-energy-hero       h2.dwdg-energy-section-title,
.dwdg-energy-expertise  h2.dwdg-energy-section-title,
.dwdg-energy-experts    h2.dwdg-energy-section-title,
.dwdg-energy-projects   h2.dwdg-energy-section-title,
.dwdg-energy-publications h2.dwdg-energy-section-title,
.dwdg-energy-insights   h2.dwdg-energy-section-title,
.dwdg-energy-contact    h2.dwdg-energy-section-title {
text-align: left !important;
margin-left: 0 !important;
padding-left: 0 !important;
width: auto !important;
}
.dwdg-energy-page .section-heading,
.dwdg-energy-projects .section-heading,
.dwdg-energy-publications .section-heading,
.dwdg-energy-insights .section-heading {
justify-content: flex-start !important;
text-align: left !important;
}
.dwdg-energy-page .section-heading h2,
.dwdg-energy-page h2 {
text-align: left !important;
}
.dwdg-energy-expertise  .dwdg-energy-wrap,
.dwdg-energy-experts    .dwdg-energy-wrap,
.dwdg-energy-projects   .dwdg-energy-wrap,
.dwdg-energy-publications .dwdg-energy-wrap,
.dwdg-energy-insights   .dwdg-energy-wrap,
.dwdg-energy-contact    .dwdg-energy-wrap {
width: min(100% - 2 * var(--dwdg-energy-pad, clamp(20px, 3.4vw, 56px)), var(--dwdg-energy-max, 1480px)) !important;
margin-inline: auto !important;
}
:root { --energy-sec: clamp(40px, 5vw, 56px); }
.dwdg-energy-hero {
padding-top:    clamp(112px, 12vw, 156px) !important;
padding-bottom: clamp(32px,  4vw,  48px) !important;
}
.dwdg-energy-expertise  { padding-block: var(--energy-sec) !important; }
.dwdg-energy-experts    { padding-block: var(--energy-sec) !important; }
.dwdg-energy-projects   { padding-block: var(--energy-sec) !important; }
.dwdg-energy-publications {
padding-block: 32px var(--energy-sec) !important;
}
.dwdg-energy-insights   { padding-block: var(--energy-sec) !important; }
.dwdg-energy-expertise  h2.dwdg-energy-section-title {
margin-bottom: var(--section-gap) !important;
}
.dwdg-energy-experts__head {
margin-bottom: var(--section-gap) !important;
}
.dwdg-energy-projects .section-heading,
.dwdg-energy-publications .section-heading,
.dwdg-energy-insights .section-heading {
margin-bottom: var(--section-gap) !important;
}
.dwdg-energy-publications .publication-card {
padding: 0 !important;
}
.insights .insight-grid,
.dwdg-energy-insights .insight-grid,
.dwdg-insights-grid,
.dwdg-other-insights__grid {
grid-template-columns: repeat(3, 1fr) !important;
}
.insight-card {
aspect-ratio: 293 / 322 !important;
min-height: 322px !important;
max-width: none !important;
}
.insight-copy h3,
.insight-card__body h3,
.dwdg-insight-card h3,
.insight-card h3 {
font-weight: 400 !important;
}
.dwdg-energy-insights .insight-card .insight-copy h3 {
font-weight: 500 !important;
}
.insight-card__link {
display: flex !important;
flex-direction: column !important;
flex: 1 1 auto !important;
width: 100% !important;
min-height: 100% !important;
text-decoration: none !important;
color: inherit !important;
}
.insight-card__img {
position: static !important;
}
.insight-card__body {
position: relative !important;
z-index: 2 !important;
display: flex !important;
flex-direction: column !important;
justify-content: flex-end !important;
flex: 1 1 auto !important;
padding: 12px 12px 14px !important;
gap: 6px !important;
}
.insight-card__body h3 {
display: flex !important;
align-items: center !important;
padding: 10px 12px !important;
border-radius: var(--radius-md, 12px) !important;
background: rgba(255, 255, 255, 0.82) !important;
color: var(--ink, #0c0d0b) !important;
font-size: clamp(0.78rem, 1.15vw, 0.92rem) !important;
line-height: 1.2 !important;
letter-spacing: -0.02em !important;
backdrop-filter: blur(16px) !important;
-webkit-backdrop-filter: blur(16px) !important;
margin: 0 !important;
font-weight: 400 !important;
}
.dwdg-other-insights__wrap .section-heading,
.dwdg-other-insights__wrap .dwdg-other-insights__grid {
margin-inline: 0 !important;
}
:root {
--hp-section: clamp(56px, 7vw, 88px);
--section-gap: clamp(19px, 2.4vw, 29px);
}
.hero-panel          { padding-bottom: 40px !important; }
.works.section-soft {
padding-top: var(--hp-section) !important;
padding-bottom: clamp(24px, 3vw, 40px) !important;
}
.expertise           { padding-block: clamp(36px, 4.5vw, 56px) !important; }
.publications.dwdg-publications-slider {
padding-top: clamp(24px, 3vw, 40px) !important;
padding-bottom: var(--hp-section) !important;
}
.insights.section-soft { padding-block: var(--hp-section) !important; }
.future {
padding-top:    var(--hp-section) !important;
padding-bottom: var(--hp-section) !important;
}
.section-heading { margin-bottom: var(--section-gap) !important; }
.convictions { padding-top: clamp(12px, 2vw, 20px) !important; }
.future-head { margin-bottom: clamp(32px, 4.5vw, 52px) !important; }
.dwdg-insights-grid-block .section-heading,
.dwdg-insights-grid-block .insight-grid,
.dwdg-insights-grid-block .dwdg-insights-grid {
margin-inline: 0 !important;
}
.dwdg-publications-slider .section-heading { margin-inline: 0 !important; }
section.expertise > .wrap > .expertise-green-block { width: 100%; }
@media (max-width: 1080px) {
.hero-grid h1 { font-size: clamp(1.8rem, 5.5vw, 2.2rem) !important; }
}
@media (max-width: 760px) {
.hero-grid h1 {
font-size: clamp(1.6rem, 8vw, 2rem) !important;
text-align: center !important;
}
.insights .insight-grid,
.dwdg-energy-insights .insight-grid,
.dwdg-insights-grid,
.dwdg-other-insights__grid {
grid-template-columns: 1fr !important;
}
:root { --hp-section: clamp(40px, 10vw, 60px); }
.publication-copy h3,
.dwdg-pub-card__copy h3,
.dwdg-energy-publications .publication-copy h3 {
font-size: 22px !important;
}
}
@media (max-width: 460px) {
h1 { font-size: 26px !important; }
h2 { font-size: 20px !important; }
h3 { font-size: 15px !important; }
.hero-grid h1          { font-size: clamp(1.5rem, 10vw, 1.9rem) !important; }
.dwdg-energy-hero__title { font-size: 26px !important; }
.publication-copy h3,
.dwdg-pub-card__copy h3,
.dwdg-energy-publications .publication-copy h3 {
font-size: 16px !important;
}
}
.publications.dwdg-publications-slider .section-heading,
.dwdg-publications-slider .section-heading {
padding-left: 0 !important;
margin-left: 0 !important;
}
.dwdg-energy-publications .dwdg-energy-wrap {
width: min(calc(100% - 2 * var(--dwdg-energy-pad, clamp(20px, 3.4vw, 56px))), 1040px) !important;
max-width: 1040px !important;
}
.dwdg-energy-contact__inner {
position: relative !important;
height: clamp(420px, 34vw, 540px) !important;
}
.dwdg-energy-contact__photo {
position: absolute !important;
inset: 0 auto 0 0 !important;
width: auto !important;
max-width: min(46%, 480px) !important;
height: 100% !important;
margin: 0 !important;
display: block !important;
overflow: visible !important;
background: transparent !important;
z-index: 1 !important;
}
.dwdg-energy-contact__photo img {
display: block !important;
width: auto !important;
height: 100% !important;
max-width: 100% !important;
object-fit: contain !important;
object-position: bottom left !important;
}
.dwdg-energy-contact__body {
position: relative !important;
z-index: 2 !important;
grid-column: 2 !important;
}
@media (max-width: 900px) {
.dwdg-energy-contact__inner { height: auto !important; }
.dwdg-energy-contact__photo {
position: static !important;
width: min(72vw, 320px) !important;
max-width: 320px !important;
height: clamp(300px, 60vw, 400px) !important;
margin: 0 auto !important;
order: 2 !important;
}
.dwdg-energy-contact__photo img {
width: 100% !important;
object-position: bottom center !important;
}
.dwdg-energy-contact__body {
grid-column: auto !important;
order: 1 !important;
}
}
.dwdg-energy-hero__copy {
margin-top: var(--section-gap) !important;
}
@media (min-width: 921px) {
.generation-grid,
.dwdg-formations-row {
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
justify-content: stretch !important;
gap: clamp(16px, 2.5vw, 28px) !important;
width: 100% !important;
}
.generation-card,
.dwdg-generation-card {
max-width: none !important;
}
}
.generation-card,
.dwdg-generation-card {
aspect-ratio: 293 / 322 !important;
min-height: 322px !important;
}
.join {
padding-top:    clamp(56px, 7vw, 96px) !important;
padding-bottom: clamp(56px, 7vw, 96px) !important;
}
.join-grid {
align-items: start !important;
grid-template-columns: minmax(0, auto) minmax(0, auto) !important;
justify-content: center !important;
gap: clamp(48px, 7vw, 110px) !important;
}
@media (min-width: 921px) {
.join-copy,
.dwdg-join-us .join-body {
justify-self: start;
}
.dwdg-join-us .join-body { max-width: 440px; }
}
@media (max-width: 700px) {
.join-grid { grid-template-columns: minmax(0, 1fr) !important; }
}
.home .expertise-caption-top,
.front-page .expertise-caption-top,
body.home .expertise-caption-top,
.expertise .expertise-caption-top,
.home .expertise .expertise-caption-top,
.front-page .expertise .expertise-caption-top,
body.home .expertise .expertise-caption-top {
font-size: 22px !important;
line-height: 1.4 !important;
}
.home .expertise-green-block .link-list a,
.front-page .expertise-green-block .link-list a,
body.home .expertise-green-block .link-list a,
.expertise .expertise-green-block .link-list a,
.home .expertise .expertise-green-block .link-list a,
.front-page .expertise .expertise-green-block .link-list a,
body.home .expertise .expertise-green-block .link-list a {
font-size: 22px !important;
line-height: 1.3 !important;
}
.dwdg-energy-hero__copy p {
font-size: 22px !important;
line-height: 1.45 !important;
}
.hero-intro {
font-size: 22px !important;
line-height: 1.45 !important;
max-width: 560px !important;
}
.convictions-label {
font-size: 22px !important;
line-height: 1.3 !important;
}
.dwdg-energy-hero__subtitle {
font-size: 22px !important;
line-height: 1.3 !important;
}
.future-head p {
font-size: 22px !important;
line-height: 1.45 !important;
max-width: 780px !important;
}
.clients.section-soft {
padding-bottom: clamp(16px, 2vw, 24px) !important;
}
.publications.dwdg-publications-slider {
padding-top: clamp(12px, 1.5vw, 20px) !important;
}
.clients + .expertise,
.home .clients + .expertise,
.front-page .clients + .expertise,
body.home .clients + .expertise {
padding-top: 0 !important;
}
.clients.section-soft:has(+ .expertise) {
padding-bottom: clamp(18px, 2.5vw, 28px) !important;
}
.clients.section-soft,
.clients.section-soft:has(+ .expertise) {
padding-top: clamp(56px, 7vw, 96px) !important;
padding-bottom: clamp(56px, 7vw, 96px) !important;
}
.dwdg-join-us {
padding-block: clamp(56px, 7vw, 96px) !important;
}
@media (max-width: 460px) {
.hero-intro,
.convictions-label,
.dwdg-energy-hero__subtitle,
.dwdg-energy-hero__copy p,
.future-head p,
.home .expertise-caption-top,
.front-page .expertise-caption-top,
body.home .expertise-caption-top,
.expertise .expertise-caption-top,
.home .expertise .expertise-caption-top,
.front-page .expertise .expertise-caption-top,
body.home .expertise .expertise-caption-top,
.home .expertise-green-block .link-list a,
.front-page .expertise-green-block .link-list a,
body.home .expertise-green-block .link-list a,
.expertise .expertise-green-block .link-list a,
.home .expertise .expertise-green-block .link-list a,
.front-page .expertise .expertise-green-block .link-list a,
body.home .expertise .expertise-green-block .link-list a {
font-size: 17px !important;
}
}
.dwdg-energy-publications .report-preview {
display: grid !important;
place-items: center !important;
justify-content: center !important;
padding: clamp(24px, 3vw, 34px) !important;
}
.home .expertise > .wrap,
.front-page .expertise > .wrap,
body.home .expertise > .wrap,
.expertise > .wrap {
width: min(100% - 2 * var(--pad), var(--max)) !important;
max-width: var(--max) !important;
padding-inline: 0 !important;
margin-inline: auto !important;
}
.home .expertise-caption-top,
.front-page .expertise-caption-top,
body.home .expertise-caption-top,
.expertise .expertise-caption-top,
.home .expertise .expertise-caption-top,
.front-page .expertise .expertise-caption-top,
body.home .expertise .expertise-caption-top {
align-self: center !important;
width: min(100%, 880px) !important;
max-width: 880px !important;
margin: 0 auto clamp(28px, 3.4vw, 44px) !important;
text-align: center !important;
}
.home .expertise .expertise-green-block .expertise-grid,
.front-page .expertise .expertise-green-block .expertise-grid,
body.home .expertise .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
width: 100% !important;
max-width: 1015px !important;
margin-inline: auto !important;
min-height: 0 !important;
grid-template-columns: auto auto auto !important;
justify-content: center !important;
column-gap: clamp(52px, 8.5vw, 114px) !important;
row-gap: 0 !important;
align-items: start !important;
padding: clamp(32px, 4vw, 48px) clamp(36px, 4.5vw, 52px) !important;
}
.home .expertise .expertise-green-block h2,
.front-page .expertise .expertise-green-block h2,
body.home .expertise .expertise-green-block h2,
.expertise .expertise-green-block h2 {
margin: 0 0 clamp(24px, 2.6vw, 32px) !important;
}
.home .expertise .expertise-green-block .link-list,
.front-page .expertise .expertise-green-block .link-list,
body.home .expertise .expertise-green-block .link-list,
.expertise .expertise-green-block .link-list {
gap: clamp(18px, 2vw, 26px) !important;
}
.home .expertise .expertise-divider,
.front-page .expertise .expertise-divider,
body.home .expertise .expertise-divider,
.expertise .expertise-divider {
width: auto !important;
height: 38.4px !important;
align-self: flex-start !important;
margin-top: 0 !important;
padding-top: 0 !important;
}
.home .expertise .expertise-vector,
.front-page .expertise .expertise-vector,
body.home .expertise .expertise-vector,
.expertise .expertise-vector {
width: clamp(56px, 6vw, 76px) !important;
height: auto !important;
}
@media (max-width: 760px) {
.home .expertise-caption-top,
.front-page .expertise-caption-top,
body.home .expertise-caption-top,
.expertise .expertise-caption-top,
.home .expertise .expertise-caption-top,
.front-page .expertise .expertise-caption-top,
body.home .expertise .expertise-caption-top {
max-width: none !important;
}
.home .expertise .expertise-green-block .expertise-grid,
.front-page .expertise .expertise-green-block .expertise-grid,
body.home .expertise .expertise-green-block .expertise-grid,
.expertise .expertise-green-block .expertise-grid {
grid-template-columns: 1fr !important;
column-gap: 0 !important;
row-gap: clamp(28px, 7vw, 40px) !important;
padding: clamp(28px, 6vw, 36px) clamp(22px, 5vw, 28px) !important;
}
.home .expertise .expertise-divider,
.front-page .expertise .expertise-divider,
body.home .expertise .expertise-divider,
.expertise .expertise-divider {
display: none !important;
}
.home .expertise .expertise-vector,
.front-page .expertise .expertise-vector,
body.home .expertise .expertise-vector,
.expertise .expertise-vector {
width: clamp(70px, 16vw, 100px) !important;
}
}
.insight-card .insight-panel {
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
width: 100%;
padding: 12px 14px;
border-radius: var(--radius-md, 16px);
background: rgba(255, 255, 255, 0.4);
border: 1px solid rgba(255, 255, 255, 0.32);
-webkit-backdrop-filter: blur(18px) saturate(150%);
backdrop-filter: blur(18px) saturate(150%);
}
.insight-card .insight-panel h3,
.insight-card__body .insight-panel h3 {
background: none !important;
padding: 0 !important;
margin: 0 !important;
min-height: 0 !important;
border-radius: 0 !important;
box-shadow: none !important;
-webkit-backdrop-filter: none !important;
backdrop-filter: none !important;
}
.insight-card .insight-more {
align-self: flex-end;
display: inline-flex;
align-items: center;
justify-content: center;
max-height: 0;
margin-top: 0;
padding: 0 18px;
border-radius: 999px;
background: var(--green, #12c95f);
color: #fff;
font-size: 0.8rem;
font-weight: 600;
line-height: 1;
white-space: nowrap;
text-decoration: none;
overflow: hidden;
opacity: 0;
transform: translateY(6px);
transition:
max-height .3s cubic-bezier(.22, .61, .36, 1),
margin-top .3s cubic-bezier(.22, .61, .36, 1),
padding    .3s cubic-bezier(.22, .61, .36, 1),
opacity    .25s ease,
transform  .3s cubic-bezier(.22, .61, .36, 1);
}
.insight-card:hover .insight-more,
.insight-card:focus-within .insight-more {
max-height: 36px;
margin-top: 10px;
padding: 9px 18px;
opacity: 1;
transform: none;
}
@media (prefers-reduced-motion: reduce) {
.insight-card .insight-more {
transition: opacity .2s ease;
}
}
.insights .insight-grid,
.dwdg-insights-grid-block .insight-grid,
.dwdg-insights-grid,
.generation-grid,
.dwdg-formations-row {
gap: clamp(20px, 5vw, 72px) !important;
}
.generation-card,
.dwdg-generation-card {
aspect-ratio: auto !important;
}
.generation-img,
.dwdg-generation-card__img {
height: clamp(180px, 18vw, 220px) !important;
flex: 0 0 auto;
}
.generation-body p,
.dwdg-generation-card__body p {
display: -webkit-box !important;
-webkit-box-orient: vertical !important;
-webkit-line-clamp: 3 !important;
line-clamp: 3;
overflow: hidden !important;
}
.brand-pill .burger-lines {
min-width: 44px !important;
min-height: 44px !important;
padding: 0 !important;
justify-content: center !important;
align-items: center !important;
}
.dwdg-pub-slider__btn {
width: 44px !important;
height: 44px !important;
}
.dwdg-energy-experts__nav {
width: clamp(48px, 3.8vw, 60px) !important;
height: clamp(48px, 3.8vw, 60px) !important;
font-size: clamp(2.3rem, 3.4vw, 2.9rem) !important;
}
@media (max-width: 460px) {
.plus-link {
width: 44px !important;
height: 44px !important;
}
}
@media (max-width: 760px) {
.button-small {
min-height: 44px !important;
padding-inline: 20px !important;
}
}
@media (max-width: 480px) {
.convictions-label {
white-space: normal !important;
}
}
@media (max-width: 980px) and (min-width: 761px) {
.insights .insight-grid,
.dwdg-energy-insights .insight-grid,
.dwdg-insights-grid,
.dwdg-other-insights__grid {
grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
}
@media (max-width: 920px) and (min-width: 761px) {
.generation-grid,
.dwdg-formations-row {
grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
justify-content: stretch !important;
}
}
.dwdg-experts-carousel-block__wrap {
position: relative !important;
display: flex !important;
align-items: center !important;
gap: 16px !important;
}
.dwdg-experts-carousel__stage {
flex: 1 1 auto !important;
min-width: 0 !important;
}
.dwdg-experts-carousel__stage .dwdg-experts-row {
flex: 1 1 auto !important;
}
.dwdg-experts-carousel__next {
flex-shrink: 0 !important;
display: grid !important;
place-items: center !important;
width: 44px !important;
height: 44px !important;
border-radius: 50% !important;
border: 1.5px solid var(--line) !important;
background: transparent !important;
font-size: 1.6rem !important;
line-height: 1 !important;
color: var(--ink) !important;
text-decoration: none !important;
transition: background var(--t-fast) var(--ease) !important;
}
.dwdg-experts-carousel__next:hover {
background: var(--green) !important;
border-color: var(--green) !important;
color: #fff !important;
}
@media (max-width: 760px) {
.dwdg-experts-carousel__next { display: none !important; }
.dwdg-experts-carousel-block__wrap { display: block !important; }
}
.insight-card__body h3,
.insight-card .insight-panel h3,
.insight-copy h3 {
display: -webkit-box !important;
-webkit-box-orient: vertical !important;
-webkit-line-clamp: 2 !important;
line-clamp: 2;
overflow: hidden !important;
}
@media (max-width: 600px) {
.dwdg-who-brain__label {
max-width: min(150px, 34vw) !important;
white-space: normal !important;
line-height: 1.2 !important;
}
.dwdg-who-brain__label--left { text-align: center !important; }
.dwdg-who-brain__label--right { text-align: left !important; }
}
@media (hover: none) {
.dwdg-expertise-pill--hoverable .dwdg-expertise-pill__desc {
max-height: none !important;
opacity: 1 !important;
margin-top: 8px !important;
}
}
@media (max-width: 600px) {
.dwdg-purpose-card__body {
font-size: 18px !important;
}
}
@media (max-width: 480px) {
.generation-card,
.dwdg-generation-card {
min-height: 0 !important;
}
}
@media (hover: none) {
.dwdg-loc-marker::before {
content: "";
position: absolute;
inset: -16px;
z-index: 0;
}
}
@media (max-width: 480px) {
.dwdg-loc-expert__badge {
white-space: normal !important;
max-width: 100% !important;
}
.dwdg-loc-marker__tip {
white-space: normal !important;
max-width: min(220px, 70vw) !important;
min-width: 0 !important;
}
}
@media (max-width: 700px) {
.wrap-narrow > div:has(> #contactForm) {
grid-template-columns: minmax(0, 1fr) !important;
gap: clamp(32px, 8vw, 56px) !important;
}
}
@media (max-width: 768px) {
.dwdg-energy-experts {
padding-bottom: calc(var(--energy-sec) + 40px) !important;
}
.dwdg-energy-experts__nav {
bottom: -64px !important;
}
}
/*! == /assets/css/clients.css == */
.clients {
overflow: hidden;
}
.clients.section-soft {
background: #fff;
}
.clients .section-heading {
margin-bottom: clamp(52px, 7vw, 96px) !important;
}
.clients-marquee {
--clients-gap: clamp(14px, 2vw, 26px);
--clients-speed: 46s;
overflow: hidden;
-webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.clients-track {
display: flex;
width: max-content;
margin: 0;
padding: 0;
list-style: none;
animation: dwdg-clients-scroll var(--clients-speed) linear infinite;
will-change: transform;
}
@keyframes dwdg-clients-scroll {
from { transform: translateX(0); }
to   { transform: translateX(-50%); }
}
.clients-item {
flex: 0 0 auto;
display: flex;
align-items: center;
justify-content: center;
height: clamp(72px, 8vw, 88px);
padding-inline: clamp(24px, 2.6vw, 38px);
margin-inline-end: var(--clients-gap);
background: transparent;
border: 0;
border-radius: 0;
box-shadow: none;
}
.clients-item img {
display: block;
margin: auto;
width: auto;
height: calc(clamp(32px, 3.6vw, 46px) * var(--logo-scale, 1));
max-width: clamp(120px, 22vw, 280px);
max-height: 100%;
object-fit: contain;
object-position: center;
align-self: center;
filter: brightness(0);
opacity: 0.58;
transition: opacity 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.clients-item:hover img { opacity: 0.95; }
.clients-item--keolis,
.clients-item--hutchinson,
.clients-item--sofina               { --logo-scale: 0.55; }
.clients-item--systra               { --logo-scale: 0.60; }
.clients-item--enedis               { --logo-scale: 0.62; }
.clients-item--world-bank-group     { --logo-scale: 0.68; }
.clients-item--saft                 { --logo-scale: 0.70; }
.clients-item--bnp-paribas          { --logo-scale: 0.78; }
.clients-item--bpifrance,
.clients-item--forvia               { --logo-scale: 0.82; }
.clients-item--valeo                { --logo-scale: 0.88; }
.clients-item--verkor               { --logo-scale: 0.90; }
.clients-item--kfw,
.clients-item--business-france,
.clients-item--tony-blair-institute { --logo-scale: 0.95; }
.clients-item--eranove              { --logo-scale: 1.05; }
.clients-item--saint-gobain         { --logo-scale: 1.10; }
.clients-item--michelin             { --logo-scale: 1.15; }
@media (max-width: 720px) {
.clients-item {
height: 68px;
padding-inline: 24px;
}
.clients-item img {
height: calc(34px * var(--logo-scale, 1));
max-width: 220px;
}
}
@media (prefers-reduced-motion: reduce) {
.clients-track { animation: none; }
}
/*! == /assets/css/insights-page.css == */
.dwdg-ins-hero {
background: var(--paper, #fffdf8);
padding-top: clamp(120px, 13vw, 180px);
padding-bottom: clamp(32px, 4vw, 56px);
}
.dwdg-ins-hero__title {
margin: clamp(14px, 2vw, 22px) 0 0;
font-size: clamp(2.6rem, 6vw, 4.6rem);
line-height: 0.98;
letter-spacing: -0.05em;
font-weight: 800;
color: var(--ink);
}
.dwdg-ins-hero__lead {
max-width: 560px;
margin: clamp(16px, 2.2vw, 26px) 0 0;
color: var(--ink-soft, #4a4b46);
font-size: clamp(1rem, 1.5vw, 1.2rem);
line-height: 1.5;
letter-spacing: -0.015em;
}
.dwdg-ins-nav {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: clamp(24px, 3vw, 40px);
}
.dwdg-ins-nav__chip {
display: inline-flex;
align-items: center;
min-height: 36px;
padding: 0 18px;
border: 1.5px solid rgba(12, 13, 11, 0.16);
border-radius: 999px;
color: var(--ink);
font-size: 0.82rem;
font-weight: 600;
letter-spacing: 0.01em;
text-decoration: none;
transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.dwdg-ins-nav__chip:hover {
background: var(--green, #12c95f);
border-color: var(--green, #12c95f);
color: #fff;
transform: translateY(-1px);
}
.dwdg-ins-section {
padding-block: clamp(40px, 5vw, 72px);
scroll-margin-top: 96px;
}
.dwdg-ins-section--soft { background: var(--soft, #f1ece6); }
.dwdg-ins-section__head {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 20px;
margin-bottom: clamp(20px, 2.6vw, 34px);
}
.dwdg-ins-section__head h2 {
margin: 0;
font-size: clamp(1.55rem, 2.6vw, 2.2rem);
letter-spacing: -0.04em;
font-weight: 800;
color: var(--ink);
}
.dwdg-ins-section__count {
flex: 0 0 auto;
color: var(--ink-soft, #4a4b46);
font-size: 0.85rem;
font-weight: 600;
}
.dwdg-ins-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(16px, 2.5vw, 28px);
}
.dwdg-ins-card {
border-radius: var(--radius-lg, 22px);
background: #fff;
box-shadow: var(--shadow, 0 12px 30px rgba(20, 14, 9, 0.06));
overflow: hidden;
transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.dwdg-ins-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-hover, 0 20px 48px rgba(20, 14, 9, 0.13));
}
.dwdg-ins-card__link {
display: flex;
flex-direction: column;
height: 100%;
color: inherit;
text-decoration: none;
}
.dwdg-ins-card__frame {
aspect-ratio: 3 / 2;
overflow: hidden;
}
.dwdg-ins-card__frame img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.dwdg-ins-card:hover .dwdg-ins-card__frame img { transform: scale(1.05); }
.dwdg-ins-card__body {
display: flex;
flex: 1;
flex-direction: column;
align-items: flex-start;
gap: 12px;
padding: clamp(16px, 1.8vw, 22px);
}
.dwdg-ins-card__title {
margin: 0;
font-size: clamp(1rem, 1.4vw, 1.15rem);
line-height: 1.25;
letter-spacing: -0.03em;
font-weight: 700;
color: var(--ink);
}
.dwdg-ins-card__meta {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
width: 100%;
margin-top: auto;
padding-top: 6px;
color: var(--ink-soft, #4a4b46);
font-size: 0.8rem;
font-weight: 500;
}
.dwdg-ins-card__more {
color: var(--green-dark, #08763a);
font-weight: 700;
transition: transform 0.22s ease;
}
.dwdg-ins-card:hover .dwdg-ins-card__more { transform: translateX(3px); }
@media (max-width: 980px) {
.dwdg-ins-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
.dwdg-ins-grid { grid-template-columns: 1fr; }
.dwdg-ins-section__head { flex-direction: column; gap: 4px; }
}
@media (prefers-reduced-motion: reduce) {
.dwdg-ins-page .reveal { opacity: 1 !important; transform: none !important; }
.dwdg-ins-card, .dwdg-ins-card__frame img, .dwdg-ins-nav__chip { transition: none; }
}
/*! == /assets/css/publications-page.css == */
.dwdg-pubs-hero {
background: var(--paper, #fffdf8);
padding-top: clamp(120px, 13vw, 180px);
padding-bottom: clamp(32px, 4vw, 56px);
}
.dwdg-pubs-hero__title {
margin: clamp(14px, 2vw, 22px) 0 0;
font-size: clamp(2.6rem, 6vw, 4.6rem);
line-height: 0.98;
letter-spacing: -0.05em;
font-weight: 800;
color: var(--ink);
}
.dwdg-pubs-hero__lead {
max-width: 560px;
margin: clamp(16px, 2.2vw, 26px) 0 0;
color: var(--ink-soft, #4a4b46);
font-size: clamp(1rem, 1.5vw, 1.2rem);
line-height: 1.5;
letter-spacing: -0.015em;
}
.dwdg-pubs-nav {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: clamp(24px, 3vw, 40px);
}
.dwdg-pubs-nav__chip {
display: inline-flex;
align-items: center;
min-height: 36px;
padding: 0 18px;
border: 1.5px solid rgba(12, 13, 11, 0.16);
border-radius: 999px;
color: var(--ink);
font-size: 0.82rem;
font-weight: 600;
letter-spacing: 0.01em;
text-decoration: none;
transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.dwdg-pubs-nav__chip:hover {
background: var(--green, #12c95f);
border-color: var(--green, #12c95f);
color: #fff;
transform: translateY(-1px);
}
.dwdg-pubs-empty {
padding-block: clamp(40px, 5vw, 72px);
color: var(--ink-soft, #4a4b46);
font-size: 1rem;
}
.dwdg-pubs-section {
padding-block: clamp(40px, 5vw, 72px);
scroll-margin-top: 96px;
}
.dwdg-pubs-section--soft { background: var(--soft, #f1ece6); }
.dwdg-pubs-section__head {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 20px;
margin-bottom: clamp(20px, 2.6vw, 34px);
}
.dwdg-pubs-section__head h2 {
margin: 0;
font-size: clamp(1.55rem, 2.6vw, 2.2rem);
letter-spacing: -0.04em;
font-weight: 800;
color: var(--ink);
}
.dwdg-pubs-section__count {
flex: 0 0 auto;
color: var(--ink-soft, #4a4b46);
font-size: 0.85rem;
font-weight: 600;
}
.dwdg-pubs-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(16px, 2.5vw, 28px);
}
.dwdg-pubs-card {
display: flex;
flex-direction: column;
border-radius: var(--radius-lg, 22px);
background: #fff;
box-shadow: var(--shadow, 0 12px 30px rgba(20, 14, 9, 0.06));
overflow: hidden;
transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.dwdg-pubs-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-hover, 0 20px 48px rgba(20, 14, 9, 0.13));
}
.dwdg-pubs-card__frame {
display: flex;
align-items: center;
justify-content: center;
padding: clamp(20px, 3vw, 32px);
aspect-ratio: 3 / 2;
overflow: hidden;
background:
radial-gradient(circle at 70% 30%, rgba(18, 201, 95, 0.08), transparent 40%),
linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 243, 238, 0.95));
}
.dwdg-pubs-card:hover .dwdg-pubs-card__frame .report-cover-media img { transform: scale(1.05); }
.dwdg-pubs-card__frame .report-cover-media img { transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.dwdg-pubs-card__body {
display: flex;
flex: 1;
flex-direction: column;
align-items: flex-start;
gap: 12px;
padding: clamp(16px, 1.8vw, 22px);
}
.dwdg-pubs-card__title {
margin: 0;
}
.dwdg-pubs-card__title a {
color: var(--ink);
text-decoration: none;
font-size: clamp(1rem, 1.4vw, 1.15rem);
line-height: 1.25;
letter-spacing: -0.03em;
font-weight: 700;
}
.dwdg-pubs-card__title a:hover { color: var(--green-deep, #08763a); }
.dwdg-pubs-card__excerpt {
margin: 0;
color: var(--ink-soft, #4a4b46);
font-size: 0.88rem;
line-height: 1.5;
}
.dwdg-pubs-card__meta {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
width: 100%;
margin-top: auto;
padding-top: 6px;
}
.dwdg-pubs-card__meta time {
color: var(--ink-soft, #4a4b46);
font-size: 0.8rem;
font-weight: 500;
}
@media (max-width: 980px) {
.dwdg-pubs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
.dwdg-pubs-grid { grid-template-columns: 1fr; }
.dwdg-pubs-section__head { flex-direction: column; gap: 4px; }
.dwdg-pubs-card__meta { flex-direction: column; align-items: flex-start; gap: 10px; }
.dwdg-pubs-card__cta { align-self: stretch; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
.dwdg-pubs-page .reveal { opacity: 1 !important; transform: none !important; }
.dwdg-pubs-card, .dwdg-pubs-card__frame .report-cover-media img, .dwdg-pubs-nav__chip { transition: none; }
}
/*! == /assets/css/history-page.css == */
.dwdg-history-feature__inner {
display: grid;
grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
align-items: center;
gap: clamp(24px, 4vw, 64px);
padding-block: clamp(48px, 6.5vw, 88px);
}
.dwdg-history-feature__copy { order: 1; text-align: left; }
.dwdg-history-feature__art  { order: 2; }
.dwdg-history-feature--white .dwdg-history-feature__inner {
grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
.dwdg-history-feature--white .dwdg-history-feature__copy { order: 2; }
.dwdg-history-feature--white .dwdg-history-feature__art  { order: 1; justify-self: center; }
.dwdg-history-feature--green {
position: relative;
overflow: hidden;
width: 100%;
background: linear-gradient(100deg, #eafff4 0%, #d2f7e0 22%, #8cebb4 55%, #18c95f 100%);
}
.dwdg-history-feature__art {
width: 100%;
max-width: 266px;
aspect-ratio: 10 / 8;
margin: 0;
justify-self: end;
display: flex;
align-items: center;
justify-content: center;
}
.dwdg-history-feature--white .dwdg-history-feature__art { max-width: 224px;  }
.dwdg-history-feature__art img {
display: block;
width: 100%;
height: 100%;
object-fit: contain;
background: none;
border: 0;
box-shadow: none;
}
.dwdg-history-feature__art img:not([src]),
.dwdg-history-feature__art img[src=""] { visibility: hidden; }
.editor-styles-wrapper .dwdg-history-feature__art--empty {
outline: 1.5px dashed rgba(12, 13, 11, 0.25);
outline-offset: -1.5px;
border-radius: 12px;
}
.dwdg-history-feature__copy { max-width: 620px; justify-self: start; }
.dwdg-history-feature__title {
margin: 0;
font-size: 22px !important;
line-height: 1.2 !important;
letter-spacing: -0.02em;
font-weight: 700;
}
.dwdg-history-feature--green .dwdg-history-feature__title { color: var(--green-deep, #0aa04b); }
.dwdg-history-feature--white .dwdg-history-feature__title { color: var(--green-deep, #0aa04b); }
.dwdg-history-feature__subtitle {
margin: clamp(10px, 1.4vw, 16px) 0 0;
color: var(--ink, #0c0d0b);
font-size: 16px;
line-height: 1.35;
font-weight: 700;
letter-spacing: -0.01em;
}
.dwdg-history-feature__body {
margin: clamp(10px, 1.4vw, 14px) 0 0;
font-size: 16px;
line-height: 1.6;
letter-spacing: -0.01em;
}
.dwdg-history-feature--green .dwdg-history-feature__body { color: #123a26; }
.dwdg-history-feature--white .dwdg-history-feature__body { color: var(--muted, #6d6d66); }
.dwdg-history-feature .button,
.dwdg-history-feature__actions { margin-top: clamp(18px, 2.2vw, 26px); }
.dwdg-history-feature .wp-block-button__link {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 40px;
padding: 0 20px;
border: 1.5px solid transparent;
border-radius: 999px;
background: var(--green, #12b95c);
color: #fff;
font-size: 0.875rem;
font-weight: 700;
line-height: 1;
letter-spacing: -0.01em;
white-space: nowrap;
text-decoration: none;
transition:
background-color 160ms var(--ease, ease),
border-color 160ms var(--ease, ease),
color 160ms var(--ease, ease),
box-shadow 240ms var(--ease, ease),
transform 240ms var(--ease, ease);
}
.dwdg-history-feature .wp-block-button__link:hover {
background: #fff;
border-color: var(--green, #12c95f);
color: var(--green, #12c95f);
box-shadow: 0 12px 26px rgba(18, 201, 95, 0.16);
transform: translateY(-2px);
}
.dwdg-history-feature--green .button,
.dwdg-history-feature--green .wp-block-button__link {
background: var(--ink, #0c0d0b);
border-color: var(--ink, #0c0d0b);
color: #fff;
}
.dwdg-history-feature--green .button:hover,
.dwdg-history-feature--green .wp-block-button__link:hover {
background: #000;
border-color: #000;
box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}
@media (max-width: 820px) {
.dwdg-history-feature__inner,
.dwdg-history-feature--white .dwdg-history-feature__inner { grid-template-columns: 1fr; }
.dwdg-history-feature__copy,
.dwdg-history-feature--white .dwdg-history-feature__copy { order: 1; }
.dwdg-history-feature__art,
.dwdg-history-feature--white .dwdg-history-feature__art {
order: 2;
max-width: 182px;
justify-self: center;
}
.dwdg-history-feature__art--empty,
.dwdg-history-feature__art:has(img:not([src])) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
.dwdg-history-feature .reveal { transition: none; }
}
/*! == /assets/css/who-page.css == */
.dwdg-who-hero {
background: var(--paper);
padding: clamp(150px, 14vw, 190px) 0 clamp(48px, 6vw, 80px);
}
.dwdg-who-hero__title {
font-size: clamp(2rem, 4.4vw, 3.2rem);
font-weight: 800;
letter-spacing: -0.02em;
color: var(--ink);
margin: 0 0 clamp(16px, 2.4vw, 28px);
}
.dwdg-who-hero__intro {
max-width: 560px;
font-size: clamp(1rem, 1.4vw, 1.15rem);
line-height: 1.6;
color: var(--ink-soft);
margin: 0 0 clamp(36px, 5vw, 64px);
}
.dwdg-who-hero__visual {
display: flex;
justify-content: center;
}
.dwdg-who-ring {
position: relative;
width: min(450px, 68vw);
aspect-ratio: 730 / 718;
container-type: inline-size;
}
.dwdg-who-ring__art {
display: block;
width: 100%;
height: 100%;
}
@media (prefers-reduced-motion: no-preference) {
html.dwdg-anim .dwdg-who-ring__dashes {
transform-box: view-box;
transform-origin: 365px 353px;
animation: dwdg-who-spin 120s linear infinite;
}
}
@keyframes dwdg-who-spin {
to { transform: rotate(360deg); }
}
.dwdg-who-hero__tag,
.dwdg-who-brain__label {
position: absolute;
margin: 0;
color: var(--ink);
line-height: 1.25;
font-size: clamp(12px, 4.4cqw, 34px);
}
.dwdg-who-hero__tag {
left: 50%;
transform: translateX(-50%);
text-align: center;
white-space: nowrap;
}
.dwdg-who-hero__tag--top    { top: 9.5%; }
.dwdg-who-hero__tag--bottom {
bottom: 5.5%;
background: var(--paper);
padding: 0.15em 0.65em;
border-radius: 999px;
}
.dwdg-who-hero__tag strong  { display: block; font-weight: 700; }
.dwdg-who-hero__tag span    { font-weight: 400; }
.dwdg-who-brain__label {
top: 50.7%;
transform: translateY(-50%);
font-weight: 500;
max-width: 30cqw;
overflow-wrap: break-word;
word-break: break-word;
}
.dwdg-who-brain__label--left {
left: 34%;
transform: translate(-50%, -50%);
text-align: center;
color: #fff;
}
.dwdg-who-brain__label--right {
left: 59.7%;
text-align: left;
}
.dwdg-experts-team { padding: clamp(48px, 7vw, 96px) 0; }
.dwdg-experts-team--beige { background: var(--soft); }
.dwdg-experts-team--white { background: var(--paper); }
/*! == /assets/css/expert-page.css == */
.dwdg-xp {
--xp-ink:        #101314;
--xp-muted:      #4c5a53;
--xp-green:      var(--green, #12c95f);
--xp-green-deep: var(--green-deep, #0aa04b);
--xp-radius:     24px;
background: #fff;
overflow: clip;
}
.dwdg-xp__wrap {
width: min(1180px, calc(100% - 48px));
margin-inline: auto;
}
.dwdg-xp__hero {
position: relative;
margin-top: clamp(24px, 3.4vw, 44px);
min-height: clamp(240px, 30vw, 340px);
border-radius: var(--xp-radius);
background: linear-gradient(135deg, #ffffff 0%, #eafdf2 38%, #b9f3d2 100%);
overflow: hidden;
display: flex;
align-items: center;
}
.dwdg-xp__hero-map {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 32%;
opacity: 0.5;
pointer-events: none;
}
.dwdg-xp__hero-copy {
position: relative;
z-index: 1;
padding: clamp(24px, 3.4vw, 48px) clamp(22px, 4vw, 56px);
}
.dwdg-xp__name {
margin: 0;
font-size: clamp(1.9rem, 3.6vw, 3rem);
line-height: 1.08;
letter-spacing: -0.04em;
font-weight: 800;
color: var(--xp-ink);
}
.dwdg-xp__name span {
background: #fff;
padding: 0.12em 0.38em;
border-radius: 4px;
box-decoration-break: clone;
-webkit-box-decoration-break: clone;
}
.dwdg-xp__location {
margin: clamp(12px, 1.6vw, 18px) 0 0;
padding-left: 0.38em;
font-size: clamp(0.95rem, 1.2vw, 1.1rem);
font-weight: 500;
color: var(--xp-ink);
}
.dwdg-xp__hero-photo {
position: absolute;
right: clamp(8px, 3vw, 48px);
bottom: 0;
z-index: 1;
height: 92%;
display: flex;
align-items: flex-end;
}
.dwdg-xp__hero-photo img {
height: 100%;
width: auto;
max-width: clamp(180px, 26vw, 320px);
object-fit: contain;
object-position: bottom;
display: block;
}
.dwdg-xp__pill {
display: inline-flex;
align-items: center;
min-height: 34px;
padding: 0 18px;
border-radius: 999px;
font-size: 0.92rem;
font-weight: 600;
letter-spacing: -0.01em;
white-space: nowrap;
}
.dwdg-xp__pill--green {
background: var(--xp-green);
color: #06240f;
}
.dwdg-xp__pill--white {
background: #fff;
color: var(--xp-ink);
}
.dwdg-xp__about {
display: grid;
grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
gap: clamp(28px, 4.4vw, 72px);
align-items: start;
margin-top: clamp(32px, 4.2vw, 56px);
}
.dwdg-xp__bio {
margin-top: clamp(18px, 2.2vw, 26px);
color: var(--xp-ink);
font-size: clamp(0.98rem, 1.15vw, 1.08rem);
line-height: 1.65;
text-align: justify;
}
.dwdg-xp__bio p { margin: 0 0 1em; }
.dwdg-xp__bio p:last-child { margin-bottom: 0; }
.dwdg-xp__contacts {
border-radius: var(--xp-radius);
padding: clamp(22px, 2.6vw, 32px);
background: linear-gradient(180deg, #f7fffb 0%, #d7f9e6 45%, #7fe8ad 100%);
}
.dwdg-xp__contacts-list {
list-style: none;
margin: clamp(18px, 2.2vw, 26px) 0 0;
padding: 0;
display: grid;
gap: clamp(14px, 1.8vw, 20px);
}
.dwdg-xp__contact {
display: inline-flex;
align-items: center;
gap: 14px;
text-decoration: none;
color: var(--xp-ink);
font-weight: 500;
font-size: 0.98rem;
transition: color 0.18s ease;
}
.dwdg-xp__contact:hover { color: var(--xp-green-deep); }
.dwdg-xp__contact-ico {
flex: none;
width: 34px;
height: 34px;
border-radius: 8px;
background: #101314;
color: #fff;
display: inline-flex;
align-items: center;
justify-content: center;
}
.dwdg-xp__contact-label { overflow-wrap: anywhere; }
.dwdg-xp__band {
position: relative;
margin-top: clamp(48px, 6vw, 84px);
padding: clamp(110px, 13vw, 200px) 0 clamp(48px, 6vw, 88px);
background: linear-gradient(180deg, #f1fef7 0%, #dcfbea 55%, #cdf7e0 100%);
}
.dwdg-xp__band-curve {
position: absolute;
left: 0;
top: -1px;
width: 100%;
height: clamp(52px, 6.5vw, 100px);
line-height: 0;
pointer-events: none;
}
.dwdg-xp__band-curve svg { display: block; width: 100%; height: 100%; }
.dwdg-xp__band-curve path { fill: #fff; }
.dwdg-xp__section + .dwdg-xp__section {
margin-top: clamp(40px, 5vw, 64px);
}
.dwdg-xp__list {
list-style: none;
margin: clamp(18px, 2.2vw, 28px) 0 0;
padding: 0;
}
.dwdg-xp__list li {
position: relative;
padding: clamp(12px, 1.4vw, 16px) 0 clamp(12px, 1.4vw, 16px) 22px;
border-bottom: 1px solid rgba(16, 19, 20, 0.16);
color: var(--xp-ink);
font-size: clamp(0.95rem, 1.1vw, 1.02rem);
line-height: 1.55;
}
.dwdg-xp__list li::before {
content: "";
position: absolute;
left: 4px;
top: calc(clamp(12px, 1.4vw, 16px) + 0.62em);
width: 5px;
height: 5px;
border-radius: 50%;
background: var(--xp-ink);
}
.dwdg-xp__list li strong { font-weight: 700; }
.dwdg-xp__list--links li { padding-block: clamp(10px, 1.2vw, 14px); }
.dwdg-xp__list--links a {
color: var(--xp-ink);
text-decoration: none;
font-weight: 500;
transition: color 0.18s ease;
}
.dwdg-xp__list--links a:hover { color: var(--xp-green-deep); }
.dwdg-xp__timeline {
margin-top: clamp(18px, 2.2vw, 28px);
border-bottom: 1px solid rgba(16, 19, 20, 0.16);
padding-bottom: clamp(16px, 2vw, 24px);
}
.dwdg-xp__timeline-group + .dwdg-xp__timeline-group {
margin-top: clamp(20px, 2.4vw, 30px);
}
.dwdg-xp__timeline-org {
margin: 0;
font-size: clamp(0.98rem, 1.15vw, 1.06rem);
font-weight: 400;
letter-spacing: -0.01em;
color: var(--xp-ink);
}
.dwdg-xp__timeline-items {
list-style: none;
margin: 10px 0 0;
padding: 0;
display: grid;
gap: 7px;
}
.dwdg-xp__timeline-items li {
position: relative;
padding-left: 22px;
color: var(--xp-ink);
font-size: clamp(0.93rem, 1.05vw, 1rem);
line-height: 1.5;
}
.dwdg-xp__timeline-items li::before {
content: "";
position: absolute;
left: 4px;
top: 0.6em;
width: 5px;
height: 5px;
border-radius: 50%;
background: var(--xp-ink);
}
@media (max-width: 880px) {
.dwdg-xp__about { grid-template-columns: 1fr; }
.dwdg-xp__hero { min-height: 220px; }
.dwdg-xp__hero-photo { height: 86%; }
}
@media (max-width: 640px) {
.dwdg-xp__hero {
flex-direction: column;
align-items: stretch;
min-height: 0;
}
.dwdg-xp__hero-copy { padding-bottom: 8px; }
.dwdg-xp__hero-photo {
position: static;
height: auto;
justify-content: flex-end;
padding: 0 18px;
}
.dwdg-xp__hero-photo img { max-height: 240px; max-width: 70%; }
.dwdg-xp__bio { text-align: left; }
}
/*! == /assets/css/values-page.css == */
.dwdg-value-card {
width: 100%;
padding-block: clamp(18px, 2.6vw, 30px);
}
.dwdg-energy-hero + .dwdg-value-card { padding-top: clamp(40px, 5vw, 72px); }
.dwdg-value-card:last-of-type { padding-bottom: clamp(48px, 6vw, 84px); }
.dwdg-value-card__inner {
display: grid;
grid-template-columns: clamp(52px, 7vw, 96px) minmax(0, 1fr);
gap: clamp(20px, 3.2vw, 48px);
align-items: center;
}
.dwdg-value-card__letter {
justify-self: center;
font-size: clamp(56px, 7.5vw, 100px);
line-height: 1;
font-weight: 800;
letter-spacing: -0.04em;
color: var(--green, #12c95f);
}
.dwdg-value-card--white .dwdg-value-card__content {
padding-block: clamp(8px, 1.2vw, 14px);
padding-inline: clamp(22px, 3.2vw, 42px);
}
.dwdg-value-card--green .dwdg-value-card__content {
background: linear-gradient(100deg, #eafff4 0%, #d2f7e0 22%, #8cebb4 55%, #18c95f 100%);
border-radius: var(--radius-md, 14px);
padding: clamp(22px, 3vw, 34px) clamp(22px, 3.2vw, 42px);
}
.dwdg-value-card__title.dwdg-value-card__title {
margin: 0;
font-size: 22px !important;
line-height: 1.25 !important;
letter-spacing: -0.01em !important;
font-weight: 700;
color: var(--ink, #0c0d0b);
}
.dwdg-value-card__body {
margin: clamp(10px, 1.4vw, 14px) 0 0;
font-size: 16px;
line-height: 1.5;
letter-spacing: -0.01em;
}
.dwdg-value-card--white .dwdg-value-card__body { color: var(--muted, #6d6d66); }
.dwdg-value-card--green .dwdg-value-card__body { color: #123a26; }
@media (max-width: 600px) {
.dwdg-value-card__inner {
grid-template-columns: 40px minmax(0, 1fr);
gap: 14px;
}
.dwdg-value-card__letter { font-size: 40px; }
}
@media (prefers-reduced-motion: reduce) {
.dwdg-value-card .reveal { transition: none; }
}
/*! == /assets/css/purpose-page.css == */
.dwdg-purpose-card {
width: 100%;
padding-block: clamp(18px, 2.6vw, 30px);
}
.dwdg-energy-hero + .dwdg-purpose-card { padding-top: clamp(40px, 5vw, 72px); }
.dwdg-purpose-card:last-of-type { padding-bottom: clamp(48px, 6vw, 84px); }
.dwdg-purpose-card + .future {
margin-top: clamp(56px, 7vw, 104px);
padding-top: clamp(36px, 4vw, 56px) !important;
padding-bottom: clamp(36px, 4vw, 56px) !important;
}
.dwdg-purpose-card + .future .future-head {
margin-bottom: clamp(20px, 2.6vw, 32px) !important;
}
.dwdg-purpose-card--green .dwdg-purpose-card__inner {
background: var(--soft-light, #f6f3ef);
border-radius: var(--radius-md, 14px);
padding: clamp(24px, 3.2vw, 40px) clamp(22px, 3.2vw, 42px);
}
.dwdg-purpose-card--white .dwdg-purpose-card__inner {
display: grid;
grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
align-items: center;
gap: clamp(24px, 4vw, 64px);
padding-block: clamp(8px, 1.2vw, 14px);
padding-inline: clamp(22px, 3.2vw, 42px);
}
.dwdg-purpose-card--white .dwdg-purpose-card__copy  { order: 1; }
.dwdg-purpose-card--white .dwdg-purpose-card__media { order: 2; justify-self: end; }
.dwdg-purpose-card--media-left .dwdg-purpose-card__inner {
grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
.dwdg-purpose-card--media-left .dwdg-purpose-card__copy  { order: 2; }
.dwdg-purpose-card--media-left .dwdg-purpose-card__media { order: 1; justify-self: start; }
.dwdg-purpose-card__media {
width: 100%;
max-width: 420px;
aspect-ratio: 3 / 2;
margin: 0;
border-radius: var(--radius-md, 14px);
overflow: hidden;
box-shadow: var(--shadow, 0 2px 4px rgba(20, 21, 18, 0.04), 0 14px 44px rgba(20, 21, 18, 0.07));
}
.dwdg-purpose-card__media img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
.dwdg-purpose-card__media--empty {
background: linear-gradient(135deg, #f4f1ec 0%, var(--soft, #eee9e4) 100%);
box-shadow: none;
}
.editor-styles-wrapper .dwdg-purpose-card__media--empty {
outline: 1.5px dashed rgba(12, 13, 11, 0.25);
outline-offset: -1.5px;
}
.dwdg-purpose-card__copy { max-width: 620px; }
.dwdg-purpose-card--green .dwdg-purpose-card__copy { max-width: none; }
.dwdg-purpose-card__title.dwdg-purpose-card__title {
margin: 0;
font-size: 22px !important;
line-height: 1.25 !important;
letter-spacing: -0.02em;
font-weight: 700;
color: var(--green-deep, #0aa04b);
}
.dwdg-purpose-card__subtitle {
margin: clamp(10px, 1.4vw, 16px) 0 0;
color: var(--ink, #0c0d0b);
font-size: 16px;
line-height: 1.35;
font-weight: 700;
letter-spacing: -0.01em;
}
.dwdg-purpose-card__body {
margin: clamp(10px, 1.4vw, 14px) 0 0;
font-size: 16px;
line-height: 1.6;
letter-spacing: -0.01em;
}
.dwdg-purpose-card--green .dwdg-purpose-card__body { color: var(--muted, #6d6d66); }
.dwdg-purpose-card--white .dwdg-purpose-card__body { color: var(--muted, #6d6d66); }
@media (max-width: 820px) {
.dwdg-purpose-card--white .dwdg-purpose-card__inner,
.dwdg-purpose-card--media-left .dwdg-purpose-card__inner { grid-template-columns: 1fr; }
.dwdg-purpose-card--white .dwdg-purpose-card__copy,
.dwdg-purpose-card--media-left .dwdg-purpose-card__copy { order: 1; }
.dwdg-purpose-card--white .dwdg-purpose-card__media,
.dwdg-purpose-card--media-left .dwdg-purpose-card__media {
order: 2;
max-width: 320px;
justify-self: start;
}
.dwdg-purpose-card__media--empty { display: none; }
}
@media (prefers-reduced-motion: reduce) {
.dwdg-purpose-card .reveal { transition: none; }
}
/*! == /assets/css/careers-page.css == */
.dwdg-energy-hero:has(+ .dwdg-why-join) {
padding-bottom: clamp(8px, 1.6vw, 24px);
}
.dwdg-energy-hero + .dwdg-why-join {
margin-top: clamp(24px, 3vw, 48px);
}
.dwdg-energy-hero:has(+ .dwdg-why-join) .dwdg-energy-hero__curve {
height: 15%;
}
.dwdg-why-join + .dwdg-section-surface,
.dwdg-career-cta + .dwdg-section-surface {
margin-top: 0;
}
.dwdg-why-join.dwdg-why-join {
padding-top: clamp(110px, 13vw, 180px);
}
.dwdg-why-join__curve {
position: absolute;
left: 0;
top: -1px;
width: 100%;
height: clamp(52px, 7vw, 110px);
line-height: 0;
pointer-events: none;
}
.dwdg-why-join__curve svg { display: block; width: 100%; height: 100%; }
.dwdg-why-join__curve path { fill: var(--paper, #fffdf8); }
.dwdg-why-join__title.dwdg-why-join__title {
margin: 0;
color: var(--ink, #0c0d0b);
font-size: clamp(2rem, 3.6vw, 3rem);
line-height: 1;
letter-spacing: -0.045em;
font-weight: 800;
}
.dwdg-why-join__intro {
max-width: 720px;
margin: clamp(16px, 2vw, 24px) 0 0;
color: var(--ink-soft, #34352f);
font-size: clamp(1rem, 1.2vw, 1.1rem);
line-height: 1.6;
}
.dwdg-why-join__grid.dwdg-why-join__grid {
gap: clamp(20px, 2.5vw, 32px);
margin-top: clamp(36px, 4.5vw, 56px);
justify-content: space-between;
}
.dwdg-why-join__card.dwdg-why-join__card {
flex: 0 1 300px;
max-width: 320px;
min-height: clamp(260px, 24vw, 340px);
box-sizing: border-box;
background: rgba(255, 255, 255, 0.55);
border-radius: var(--radius-md, 14px);
padding: clamp(28px, 3vw, 36px) clamp(24px, 3vw, 32px);
}
.dwdg-why-join__card h3 {
margin: 0;
color: var(--ink, #0c0d0b);
font-size: 1.15rem;
font-weight: 700;
line-height: 1.3;
letter-spacing: -0.01em;
}
.dwdg-why-join__card p {
margin: 10px 0 0;
color: var(--ink-soft, #34352f);
font-size: 0.95rem;
line-height: 1.55;
}
.dwdg-career-cta__title.dwdg-career-cta__title {
margin: 0 0 clamp(14px, 1.8vw, 20px);
color: var(--ink, #0c0d0b);
font-size: clamp(1.6rem, 2.6vw, 2.2rem);
line-height: 1.1;
letter-spacing: -0.03em;
font-weight: 800;
}
.dwdg-career-cta__body {
margin: 0 0 10px;
max-width: 640px;
color: var(--ink-soft, #34352f);
font-size: 1rem;
line-height: 1.6;
}
.dwdg-career-cta__actions {
margin-top: clamp(18px, 2.2vw, 26px);
}
/*! == /assets/css/future-generations.css == */
.dwdg-fg-page { overflow-x: clip; }
.dwdg-fg-page,
.editor-styles-wrapper {
--fg-beige:   #f2edea;
--fg-mint:    #e2f9ed;
--fg-green-1: #96e6ab;
--fg-green-2: #5cd58c;
--fg-h2:    clamp(1.5rem, 2.6vw, 2rem);
--fg-h3:    clamp(1.15rem, 1.9vw, 1.5rem);
--fg-lead:  clamp(1.05rem, 1.7vw, 1.3rem);
--fg-copy:  clamp(0.95rem, 1.25vw, 1.0625rem);
--fg-small: clamp(0.8125rem, 1vw, 0.9375rem);
}
.dwdg-fg-title {
font-size: var(--fg-h2) !important;
font-weight: 800;
line-height: 1.1 !important;
letter-spacing: -0.04em;
color: var(--ink);
margin: 0 0 clamp(20px, 2.6vw, 30px);
}
.dwdg-fg-sr {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0 0 0 0);
clip-path: inset(50%);
white-space: nowrap;
border: 0;
}
.dwdg-fg-band { width: 100%; }
.dwdg-fg-band--beige { background: var(--fg-beige); }
.dwdg-fg-band--green {
background: linear-gradient(180deg, var(--fg-green-1) 0%, var(--fg-green-2) 100%);
}
.dwdg-fg-stats,
.dwdg-fg-process,
.dwdg-fg-apply,
.dwdg-fg-testimonials,
.dwdg-fg-gallery,
.dwdg-fg-press,
.dwdg-fg-team,
.dwdg-fg-partner,
.dwdg-fg-brochure { padding-block: clamp(40px, 5.4vw, 68px); }
.dwdg-fg-hero { padding-top: clamp(72px, 9vw, 116px); padding-bottom: clamp(24px, 3vw, 40px); }
.dwdg-fg-stats { padding-top: clamp(24px, 3vw, 40px); }
.dwdg-fg-brochure { padding-block: clamp(20px, 2.4vw, 32px); }
.dwdg-fg-hero__title {
font-size: clamp(1.75rem, 2.8vw, 2.25rem) !important;
font-weight: 800;
line-height: 1.05 !important;
letter-spacing: -0.045em;
color: var(--ink);
margin: 0 0 clamp(18px, 2.4vw, 28px);
}
.dwdg-fg-hero__lead {
font-size: var(--fg-lead);
font-weight: 500;
line-height: 1.4;
letter-spacing: -0.015em;
color: var(--ink);
max-width: 44em;
margin: 0;
}
.dwdg-fg-hero__media {
position: relative;
width: 100%;
aspect-ratio: 2.35 / 1;
overflow: hidden;
isolation: isolate;
margin: clamp(24px, 3.4vw, 44px) 0 0;
border-radius: 26px 26px 0 0;
background: linear-gradient(135deg, #f4f1ec 0%, var(--soft) 100%);
}
.dwdg-fg-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dwdg-fg-hero__curve {
position: absolute;
left: 0; right: 0; bottom: -1px;
width: 100%;
height: 34%;
z-index: 2;
display: block;
pointer-events: none;
}
.dwdg-fg-hero__curve path { fill: var(--paper); }
.dwdg-fg-band--beige .dwdg-fg-hero__curve path { fill: var(--fg-beige); }
.dwdg-fg-hero__split {
display: grid;
grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
margin-top: clamp(24px, 3.4vw, 44px);
}
.dwdg-fg-hero__copy { grid-column: 2; }
.dwdg-fg-hero__body {
font-size: var(--fg-copy);
line-height: 1.6;
color: var(--ink);
margin: 0;
}
.dwdg-fg-hero__body strong,
.dwdg-fg-hero__body a { color: var(--green-deep); font-weight: 700; }
.dwdg-fg-hero__body a { text-decoration: none; border-bottom: 1px solid currentColor; }
.dwdg-fg-hero__body a:hover { color: var(--green); }
.dwdg-fg-hero__actions {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
gap: clamp(10px, 1.2vw, 14px);
margin-top: clamp(24px, 3vw, 38px);
}
.dwdg-fg-btn-soft {
background: var(--fg-mint);
border-color: transparent;
color: var(--ink);
}
.dwdg-fg-btn-soft:hover {
background: var(--green);
border-color: var(--green);
color: #fff;
box-shadow: var(--shadow-green);
}
.dwdg-fg-stats__row {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: clamp(12px, 2.3vw, 26px);
}
.dwdg-fg-stats__card {
background: var(--fg-mint);
border-radius: var(--radius-md);
padding: clamp(20px, 2.6vw, 30px) clamp(12px, 1.6vw, 20px);
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
gap: 8px;
min-height: clamp(104px, 9.8vw, 142px);
}
.dwdg-fg-stats__value {
font-size: clamp(1.6rem, 3vw, 2.375rem);
font-weight: 800;
line-height: 1;
letter-spacing: -0.03em;
color: var(--ink);
font-variant-numeric: tabular-nums;
}
.dwdg-fg-stats__label {
font-size: var(--fg-small);
line-height: 1.3;
color: var(--ink);
max-width: 12em;
margin-inline: auto;
}
.dwdg-fg-process__intro {
font-size: var(--fg-copy);
line-height: 1.6;
color: var(--ink);
margin: 0;
max-width: 62em;
}
.dwdg-fg-process__list { margin-top: clamp(28px, 3.6vw, 44px); }
.dwdg-fg-process__step + .dwdg-fg-process__step { margin-top: clamp(24px, 3vw, 36px); }
.dwdg-fg-process__step-title {
font-size: var(--fg-h3) !important;
font-weight: 800;
line-height: 1.15 !important;
letter-spacing: -0.03em;
color: var(--ink);
margin: 0 0 clamp(8px, 1vw, 12px);
}
.dwdg-fg-process__num { color: inherit; }
.dwdg-fg-process__step-body {
font-size: var(--fg-copy);
line-height: 1.6;
color: var(--ink);
margin: 0;
max-width: 62em;
}
.dwdg-fg-apply__row {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(24px, 4.6vw, 64px);
}
.dwdg-fg-apply__col-title {
font-size: var(--fg-h3) !important;
font-weight: 800;
line-height: 1.2 !important;
letter-spacing: -0.03em;
color: var(--ink);
margin: 0 0 clamp(12px, 1.6vw, 18px);
}
.dwdg-fg-apply__num { color: var(--green); }
.dwdg-fg-apply__col-body {
font-size: var(--fg-copy);
line-height: 1.55;
color: var(--ink);
margin: 0;
}
.dwdg-fg-testimonials__row {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(20px, 4vw, 56px);
align-items: stretch;
}
.dwdg-fg-testimonials__card {
display: flex;
flex-direction: column;
gap: clamp(20px, 2.6vw, 32px);
border-radius: var(--radius-md);
padding: clamp(20px, 2.4vw, 28px);
}
.dwdg-fg-testimonials--green .dwdg-fg-testimonials__card { background: var(--fg-mint); }
.dwdg-fg-testimonials--white .dwdg-fg-testimonials__card { background: var(--fg-beige); }
.dwdg-fg-testimonials__quote {
font-size: var(--fg-copy);
line-height: 1.5;
color: var(--ink);
margin: 0;
}
.dwdg-fg-testimonials--white .dwdg-fg-testimonials__quote { font-size: var(--fg-small); }
.dwdg-fg-testimonials__author {
display: flex;
align-items: center;
gap: 14px;
margin-top: auto;
}
.dwdg-fg-testimonials__avatar {
flex: 0 0 auto;
width: 44px;
height: 44px;
border-radius: 50%;
overflow: hidden;
background: rgba(12, 13, 11, 0.08);
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
color: var(--ink-soft);
}
.dwdg-fg-testimonials__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dwdg-fg-testimonials__id { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.dwdg-fg-testimonials__name { font-size: var(--fg-small); font-weight: 400; color: var(--ink); }
.dwdg-fg-testimonials__role { font-size: var(--fg-small); font-weight: 700; color: var(--ink); }
.dwdg-fg-testimonials--white .dwdg-fg-testimonials__author { gap: 10px; }
.dwdg-fg-testimonials--white .dwdg-fg-testimonials__avatar { width: 34px; height: 34px; }
.dwdg-fg-gallery__intro {
font-size: var(--fg-copy);
line-height: 1.6;
color: var(--ink);
margin: 0 0 clamp(28px, 3.4vw, 44px);
max-width: 62em;
}
.dwdg-fg-gallery__frame {
width: 100%;
aspect-ratio: 1.9 / 1;
border-radius: var(--radius-lg);
overflow: hidden;
background: linear-gradient(135deg, #f4f1ec 0%, var(--soft) 100%);
}
.dwdg-fg-gallery__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dwdg-fg-gallery__item { margin: 0; display: none; }
.dwdg-fg-gallery__item.active { display: block; }
.dwdg-fg-gallery__item figcaption {
margin-top: clamp(14px, 1.8vw, 22px);
font-size: var(--fg-small);
color: var(--ink);
text-align: center;
}
.dwdg-fg-slider,
.dwdg-fg-team__shell {
--fg-arrow: clamp(30px, 3.4vw, 46px);
--fg-arrow-gap: clamp(12px, 1.8vw, 24px);
position: relative;
display: grid;
grid-template-columns: var(--fg-arrow) minmax(0, 1fr) var(--fg-arrow);
gap: var(--fg-arrow-gap);
align-items: center;
}
.dwdg-fg-gallery__stage,
.dwdg-fg-press__stage,
.dwdg-fg-team__track { grid-column: 2; min-width: 0; }
.dwdg-fg-slider--solo { grid-template-columns: minmax(0, 1fr); }
.dwdg-fg-slider--solo .dwdg-fg-gallery__stage,
.dwdg-fg-slider--solo .dwdg-fg-press__stage { grid-column: 1; }
.dwdg-fg-slider__btn,
.dwdg-fg-team__nav {
width: 100%;
height: clamp(34px, 3.4vw, 46px);
padding: 0;
border: none;
background: transparent;
color: var(--green);
cursor: pointer;
display: grid;
place-items: center;
transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.dwdg-fg-slider__btn svg,
.dwdg-fg-team__nav svg { width: 100%; height: 100%; }
.dwdg-fg-slider__btn--prev,
.dwdg-fg-team__nav--prev { grid-column: 1; justify-self: end; }
.dwdg-fg-slider__btn--next,
.dwdg-fg-team__nav--next { grid-column: 3; justify-self: start; }
.dwdg-fg-slider__btn:hover,
.dwdg-fg-team__nav:hover { color: var(--green-deep); }
.dwdg-fg-slider__btn--prev:hover,
.dwdg-fg-team__nav--prev:hover { transform: translateX(-2px); }
.dwdg-fg-slider__btn--next:hover,
.dwdg-fg-team__nav--next:hover { transform: translateX(2px); }
.dwdg-fg-team__nav[aria-disabled="true"] { opacity: 0.25; cursor: default; pointer-events: none; }
.dwdg-fg-press__card { display: none; }
.dwdg-fg-press__card.active {
display: grid;
grid-template-columns: minmax(0, 33fr) minmax(0, 67fr);
gap: clamp(20px, 3.4vw, 48px);
align-items: start;
}
.dwdg-fg-press__meta { display: flex; flex-direction: column; gap: 6px; }
.dwdg-fg-press__source {
color: var(--green);
font-size: var(--fg-h3);
font-weight: 800;
letter-spacing: -0.03em;
line-height: 1.1;
}
.dwdg-fg-press__date { color: var(--ink); font-size: var(--fg-small); }
.dwdg-fg-press__quote {
font-size: var(--fg-copy);
line-height: 1.55;
color: var(--ink);
margin: 0;
}
.dwdg-fg-press__mark { color: var(--green); font-weight: 700; }
.dwdg-fg-press__actions {
display: flex;
justify-content: flex-end;
margin-top: clamp(18px, 2.4vw, 30px);
}
.dwdg-fg-press__more.button { min-height: 30px; padding: 0 14px; font-size: 0.75rem; }
.dwdg-fg-press__more--static { pointer-events: none; }
.dwdg-fg-team__track {
display: flex;
gap: clamp(24px, 3vw, 48px);
overflow-x: auto;
overflow-y: hidden;
scroll-snap-type: x mandatory;
scrollbar-width: none;
-ms-overflow-style: none;
min-width: 0;
}
.dwdg-fg-team__track::-webkit-scrollbar { display: none; }
.dwdg-fg-team__card {
flex: 0 0 calc((100% - 3 * clamp(24px, 3vw, 48px)) / 4);
scroll-snap-align: start;
display: flex;
flex-direction: column;
align-items: flex-start;
min-width: 0;
}
.dwdg-fg-team__photo {
width: 100%;
max-width: 200px;
aspect-ratio: 1 / 1;
border-radius: 18px;
overflow: hidden;
background: #efeee9;
margin: 0 0 clamp(14px, 1.6vw, 18px);
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
font-weight: 700;
color: var(--muted);
}
.dwdg-fg-team__photo img {
width: 100%; height: 100%;
object-fit: cover;
object-position: top center;
display: block;
}
.dwdg-fg-team__name {
font-size: clamp(1rem, 1.25vw, 1.15rem);
font-weight: 700;
line-height: 1.15;
letter-spacing: -0.03em;
color: var(--ink);
margin-bottom: 6px;
}
.dwdg-fg-team__role {
font-size: clamp(0.85rem, 1vw, 0.95rem);
line-height: 1.2;
font-weight: 400;
color: var(--ink);
}
.dwdg-fg-partner__grid {
display: grid;
grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
gap: clamp(24px, 4vw, 56px);
align-items: start;
}
.dwdg-fg-partner__title {
font-size: clamp(1.4rem, 2.4vw, 1.875rem) !important;
font-weight: 800;
line-height: 1.15 !important;
letter-spacing: -0.04em;
color: var(--ink);
margin: 0;
}
.dwdg-fg-partner__line { display: block; }
.dwdg-fg-partner__line--accent { color: var(--green); }
.dwdg-fg-partner__body {
font-size: var(--fg-copy);
line-height: 1.6;
color: var(--ink);
margin: 0;
}
.dwdg-fg-partner__cta { margin-top: clamp(20px, 2.6vw, 32px); }
.dwdg-fg-brochure__inner { display: flex; flex-direction: column; gap: 10px; }
.dwdg-fg-brochure--center .dwdg-fg-brochure__inner { align-items: center; text-align: center; }
.dwdg-fg-brochure--right  .dwdg-fg-brochure__inner { align-items: flex-end; text-align: right; }
.dwdg-fg-brochure--left   .dwdg-fg-brochure__inner { align-items: flex-start; }
.dwdg-fg-brochure__btn { align-self: auto; }
.dwdg-fg-brochure__icon { width: 16px; height: 16px; flex: 0 0 auto; }
.dwdg-fg-brochure__note { font-size: var(--fg-small); color: var(--muted); margin: 0; }
.editor-styles-wrapper .dwdg-fg-hero__media--empty,
.editor-styles-wrapper .dwdg-fg-gallery__frame--empty,
.editor-styles-wrapper .dwdg-fg-team__photo--empty {
outline: 1.5px dashed rgba(12, 13, 11, 0.25);
outline-offset: -1.5px;
}
@media (max-width: 900px) {
.dwdg-fg-hero__split { grid-template-columns: minmax(0, 1fr); }
.dwdg-fg-hero__copy { grid-column: 1; }
.dwdg-fg-hero__actions { justify-content: flex-start; }
.dwdg-fg-hero__media { aspect-ratio: 16 / 10; }
.dwdg-fg-apply__row,
.dwdg-fg-testimonials__row { grid-template-columns: 1fr; }
.dwdg-fg-partner__grid { grid-template-columns: 1fr; }
.dwdg-fg-press__card.active { grid-template-columns: 1fr; }
.dwdg-fg-press__actions { justify-content: flex-start; }
.dwdg-fg-team__card { flex: 0 0 calc((100% - clamp(24px, 3vw, 48px)) / 2); }
}
@media (max-width: 768px) {
.dwdg-fg-slider,
.dwdg-fg-team__shell {
grid-template-columns: minmax(0, 1fr) auto auto;
row-gap: clamp(16px, 3vw, 24px);
}
.dwdg-fg-gallery__stage,
.dwdg-fg-press__stage,
.dwdg-fg-team__track { grid-column: 1 / -1; grid-row: 1; }
.dwdg-fg-slider__btn--prev,
.dwdg-fg-team__nav--prev { grid-column: 2; grid-row: 2; justify-self: start; }
.dwdg-fg-slider__btn--next,
.dwdg-fg-team__nav--next { grid-column: 3; grid-row: 2; justify-self: end; }
.dwdg-fg-slider__btn,
.dwdg-fg-team__nav { width: 34px; }
}
@media (max-width: 640px) {
.dwdg-fg-stats__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dwdg-fg-hero__actions { flex-direction: column; align-items: stretch; }
.dwdg-fg-hero__actions .button { width: 100%; }
.dwdg-fg-hero__media { aspect-ratio: 4 / 3; }
.dwdg-fg-gallery__frame { aspect-ratio: 4 / 3; }
.dwdg-fg-team__card { flex: 0 0 100%; }
.dwdg-fg-brochure--center .dwdg-fg-brochure__inner,
.dwdg-fg-brochure--right .dwdg-fg-brochure__inner { align-items: stretch; text-align: left; }
.dwdg-fg-brochure__btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
.dwdg-fg-page .reveal { transition: none; }
.dwdg-fg-slider__btn:hover,
.dwdg-fg-slider__btn--prev:hover,
.dwdg-fg-slider__btn--next:hover { transform: translateY(-50%); }
}
/*! == /assets/css/motion.css == */
:root {
--m-ease:      cubic-bezier(0.16, 1, 0.3, 1);
--m-ease-io:   cubic-bezier(0.65, 0.05, 0.36, 1);
--m-fast:      200ms;
--m-hover:     450ms;
--m-reveal:    800ms;
--m-rise:      26px;
--m-stagger:   70ms;
}
html:not(.dwdg-anim) .reveal,
html:not(.dwdg-anim) [data-rv] {
opacity: 1 !important;
transform: none !important;
}
html.dwdg-anim .reveal,
html.dwdg-anim [data-rv] {
opacity: 0;
transform: translateY(var(--m-rise));
transition:
opacity   var(--m-reveal) var(--m-ease),
transform var(--m-reveal) var(--m-ease);
transition-delay: var(--rv-d, 0ms);
}
html.dwdg-anim .reveal.is-visible,
html.dwdg-anim [data-rv].is-visible {
opacity: 1;
transform: translateY(0);
}
html.dwdg-anim [data-rv="media"] {
transform: translateY(var(--m-rise)) scale(0.985);
transform-origin: center bottom;
}
html.dwdg-anim [data-rv="media"].is-visible { transform: translateY(0) scale(1); }
html.dwdg-anim .delay-1 { transition-delay: var(--m-stagger); }
html.dwdg-anim .delay-2 { transition-delay: calc(var(--m-stagger) * 2); }
html.dwdg-anim .hero-grid.reveal { transform: none; }
html.dwdg-anim .hero-grid.reveal h1,
html.dwdg-anim .hero-grid.reveal .hero-intro,
html.dwdg-anim .hero-grid.reveal .hero-actions {
opacity: 0;
transform: translateY(34px);
transition:
opacity   900ms var(--m-ease),
transform 900ms var(--m-ease);
}
html.dwdg-anim .hero-grid.reveal .hero-intro   { transition-delay: 140ms; }
html.dwdg-anim .hero-grid.reveal .hero-actions { transition-delay: 220ms; }
html.dwdg-anim .hero-grid.reveal.is-visible h1,
html.dwdg-anim .hero-grid.reveal.is-visible .hero-intro,
html.dwdg-anim .hero-grid.reveal.is-visible .hero-actions {
opacity: 1;
transform: translateY(0);
}
html.dwdg-anim .convictions.reveal .conviction {
opacity: 0;
transform: scale(0.9);
transition:
opacity   1000ms var(--m-ease),
transform 1000ms var(--m-ease);
}
html.dwdg-anim .convictions.reveal .conviction-strong { transition-delay: 160ms; }
html.dwdg-anim .convictions.reveal.is-visible .conviction {
opacity: 1;
transform: scale(1);
}
@keyframes dwdgHeroSettle {
from { transform: scale(1.06); }
to   { transform: scale(1); }
}
html.dwdg-anim .hero-media__inner {
animation: dwdgHeroSettle 1600ms var(--m-ease) both;
}
html.dwdg-anim .dwdg-plx {
will-change: transform;
backface-visibility: hidden;
transform: translate3d(0, 0, 0) scale(1.12);
}
.site-header {
transition:
top       var(--t-base, 240ms) var(--m-ease),
transform 480ms var(--m-ease);
}
html.dwdg-anim .site-header.is-stealth { transform: translateY(-160%); }
html.dwdg-anim body.nav-open .site-header { transform: translateY(0); }
.site-header .brand-pill {
transition:
background-color var(--t-fast, 180ms) var(--m-ease),
box-shadow 480ms var(--m-ease),
transform  480ms var(--m-ease);
}
.site-header.is-scrolled .brand-pill {
box-shadow: 0 20px 56px rgba(0, 0, 0, 0.16);
}
html.dwdg-anim .dwdg-nav-bar__links > li {
opacity: 0;
transform: translateY(-10px);
transition: none;
}
html.dwdg-anim body.nav-open .dwdg-nav-bar__links > li {
opacity: 1;
transform: translateY(0);
transition:
opacity   520ms var(--m-ease),
transform 520ms var(--m-ease);
}
html.dwdg-anim body.nav-open .dwdg-nav-bar__links > li:nth-child(2) { transition-delay: 40ms; }
html.dwdg-anim body.nav-open .dwdg-nav-bar__links > li:nth-child(3) { transition-delay: 80ms; }
html.dwdg-anim body.nav-open .dwdg-nav-bar__links > li:nth-child(4) { transition-delay: 120ms; }
html.dwdg-anim body.nav-open .dwdg-nav-bar__links > li:nth-child(5) { transition-delay: 160ms; }
html.dwdg-anim body.nav-open .dwdg-nav-bar__links > li:nth-child(6) { transition-delay: 200ms; }
html.dwdg-anim body.nav-open .dwdg-nav-bar__links > li:nth-child(7) { transition-delay: 240ms; }
html.dwdg-anim body.nav-open .dwdg-nav-bar__links > li:nth-child(n+8) { transition-delay: 280ms; }
.button:active,
.footer-contact:active,
.main-nav .nav-cta:active,
.dwdg-pub-slider__btn:active {
transform: translateY(0) scale(0.97);
transition-duration: 80ms;
}
.plus-link:active { transform: rotate(90deg) scale(0.94); }
.dwdg-roll {
position: relative;
display: block;
overflow: hidden;
}
.dwdg-roll__a,
.dwdg-roll__b {
display: block;
line-height: 1.35;
}
.dwdg-roll__b {
position: absolute;
top: 100%;
left: 0;
right: 0;
}
html.dwdg-anim .dwdg-roll__a,
html.dwdg-anim .dwdg-roll__b {
transition: transform 420ms var(--m-ease);
}
html.dwdg-anim .button {
transition:
background-color 360ms var(--m-ease),
border-color 360ms var(--m-ease),
color 360ms var(--m-ease),
box-shadow 420ms var(--m-ease),
transform var(--t-base, 240ms) var(--m-ease);
}
html.dwdg-anim .button:hover { transform: none; }
html.dwdg-anim .button:active { transform: scale(0.97); }
html.dwdg-anim .button:hover .dwdg-roll__a,
html.dwdg-anim .button:focus-visible .dwdg-roll__a,
html.dwdg-anim .button:hover .dwdg-roll__b,
html.dwdg-anim .button:focus-visible .dwdg-roll__b {
transform: translateY(-100%);
}
.text-link::after { transition: transform 360ms var(--m-ease); }
.footer-sub-list li a,
.footer-legal,
.footer-col-title:not(.footer-contact) {
background-image: linear-gradient(currentColor, currentColor);
background-repeat: no-repeat;
background-position: left bottom;
background-size: 0% 1px;
transition:
color var(--t-fast, 180ms) var(--m-ease),
background-size 360ms var(--m-ease);
}
.footer-sub-list li a:hover,
.footer-legal:hover,
.footer-col-title:not(.footer-contact):hover { background-size: 100% 1px; }
@media (hover: hover) {
.work-card:hover .work-media img,
.insight-card:hover img,
.generation-card:hover .generation-img img,
.dwdg-generation-card:hover .dwdg-generation-card__img img,
.dwdg-key-insight:hover .dwdg-key-insight__img img,
.dwdg-expert-card:hover .dwdg-expert-card__img img,
.dwdg-work-card:hover .dwdg-work-card__media img,
.dwdg-projects-list__item:hover .dwdg-projects-list__media img,
.dwdg-ins-card:hover .dwdg-ins-card__frame img {
will-change: transform;
}
}
html.dwdg-anim body::after {
content: "";
position: fixed;
inset: 0;
z-index: 99999;
background: var(--paper, #fffdf8);
opacity: 0;
pointer-events: none;
animation: dwdgPageIn 640ms var(--m-ease-io) both;
}
@keyframes dwdgPageIn {
from { opacity: 1; }
to   { opacity: 0; }
}
html.dwdg-anim.dwdg-leaving body::after {
animation: none;
opacity: 1;
transition: opacity 260ms var(--m-ease-io);
}
html.dwdg-anim.dwdg-restored body::after { animation: none; opacity: 0; }
.dwdg-stat-block__value { font-variant-numeric: tabular-nums; }
@media (prefers-reduced-motion: reduce) {
html.dwdg-anim .reveal,
html.dwdg-anim [data-rv],
html.dwdg-anim .hero-grid.reveal h1,
html.dwdg-anim .hero-grid.reveal .hero-intro,
html.dwdg-anim .hero-grid.reveal .hero-actions,
html.dwdg-anim .convictions.reveal .conviction,
html.dwdg-anim .dwdg-nav-bar__links > li {
opacity: 1 !important;
transform: none !important;
transition: none !important;
}
html.dwdg-anim .hero-media__inner { animation: none !important; }
html.dwdg-anim .dwdg-roll__a,
html.dwdg-anim .dwdg-roll__b {
transform: none !important;
transition: none !important;
}
html.dwdg-anim .dwdg-plx { transform: none !important; will-change: auto; }
html.dwdg-anim body::after { animation: none !important; opacity: 0 !important; }
}
/*! == /assets/css/mobile.css == */
@media (max-width: 900px) {
.dwdg-nav-bar {
height: auto;
max-height: 100dvh;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
flex-direction: column;
align-items: stretch;
justify-content: flex-start;
padding: 96px 18px 28px;
gap: 10px;
}
.dwdg-nav-bar__links {
flex-direction: column;
align-items: stretch;
width: 100%;
gap: 4px;
}
.dwdg-nav-bar__links > li > a {
display: flex;
width: 100%;
justify-content: flex-start;
height: 48px;
padding: 0 18px;
font-size: 1rem;
white-space: normal;
}
.dwdg-nav-bar__links > li.has-sub > a::after {
margin-left: auto;
transition: transform 180ms ease;
}
.dwdg-nav-bar__links > li.has-sub.is-open > a::after {
transform: rotate(180deg);
}
.dwdg-nav-sub-panel {
position: static;
min-width: 0;
display: none;
opacity: 1;
pointer-events: auto;
transform: none;
background: rgba(255, 255, 255, 0.45);
border-radius: 12px;
box-shadow: none;
margin: 2px 0 6px;
padding: 6px 0;
}
.dwdg-nav-bar__links > li.has-sub:hover .dwdg-nav-sub-panel,
.dwdg-nav-bar__links > li.has-sub:focus-within .dwdg-nav-sub-panel {
display: none;
}
.dwdg-nav-bar__links > li.has-sub.is-open .dwdg-nav-sub-panel {
display: block;
}
.dwdg-nav-sub-panel a {
padding: 12px 26px;
font-size: 0.95rem;
}
.dwdg-nav-bar__li {
width: 44px;
height: 44px;
margin: 6px 0 0;
align-self: flex-start;
}
body.nav-open .site-header {
z-index: 10001;
}
}
@media (max-width: 1080px) {
.convictions {
grid-template-columns: 1fr !important;
gap: clamp(20px, 4vw, 40px) !important;
}
.conviction-visual--spread {
grid-template-columns: 1fr !important;
justify-items: center !important;
gap: 16px !important;
}
.conviction-visual--spread .conviction--align-left,
.conviction-visual--spread .conviction--align-center,
.conviction-visual--spread .conviction--align-right {
grid-column: 1 !important;
justify-self: center !important;
}
}
@media (max-width: 900px) {
.sector-page-content .dwdg-expertise-badge-grid {
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
}
@media (max-width: 600px) {
.sector-page-content .dwdg-expertise-badge-grid {
grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
}
@media (max-width: 900px) {
.dwdg-loc-impact__card {
min-height: 0 !important;
}
}
@media (max-width: 480px) {
.dwdg-who-hero__tag {
white-space: normal;
max-width: 42vw;
}
}
@media (max-width: 760px) {
.footer-sub-list li,
.footer-copy,
.footer-bottom > a { font-size: 16px; }
.footer-col-title  { font-size: 16px; }
.eyebrow { font-size: 0.66rem !important; }
.dwdg-pub-slider__dot {
position: relative;
}
.dwdg-pub-slider__dot::after {
content: '';
position: absolute;
inset: -14px;
}
}
@media (max-width: 760px) {
.insight-card .insight-more {
max-height: 36px;
margin-top: 10px;
padding: 9px 18px;
opacity: 1;
transform: none;
}
.insight-card {
aspect-ratio: 3 / 2 !important;
min-height: 220px !important;
}
}
@media (max-width: 900px) {
.work-card,
.publication-card {
grid-template-columns: 1fr !important;
}
.work-card-reverse .work-copy { order: 2 !important; }
.work-card-reverse .work-media { order: 1 !important; }
}
@media (max-width: 900px) {
.dwdg-energy-contact__photo {
position: static !important;
inset: auto !important;
left: auto !important;
right: auto !important;
top: auto !important;
bottom: auto !important;
float: none !important;
justify-self: center !important;
align-self: center !important;
margin-left: auto !important;
margin-right: auto !important;
}
.dwdg-energy-contact__photo img {
margin-left: auto !important;
margin-right: auto !important;
object-position: bottom center !important;
}
}
@media (max-width: 768px) {
.dwdg-energy-experts__photo,
.dwdg-fg-team__photo {
align-self: center;
margin-left: auto;
margin-right: auto;
}
}
@media (max-width: 900px) {
.dwdg-energy-contact__inner {
row-gap: clamp(14px, 3.5vw, 26px) !important;
}
.dwdg-energy-contact__body {
padding-bottom: clamp(6px, 1.6vw, 14px) !important;
}
.dwdg-energy-contact__photo {
height: auto !important;
min-height: 0 !important;
max-height: none !important;
aspect-ratio: auto !important;
align-items: flex-end !important;
}
.dwdg-energy-contact__photo img {
width: 100% !important;
height: auto !important;
object-fit: contain !important;
}
}
