:root {
--red: #c41212;
--red-bright: #e02b20;
--ink: #0c0c0e;
--ink-2: #131316;
--ink-3: #1b1b1f;
--paper: #f4f2ee;
--paper-2: #eceae4;
--line: rgba(12, 12, 14, 0.12);
--line-light: rgba(255, 255, 255, 0.14);
--text: #1d1d20;
--text-muted: #5c5c63;
--text-light: rgba(255, 255, 255, 0.72);
--font-display: "Archivo", sans-serif;
--font-body: "Inter", sans-serif;
--container: 1240px;
--gutter: clamp(1.25rem, 4vw, 2.5rem);
--radius: 0px;
--ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: var(--font-body);
font-size: 1.0625rem;
line-height: 1.65;
color: var(--text);
background: var(--paper);
-webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container {
max-width: var(--container);
margin-inline: auto;
padding-inline: var(--gutter);
}
h1, h2, h3 {
font-family: var(--font-display);
font-weight: 700;
line-height: 1.04;
letter-spacing: -0.025em;
text-wrap: balance;
}
h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 em, h1 em {
font-style: normal;
color: var(--red);
}
.section--dark h2 em, .cta h2 em, .hero em {
color: var(--red-bright);
}
.kicker {
font-family: var(--font-display);
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--red);
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1.1rem;
}
.kicker::before {
content: "";
width: 2.2rem;
height: 2px;
background: var(--red);
flex: none;
}
.section--dark .kicker, .cta .kicker { color: var(--red-bright); }
.section--dark .kicker::before, .cta .kicker::before { background: var(--red-bright); }
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.6rem;
font-family: var(--font-display);
font-weight: 600;
font-size: 0.95rem;
letter-spacing: 0.02em;
padding: 1rem 2rem;
min-height: 48px;
background: var(--red);
color: #fff;
border-radius: 0;
clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
cursor: pointer;
transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover {
background: var(--red-bright);
box-shadow: 0 12px 32px rgba(196, 18, 18, 0.32);
}
.btn:focus-visible, a:focus-visible, button:focus-visible {
outline: 2px solid var(--red-bright);
outline-offset: 3px;
}
.btn--ghost {
background: transparent;
border: 1px solid var(--line-light);
color: #fff;
clip-path: none;
}
.btn--ghost:hover {
background: rgba(255, 255, 255, 0.1);
box-shadow: none;
border-color: rgba(255, 255, 255, 0.4);
}
.btn--light {
background: #fff;
color: var(--ink);
}
.btn--light:hover {
background: var(--paper-2);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.btn--small { padding: 0.65rem 1.4rem; min-height: 42px; font-size: 0.875rem; }
.nav {
position: fixed;
inset: 1rem 1rem auto;
z-index: 50;
display: flex;
justify-content: center;
}
.nav__inner {
width: 100%;
max-width: calc(var(--container) - 2rem);
display: flex;
align-items: center;
gap: 2.5rem;
padding: 0.7rem 1.4rem;
border-radius: 0;
background: rgba(12, 12, 14, 0.55);
border: 1px solid var(--line-light);
border-left: 3px solid var(--red);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
transition: background 0.3s var(--ease);
}
.nav--scrolled .nav__inner { background: rgba(12, 12, 14, 0.88); }
.nav__logo img { height: 34px; width: auto; }
.nav__links {
display: flex;
gap: 2rem;
margin-left: auto;
}
.nav__links a {
font-family: var(--font-display);
font-size: 0.92rem;
font-weight: 500;
color: var(--text-light);
padding: 0.5rem 0;
position: relative;
transition: color 0.2s;
}
.nav__links a::after {
content: "";
position: absolute;
left: 0; right: 100%; bottom: 0.2rem;
height: 2px;
background: var(--red-bright);
transition: right 0.3s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { right: 0; }
.nav__burger {
display: none;
flex-direction: column;
justify-content: center;
gap: 6px;
width: 44px;
height: 44px;
background: none;
border: 0;
cursor: pointer;
}
.nav__burger span {
display: block;
width: 24px;
height: 2px;
margin-inline: auto;
background: #fff;
transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu {
position: fixed;
inset: 0;
z-index: 40;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2.5rem;
background: rgba(12, 12, 14, 0.96);
backdrop-filter: blur(20px);
opacity: 0;
visibility: hidden;
transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav {
display: flex;
flex-direction: column;
align-items: center;
gap: 1.5rem;
}
.mobile-menu nav a {
font-family: var(--font-display);
font-size: 1.8rem;
font-weight: 700;
color: #fff;
}
.hero {
position: relative;
min-height: 100svh;
display: flex;
flex-direction: column;
justify-content: flex-end;
color: #fff;
overflow: hidden;
background-color: var(--ink);
background-image:
linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
background-size: 144px 144px, 144px 144px, 24px 24px, 24px 24px;
}
.hero__blueprint {
position: absolute;
inset: 0;
}
.hero__blueprint svg {
width: 100%;
height: 100%;
display: block;
}
.hero__blueprint .thin { stroke-width: 1; opacity: 0.45; }
.hero__blueprint .dim { stroke: rgba(255, 255, 255, 0.4); stroke-width: 1; }
.hero__blueprint .red { stroke: var(--red-bright); opacity: 0.9; }
.hero__blueprint .beam { fill: var(--red); stroke: none; }
.hero__blueprint .label {
fill: rgba(255, 255, 255, 0.55);
stroke: none;
font-family: var(--font-display);
font-size: 13px;
letter-spacing: 0.22em;
opacity: 0;
animation: label-in 0.8s var(--ease) forwards;
animation-delay: calc(var(--d, 0) * 140ms + 500ms);
}
.hero__blueprint .red-label { fill: var(--red-bright); }
.hero__blueprint path.d {
stroke-dasharray: 1;
stroke-dashoffset: 1;
animation: draw 1.5s var(--ease) forwards;
animation-delay: calc(var(--d, 0) * 140ms + 250ms);
}
@keyframes draw {
to { stroke-dashoffset: 0; }
}
@keyframes label-in {
to { opacity: 1; }
}
.hero__blueprint .trolley {
animation: trolley-move 14s ease-in-out infinite alternate;
animation-delay: 3s;
}
@keyframes trolley-move {
from { transform: translateX(0); }
to { transform: translateX(-110px); }
}
.hero__blueprint .lift {
animation: lift-move 7s ease-in-out infinite alternate;
animation-delay: 3s;
}
@keyframes lift-move {
from { transform: translateY(0); }
to { transform: translateY(-180px); }
}
.hero__blueprint .cable {
transform-box: view-box;
transform-origin: 868px 212px;
animation: draw 1.5s var(--ease) forwards, cable-stretch 7s ease-in-out infinite alternate;
animation-delay: calc(var(--d, 0) * 140ms + 250ms), 3s;
}
@keyframes cable-stretch {
from { transform: scaleY(1); }
to { transform: scaleY(0.375); }
}
.hero__blueprint .beacon {
fill: var(--red-bright);
stroke: none;
animation: beacon-blink 2.4s ease-in-out infinite;
}
@keyframes beacon-blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.15; }
}
.hero__img {
position: absolute;
inset: 0;
z-index: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 30%;
}
.hero__glow {
position: absolute;
inset: 0;
z-index: 1;
pointer-events: none;
background:
radial-gradient(1000px 620px at 15% 82%, rgba(12, 12, 14, 0.92), transparent 70%),
radial-gradient(1100px 560px at 88% 5%, rgba(196, 18, 18, 0.18), transparent 62%),
linear-gradient(to bottom, rgba(12, 12, 14, 0.5) 0%, rgba(12, 12, 14, 0.12) 32%, rgba(12, 12, 14, 0.82) 100%);
}
.hero__content {
position: relative;
z-index: 2;
width: 100%;
padding-top: clamp(8rem, 18vh, 12rem);
padding-bottom: clamp(2.5rem, 6vh, 5rem);
}
.hero__title {
font-size: clamp(2.2rem, 5vw, 3.6rem);
font-weight: 700;
line-height: 1.15;
letter-spacing: -0.025em;
}
.hero__title span { display: block; }
.hero__title em {
font-style: normal;
color: transparent;
-webkit-text-stroke: 2px rgba(255, 255, 255, 0.85);
}
.hero__sub {
max-width: 34rem;
margin-top: 1.6rem;
font-size: clamp(1.05rem, 1.6vw, 1.2rem);
color: var(--text-light);
}
.hero__actions {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 2.2rem;
}
.hero__stats {
position: relative;
z-index: 2;
border-top: 1px solid var(--line-light);
background: rgba(12, 12, 14, 0.35);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}
.hero__stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
}
.hero__stat {
padding: 1.6rem 1.5rem;
border-left: 1px solid var(--line-light);
}
.hero__stat:first-child { border-left: 0; padding-left: 0; }
.hero__stat-num {
display: block;
font-family: var(--font-display);
font-size: clamp(1.7rem, 3vw, 2.5rem);
font-weight: 700;
letter-spacing: -0.02em;
color: #fff;
}
.hero__stat-label {
font-size: 0.85rem;
color: var(--text-light);
}
.marquee {
overflow: hidden;
background: var(--red);
color: #fff;
padding: 0.9rem 0;
}
.marquee__track {
display: flex;
align-items: center;
gap: 2.5rem;
width: max-content;
animation: marquee 28s linear infinite;
}
.marquee__track span {
font-family: var(--font-display);
font-weight: 600;
font-size: 1rem;
letter-spacing: 0.14em;
text-transform: uppercase;
white-space: nowrap;
}
.marquee__track i {
width: 7px;
height: 7px;
transform: rotate(45deg);
background: rgba(255, 255, 255, 0.55);
flex: none;
}
@keyframes marquee {
to { transform: translateX(-50%); }
}
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section--dark {
background:
radial-gradient(1200px 600px at 80% -10%, rgba(196, 18, 18, 0.16), transparent 60%),
var(--ink);
color: #fff;
}
.section--muted { background: var(--paper-2); }
.section__head { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--row {
max-width: none;
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 3rem;
}
.section__lead {
max-width: 24rem;
color: var(--text-light);
padding-bottom: 0.4rem;
}
.bento {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.25rem;
}
.bento__card {
position: relative;
display: flex;
flex-direction: column;
border-radius: var(--radius);
background: #fff;
border: 1px solid var(--line);
overflow: hidden;
transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.bento__card:hover {
transform: translateY(-6px);
box-shadow: 0 24px 48px rgba(12, 12, 14, 0.12);
}
.bento__card--wide {
grid-column: span 2;
min-height: 440px;
justify-content: flex-end;
color: #fff;
border: 0;
}
.bento__card--accent { grid-column: span 2; }
.bento__card--wide .bento__media,
.bento__card--wide .bento__media img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
}
.bento__card--wide .bento__media img {
object-fit: cover;
transition: transform 0.6s var(--ease);
}
.bento__card--wide:hover .bento__media img { transform: scale(1.045); }
.bento__card--wide .bento__media::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(12,12,14,0.85) 0%, rgba(12,12,14,0.15) 55%);
}
.bento__card--wide .bento__body { position: relative; flex: 0 0 auto; margin-top: auto; }
.bento__card--wide p { color: var(--text-light); max-width: 36rem; }
.bento__index {
position: absolute;
top: 1.4rem;
right: 1.6rem;
z-index: 1;
font-family: var(--font-display);
font-weight: 700;
font-size: 0.95rem;
letter-spacing: 0.1em;
color: var(--red);
}
.bento__card--wide .bento__index { color: rgba(255, 255, 255, 0.8); }
.bento__body {
padding: 1.8rem;
display: flex;
flex-direction: column;
gap: 0.8rem;
flex: 1;
}
.bento__body h3 { font-size: 1.45rem; }
.bento__body p { color: var(--text-muted); font-size: 0.98rem; }
.bento__card--wide .bento__body p { color: var(--text-light); }
.bento__icon {
width: 44px;
height: 44px;
color: var(--red);
margin-bottom: 0.4rem;
}
.bento__card--accent {
background: var(--ink);
border-color: var(--ink);
color: #fff;
}
.bento__card--accent p { color: var(--text-light); }
.bento__card--accent .bento__icon { color: var(--red-bright); }
.bento__link {
margin-top: auto;
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-family: var(--font-display);
font-weight: 600;
font-size: 0.95rem;
color: var(--red-bright);
cursor: pointer;
}
.bento__link svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.bento__link:hover svg { transform: translateX(4px); }
.showcase {
display: grid;
grid-template-columns: 1.6fr 1fr;
gap: 1.25rem;
}
.showcase__feature, .showcase__card {
position: relative;
display: block;
border-radius: var(--radius);
overflow: hidden;
cursor: pointer;
}
.showcase__feature { min-height: 560px; }
.showcase__side {
display: grid;
grid-template-rows: 1fr 1fr;
gap: 1.25rem;
}
.showcase__feature img, .showcase__card img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s var(--ease);
}
.showcase__feature:hover img, .showcase__card:hover img { transform: scale(1.045); }
.showcase__overlay {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
gap: 0.35rem;
padding: 1.8rem;
background: linear-gradient(to top, rgba(12,12,14,0.88) 0%, rgba(12,12,14,0.1) 55%);
}
.showcase__overlay h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); color: #fff; }
.showcase__meta {
font-size: 0.85rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text-light);
}
.showcase__cta {
display: inline-flex;
align-items: center;
gap: 0.5rem;
margin-top: 0.8rem;
font-family: var(--font-display);
font-weight: 600;
font-size: 0.95rem;
color: var(--red-bright);
}
.showcase__cta svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.showcase__feature:hover .showcase__cta svg { transform: translateX(4px); }
.strip {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 1.25rem;
margin-top: 1.25rem;
}
.strip__card {
position: relative;
aspect-ratio: 4 / 5;
border-radius: var(--radius);
overflow: hidden;
cursor: pointer;
}
.strip__card img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s var(--ease);
}
.strip__card:hover img { transform: scale(1.06); }
.strip__card > span {
position: absolute;
inset: auto 0 0;
padding: 1rem 1.1rem;
font-family: var(--font-display);
font-weight: 600;
font-size: 0.95rem;
color: #fff;
background: linear-gradient(to top, rgba(12,12,14,0.85), transparent);
}
.strip__card--more {
display: flex;
align-items: center;
justify-content: center;
background: var(--ink-3);
border: 1px solid var(--line-light);
transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.strip__card--more:hover { background: var(--red); border-color: var(--red); }
.strip__card--more > span {
position: static;
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: none;
padding: 0;
font-size: 1.05rem;
}
.strip__card--more svg { width: 20px; height: 20px; }
.about {
display: grid;
grid-template-columns: 1fr 1.1fr;
gap: clamp(2.5rem, 6vw, 5rem);
align-items: center;
}
.about__media { position: relative; }
.about__media > img {
border-radius: var(--radius);
aspect-ratio: 4 / 5;
width: 100%;
object-fit: cover;
}
.about__badge {
position: absolute;
bottom: -1.5rem;
right: -1rem;
background: var(--ink);
color: #fff;
border-radius: var(--radius);
padding: 1.4rem 1.8rem;
box-shadow: 0 24px 48px rgba(12, 12, 14, 0.3);
}
.about__badge-num {
display: block;
font-family: var(--font-display);
font-size: 2.4rem;
font-weight: 800;
color: var(--red-bright);
line-height: 1;
}
.about__badge figcaption { font-size: 0.85rem; color: var(--text-light); }
.about__body > p { color: var(--text-muted); margin-top: 1.2rem; max-width: 36rem; }
.about__points {
list-style: none;
margin: 1.8rem 0 2.2rem;
display: grid;
gap: 1.2rem;
}
.about__points li { display: flex; gap: 1rem; }
.about__points svg {
flex: none;
width: 26px;
height: 26px;
padding: 4px;
color: #fff;
background: var(--red);
margin-top: 0.2rem;
}
.about__points strong {
display: block;
font-family: var(--font-display);
font-size: 1.05rem;
}
.about__points span { color: var(--text-muted); font-size: 0.95rem; }
.process {
list-style: none;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.25rem;
counter-reset: step;
}
.process__step {
position: relative;
background: #fff;
border: 1px solid var(--line);
border-radius: var(--radius);
padding: 2rem 1.6rem 1.8rem;
transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.process__step:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(12, 12, 14, 0.1);
}
.process__num {
display: block;
font-family: var(--font-display);
font-size: 2.6rem;
font-weight: 800;
line-height: 1;
color: transparent;
-webkit-text-stroke: 1.5px var(--red);
margin-bottom: 1.1rem;
}
.process__step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.process__step p { font-size: 0.93rem; color: var(--text-muted); }
.cta {
position: relative;
padding: clamp(5rem, 11vw, 9rem) 0;
color: #fff;
overflow: hidden;
background: var(--ink);
text-align: center;
}
.cta__media, .cta__media img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
}
.cta__media img { object-fit: cover; opacity: 0.22; }
.cta__media::after {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(800px 400px at 50% 110%, rgba(196, 18, 18, 0.28), transparent 70%);
}
.cta__inner { position: relative; }
.cta .kicker { justify-content: center; }
.cta .kicker::before { display: none; }
.cta__sub { color: var(--text-light); margin-top: 1.2rem; }
.cta__actions {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
margin-top: 2.4rem;
}
.footer {
background: var(--ink);
color: var(--text-light);
border-top: 1px solid var(--line-light);
}
.footer__grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
gap: 2.5rem;
padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer__brand img { height: 38px; width: auto; margin-bottom: 1.1rem; }
.footer__brand p { font-size: 0.95rem; max-width: 22rem; }
.footer__col h3 {
font-family: var(--font-display);
font-size: 0.85rem;
font-weight: 600;
letter-spacing: 0.18em;
text-transform: uppercase;
color: #fff;
margin-bottom: 1.1rem;
}
.footer__col a {
display: block;
padding: 0.25rem 0;
font-size: 0.95rem;
transition: color 0.2s;
}
.footer__col a:hover { color: #fff; }
.footer__col p { font-size: 0.95rem; margin-bottom: 0.8rem; }
.footer__bottom {
border-top: 1px solid var(--line-light);
padding-block: 1.4rem;
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.45);
}
.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
opacity: 1;
transform: none;
}
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
.reveal { opacity: 1; transform: none; transition: none; }
.marquee__track { animation: none; flex-wrap: wrap; width: auto; }
.hero__blueprint path.d, .hero__blueprint .cable { stroke-dashoffset: 0; animation: none; }
.hero__blueprint .label { opacity: 1; animation: none; }
.hero__blueprint .trolley, .hero__blueprint .lift, .hero__blueprint .beacon { animation: none; }
*, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
@media (max-width: 1024px) {
.bento { grid-template-columns: 1fr 1fr; }
.bento__card--wide { grid-column: span 2; min-height: 400px; }
.bento__card--accent { grid-column: span 2; }
.strip { grid-template-columns: repeat(3, 1fr); }
.strip__card:nth-child(4) { display: none; }
.process { grid-template-columns: 1fr 1fr; }
.footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
.nav__links, .nav__cta { display: none; }
.nav__burger { display: flex; }
.hero__stats-grid { grid-template-columns: 1fr 1fr; }
.hero__stat { padding: 1.2rem 1rem; }
.hero__stat:nth-child(odd) { border-left: 0; padding-left: 0; }
.hero__stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
.section__head--row { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
.showcase { grid-template-columns: 1fr; }
.showcase__feature { min-height: 420px; }
.showcase__side { grid-template-rows: none; }
.showcase__card { min-height: 280px; }
.about { grid-template-columns: 1fr; }
.about__badge { right: 1rem; }
}
@media (max-width: 560px) {
.bento { grid-template-columns: 1fr; }
.bento__card--wide, .bento__card--accent { grid-column: auto; }
.strip { grid-template-columns: 1fr 1fr; }
.strip__card:nth-child(3) { display: none; }
.strip__card--more { grid-column: span 2; aspect-ratio: auto; min-height: 110px; }
.process { grid-template-columns: 1fr; }
.footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}
.nav__links a[aria-current="page"] { color: #fff; }
.nav__links a[aria-current="page"]::after { right: 0; }
.mobile-menu nav a[aria-current="page"] { color: var(--red-bright); }
.subhead {
position: relative;
color: #fff;
overflow: hidden;
padding: clamp(9rem, 20vh, 13rem) 0 clamp(3rem, 7vw, 5.5rem);
background-color: var(--ink);
background-image:
linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
background-size: 144px 144px, 144px 144px, 24px 24px, 24px 24px;
}
.subhead::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
background:
radial-gradient(900px 460px at 12% 20%, rgba(12, 12, 14, 0.85), transparent 70%),
radial-gradient(1100px 520px at 88% 0%, rgba(196, 18, 18, 0.16), transparent 65%);
}
.subhead .container { position: relative; z-index: 1; }
.subhead h1 {
font-size: clamp(2.2rem, 5vw, 3.6rem);
font-weight: 700;
line-height: 1.1;
letter-spacing: -0.025em;
}
.subhead h1 em { font-style: normal; color: var(--red-bright); -webkit-text-stroke: 0; }
.subhead__lead {
max-width: 42rem;
margin-top: 1.5rem;
font-size: clamp(1.05rem, 1.6vw, 1.2rem);
color: var(--text-light);
}
.crumbs {
position: relative;
z-index: 1;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;
margin-bottom: 1.6rem;
font-family: var(--font-display);
font-size: 0.8rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text-light);
}
.crumbs a { color: var(--text-light); transition: color 0.2s; }
.crumbs a:hover { color: #fff; }
.crumbs span[aria-current] { color: var(--red-bright); }
.crumbs i { color: rgba(255, 255, 255, 0.35); font-style: normal; }
.feature {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(2rem, 5vw, 4.5rem);
align-items: center;
padding: clamp(2.8rem, 6vw, 5rem) 0;
border-bottom: 1px solid var(--line);
}
.feature:first-child { padding-top: 0; }
.feature:last-child { border-bottom: 0; }
.feature--reverse .feature__media { order: 2; }
.feature__media { position: relative; }
.feature__media img {
width: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
border-radius: var(--radius);
}
.feature__num {
display: block;
font-family: var(--font-display);
font-size: 2.6rem;
font-weight: 800;
line-height: 1;
color: transparent;
-webkit-text-stroke: 1.5px var(--red);
margin-bottom: 1rem;
}
.feature__body h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 0.6rem; }
.feature__intro {
font-family: var(--font-display);
font-weight: 600;
font-size: 1.1rem;
color: var(--text);
margin-bottom: 1.1rem;
}
.feature__body p { color: var(--text-muted); margin-bottom: 0.9rem; }
.feature__tags {
list-style: none;
display: flex;
flex-wrap: wrap;
gap: 0.55rem;
margin-top: 1.4rem;
}
.feature__tags li {
font-family: var(--font-display);
font-size: 0.78rem;
font-weight: 500;
letter-spacing: 0.06em;
text-transform: uppercase;
padding: 0.45rem 0.9rem;
border: 1px solid var(--line);
color: var(--text-muted);
}
.filterbar {
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
margin-bottom: clamp(2rem, 4vw, 3rem);
}
.filterbar button {
font-family: var(--font-display);
font-weight: 600;
font-size: 0.9rem;
letter-spacing: 0.02em;
padding: 0.65rem 1.35rem;
min-height: 44px;
background: #fff;
color: var(--text);
border: 1px solid var(--line);
cursor: pointer;
transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.filterbar button:hover { border-color: var(--red); color: var(--red); }
.filterbar button.is-active {
background: var(--ink);
color: #fff;
border-color: var(--ink);
}
.projects {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.25rem;
}
.project-card {
position: relative;
display: block;
aspect-ratio: 4 / 3;
overflow: hidden;
border-radius: var(--radius);
background: var(--ink-3);
}
.project-card.is-hidden { display: none; }
.project-card img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.55s var(--ease);
}
.project-card:hover img { transform: scale(1.06); }
.project-card__overlay {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
gap: 0.3rem;
padding: 1.5rem;
background: linear-gradient(to top, rgba(12, 12, 14, 0.92) 0%, rgba(12, 12, 14, 0.1) 62%);
}
.project-card__meta {
font-family: var(--font-display);
font-size: 0.76rem;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text-light);
}
.project-card__overlay h3 { font-size: 1.3rem; color: #fff; }
.project-card__overlay p {
font-size: 0.9rem;
color: var(--text-light);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.project-card__badge {
position: absolute;
top: 1rem;
left: 1rem;
z-index: 1;
font-family: var(--font-display);
font-size: 0.7rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 0.35rem 0.7rem;
color: #fff;
}
.badge--im-bau { background: var(--red); }
.badge--fertig { background: rgba(12, 12, 14, 0.78); border: 1px solid rgba(255, 255, 255, 0.18); }
.badge--planung { background: #1f6b4d; }
.team {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.25rem;
}
.team__card {
background: #fff;
border: 1px solid var(--line);
padding-bottom: 1.5rem;
transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.team__card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(12, 12, 14, 0.1); }
.team__photo {
aspect-ratio: 1;
overflow: hidden;
background: var(--ink-3);
margin-bottom: 1.2rem;
}
.team__photo img {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(1);
transition: filter 0.4s var(--ease), transform 0.5s var(--ease);
}
.team__card:hover .team__photo img { filter: grayscale(0); transform: scale(1.03); }
.team__photo--ph {
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-display);
font-size: 2.4rem;
font-weight: 800;
color: rgba(255, 255, 255, 0.65);
background: var(--ink-3);
}
.team__card h3 { font-size: 1.2rem; padding: 0 1.4rem; }
.team__role {
font-family: var(--font-display);
font-weight: 600;
font-size: 0.82rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--red);
padding: 0.3rem 1.4rem 0;
}
.team__mail { padding: 0.5rem 1.4rem 0; font-size: 0.92rem; }
.team__mail a { color: var(--text-muted); transition: color 0.2s; }
.team__mail a:hover { color: var(--red); }
.metrics { background: var(--ink); color: #fff; }
.metrics__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
padding-block: clamp(3rem, 6vw, 4.5rem);
}
.metrics__item { padding: 0 1.5rem; border-left: 1px solid var(--line-light); }
.metrics__item:first-child { border-left: 0; padding-left: 0; }
.metrics__num {
display: block;
font-family: var(--font-display);
font-size: clamp(2.4rem, 5vw, 3.6rem);
font-weight: 800;
letter-spacing: -0.02em;
color: #fff;
}
.metrics__num em { font-style: normal; color: var(--red-bright); }
.metrics__label { color: var(--text-light); font-size: 0.95rem; }
.contact {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: clamp(2rem, 5vw, 4rem);
align-items: start;
}
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form__field { display: grid; gap: 0.45rem; }
.form label {
font-family: var(--font-display);
font-size: 0.82rem;
font-weight: 600;
letter-spacing: 0.04em;
}
.form input, .form select, .form textarea {
width: 100%;
padding: 0.95rem 1.1rem;
font: inherit;
color: var(--text);
background: #fff;
border: 1px solid var(--line);
border-radius: 0;
transition: border-color 0.2s, box-shadow 0.2s;
}
.form textarea { resize: vertical; min-height: 140px; }
.form input:focus, .form select:focus, .form textarea:focus {
outline: none;
border-color: var(--red);
box-shadow: 0 0 0 3px rgba(196, 18, 18, 0.12);
}
.form button { justify-self: start; margin-top: 0.4rem; }
.toast {
margin-top: 1rem;
padding: 0.9rem 1.2rem;
background: #1f6b4d;
color: #fff;
font-size: 0.95rem;
opacity: 0;
transform: translateY(8px);
transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
pointer-events: none;
}
.toast.is-visible { opacity: 1; transform: none; }
.contact__card { background: var(--ink); color: #fff; padding: clamp(1.8rem, 4vw, 2.6rem); }
.contact__card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.contact__row {
display: flex;
gap: 1rem;
padding: 1.1rem 0;
border-bottom: 1px solid var(--line-light);
}
.contact__row:last-child { border-bottom: 0; }
.contact__row svg { width: 22px; height: 22px; color: var(--red-bright); flex: none; margin-top: 0.15rem; }
.contact__row p { color: var(--text-light); font-size: 0.97rem; }
.contact__row a { color: var(--text-light); transition: color 0.2s; }
.contact__row a:hover { color: #fff; }
.phero {
position: relative;
min-height: 70vh;
display: flex;
align-items: flex-end;
color: #fff;
overflow: hidden;
background: var(--ink);
}
.phero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phero::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(12, 12, 14, 0.92) 0%, rgba(12, 12, 14, 0.25) 55%, rgba(12, 12, 14, 0.55) 100%);
}
.phero__content { position: relative; z-index: 1; width: 100%; padding-bottom: clamp(2.5rem, 6vw, 4.5rem); padding-top: 9rem; }
.phero__content h1 {
font-size: clamp(2.2rem, 5vw, 3.6rem);
font-weight: 700;
line-height: 1.1;
letter-spacing: -0.025em;
}
.phero__sub { max-width: 40rem; margin-top: 1.2rem; color: var(--text-light); font-size: clamp(1.02rem, 1.5vw, 1.15rem); }
.pdetail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.pfacts h2 { font-size: 1.6rem; margin-bottom: 1.2rem; }
.pfacts ul { list-style: none; display: grid; gap: 0.8rem; }
.pfacts li { display: flex; gap: 0.8rem; color: var(--text-muted); }
.pfacts li svg { width: 22px; height: 22px; color: var(--red); flex: none; }
.pmeta { border-top: 1px solid var(--line); }
.pmeta__row {
display: grid;
grid-template-columns: 9rem 1fr;
gap: 1rem;
padding: 0.95rem 0;
border-bottom: 1px solid var(--line);
}
.pmeta__label {
font-family: var(--font-display);
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text-muted);
}
.pmeta__value { font-weight: 500; }
.pgallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pgallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 1024px) {
.projects { grid-template-columns: 1fr 1fr; }
.team { grid-template-columns: 1fr 1fr; }
.pgallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
.feature { grid-template-columns: 1fr; gap: 1.6rem; }
.feature--reverse .feature__media { order: 0; }
.contact { grid-template-columns: 1fr; }
.pdetail { grid-template-columns: 1fr; }
.metrics__grid { grid-template-columns: 1fr; gap: 1.6rem; }
.metrics__item { border-left: 0; padding-left: 0; }
.phero { min-height: 60vh; }
}
@media (max-width: 560px) {
.projects { grid-template-columns: 1fr; }
.team { grid-template-columns: 1fr 1fr; }
.form__row { grid-template-columns: 1fr; }
.pgallery { grid-template-columns: 1fr 1fr; }
.pmeta__row { grid-template-columns: 1fr; gap: 0.2rem; }
}
.showcase-grid {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 1.25rem;
}
.showcase-tile {
position: relative;
display: block;
overflow: hidden;
border-radius: var(--radius);
background: var(--ink-3);
min-height: 380px;
}
.showcase-tile.is-hidden { display: none; }
.showcase-tile.tile-large { grid-column: span 4; min-height: 500px; }
.showcase-tile.tile-small { grid-column: span 2; min-height: 500px; }
.showcase-tile.tile-half  { grid-column: span 3; min-height: 420px; }
.showcase-tile img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.55s var(--ease);
}
.showcase-tile:hover img { transform: scale(1.06); }
.showcase-overlay {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 1.8rem;
background: linear-gradient(to top, rgba(12,12,14,0.92) 0%, rgba(12,12,14,0.35) 45%, rgba(12,12,14,0.05) 100%);
color: #fff;
}
.showcase-eyebrow {
font-family: var(--font-display);
font-size: 0.76rem;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text-light);
margin-bottom: 0.5rem;
}
.showcase-overlay h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); margin-bottom: 0.45rem; color: #fff; }
.showcase-overlay p {
font-size: 0.92rem;
color: var(--text-light);
line-height: 1.55;
margin-bottom: 0.9rem;
max-width: 95%;
}
.showcase-cta {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-family: var(--font-display);
font-weight: 600;
font-size: 0.92rem;
color: var(--red-bright);
}
.showcase-cta svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.showcase-tile:hover .showcase-cta svg { transform: translateX(4px); }
.showcase-badge {
position: absolute;
top: 1rem;
left: 1rem;
z-index: 1;
font-family: var(--font-display);
font-size: 0.7rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 0.35rem 0.7rem;
color: #fff;
}
.showcase-badge.badge-im-bau { background: var(--red); }
.showcase-badge.badge-fertiggestellt { background: rgba(12, 12, 14, 0.78); border: 1px solid rgba(255, 255, 255, 0.18); }
.showcase-badge.badge-in-planung { background: #1f6b4d; }
@media (max-width: 880px) {
.showcase-grid { grid-template-columns: 1fr; }
.showcase-tile, .showcase-tile.tile-large, .showcase-tile.tile-small, .showcase-tile.tile-half {
grid-column: span 1;
min-height: 320px;
}
.showcase-overlay { padding: 1.5rem; }
}
.project-intro {
font-size: 1.12rem;
line-height: 1.75;
max-width: 60rem;
margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.project-text { max-width: 50rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.project-text h2 { font-size: 1.45rem; margin: 2.2rem 0 0.9rem; }
.project-text p { color: var(--text-muted); margin-bottom: 1.1rem; }
.project-text a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.project-text a:hover { color: var(--red-bright); }
.prose { max-width: 50rem; }
.prose h2 { font-size: 1.5rem; margin: 2.4rem 0 0.9rem; }
.prose h3 { font-size: 1.15rem; margin: 1.8rem 0 0.6rem; }
.prose p, .prose li { color: var(--text-muted); margin-bottom: 0.9rem; }
.prose ul { padding-left: 1.2rem; }
.prose a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.pgallery img {
height: auto;
cursor: zoom-in;
}
.lightbox {
position: fixed;
inset: 0;
z-index: 100;
display: flex;
align-items: center;
justify-content: center;
background: rgba(12, 12, 14, 0.95);
opacity: 0;
visibility: hidden;
transition: opacity 0.25s var(--ease), visibility 0.25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
max-width: min(92vw, 1600px);
max-height: 84vh;
width: auto;
height: auto;
box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}
.lightbox__caption {
position: absolute;
bottom: 1.4rem;
left: 50%;
transform: translateX(-50%);
max-width: 80vw;
text-align: center;
font-size: 0.9rem;
color: var(--text-light);
}
.lightbox button {
position: absolute;
display: flex;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid var(--line-light);
color: #fff;
cursor: pointer;
transition: background 0.2s var(--ease);
}
.lightbox button:hover { background: var(--red); border-color: var(--red); }
.lightbox button svg { width: 22px; height: 22px; }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) {
.lightbox__prev { left: 0.4rem; }
.lightbox__next { right: 0.4rem; }
.lightbox img { max-width: 96vw; }
}