:root {
    --bg: #0b0f12;
    --bg-soft: #151b20;
    --text: #101418;
    --muted: #5f6b74;
    --white: #ffffff;
    --line: rgba(255,255,255,.16);
    --green: #a6d51f;
    --green-dark: #78a90c;
    --blue: #03a5df;
    --card: #ffffff;
    --radius: 24px;
    --shadow: 0 24px 70px rgba(0,0,0,.16);
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #f4f6f7;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}
.section-pad { padding: 82px 0; }

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 46px);
    background: rgba(11, 15, 18, .76);
    color: var(--white);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.brand img { width: 118px; height: auto; }
.brand span { color: var(--green); font-size: .84rem; }
.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: .93rem;
}
.main-nav a,
.header-cta {
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.main-nav a:hover { color: var(--green); }
.header-cta {
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    font-weight: 700;
}
.header-cta:hover {
    background: var(--green);
    border-color: var(--green);
    color: #101418;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    place-items: center start;
    overflow: hidden;
    background: #0b0f12;
    color: var(--white);
}
.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}
.hero-media {
    background-image: url('assets/hero-road.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}
.hero-overlay {
    background: linear-gradient(90deg, rgba(6,9,11,.92), rgba(6,9,11,.62) 44%, rgba(6,9,11,.14)),
                linear-gradient(0deg, rgba(6,9,11,.82), rgba(6,9,11,0) 45%);
}
.hero-content {
    position: relative;
    width: min(720px, calc(100% - 40px));
    margin-left: clamp(20px, 8vw, 120px);
    padding-top: 76px;
}
.eyebrow {
    margin: 0 0 14px;
    color: var(--green);
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: .78rem;
}
.eyebrow.dark { color: var(--green-dark); }
h1, h2, h3, p { margin-top: 0; }
h1 {
    font-size: clamp(2.8rem, 7vw, 6.4rem);
    line-height: .94;
    letter-spacing: -.06em;
    max-width: 820px;
    margin-bottom: 24px;
}
h2 {
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1;
    letter-spacing: -.045em;
    margin-bottom: 18px;
}
h3 {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 10px;
}
.lead {
    max-width: 620px;
    color: rgba(255,255,255,.82);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}
.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: linear-gradient(135deg, var(--green), #d6f75b);
    color: #0e1418;
}
.btn-secondary {
    border-color: rgba(255,255,255,.34);
    color: var(--white);
    background: rgba(255,255,255,.08);
}
.btn-secondary.light {
    color: var(--text);
    border-color: rgba(0,0,0,.14);
    background: rgba(255,255,255,.8);
}

.intro {
    background: #fff;
}
.intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(28px, 6vw, 90px);
    align-items: end;
}
.intro-grid p:last-child {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: var(--muted);
    margin-bottom: 0;
}

.services {
    background: #eef2f3;
}
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}
.section-head.centered {
    display: block;
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.service-card,
.team-card,
.contact-card,
.strip-grid article {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.service-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}
.card-body { padding: 24px; }
.card-body p,
.team-card p,
.strip-grid p,
.contact-card p,
.small-note {
    color: var(--muted);
    margin-bottom: 0;
}

.workshop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
    background: var(--bg);
    color: var(--white);
}
.workshop-image {
    background: url('assets/werkstatt.jpg') center / cover no-repeat;
    min-height: 420px;
}
.workshop-content {
    padding: clamp(42px, 7vw, 96px);
    align-self: center;
}
.workshop-content p:not(.eyebrow) {
    color: rgba(255,255,255,.75);
    max-width: 640px;
}
.check-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.check-list span {
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.88);
    font-size: .92rem;
}

.feature-strip {
    background: #fff;
}
.strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.strip-grid article {
    padding: 20px;
}
.strip-grid img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 20px;
}

.team {
    background: #0e1418;
    color: var(--white);
}
.team .section-head h2 { color: var(--white); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
    gap: 22px;
}
.team-card {
    padding: 26px;
    text-align: center;
    background: #151d22;
    box-shadow: 0 20px 60px rgba(0,0,0,.34);
}
.team-card img {
    width: 154px;
    height: 154px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid rgba(166,213,31,.4);
}
.team-card p { color: rgba(255,255,255,.7); }

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.gallery img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.contact {
    background: linear-gradient(135deg, #eef2f3, #fff);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.25fr .85fr .85fr;
    gap: 20px;
    align-items: stretch;
}
.contact-card {
    padding: clamp(24px, 4vw, 38px);
}
.main-contact {
    background: #10171b;
    color: var(--white);
}
.main-contact p:not(.eyebrow) { color: rgba(255,255,255,.76); }
.info-card { background: #fff; }
.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: none;
}
.text-link:hover { text-decoration: underline; }
dl { margin: 0; }
dl div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
}
dt { font-weight: 800; }
dd { margin: 0; color: var(--muted); text-align: right; }
.small-note { font-size: .9rem; margin-top: 14px; }

.site-footer {
    background: #0b0f12;
    color: rgba(255,255,255,.72);
    padding: 28px 0;
}
.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.footer-logo { width: 122px; margin-bottom: 8px; }
.site-footer p { margin-bottom: 0; }
.site-footer a {
    color: var(--white);
    text-decoration: none;
}
.site-footer a:hover { color: var(--green); }

@media (max-width: 980px) {
    .main-nav { display: none; }
    .hero { min-height: 760px; }
    .hero-content { margin-left: 24px; }
    .intro-grid,
    .workshop,
    .contact-grid { grid-template-columns: 1fr; }
    .card-grid,
    .strip-grid { grid-template-columns: 1fr 1fr; }
    .gallery { grid-template-columns: 1fr 1fr; }
    .workshop-content { padding: 46px 28px; }
}

@media (max-width: 640px) {
    .site-header { padding: 12px 16px; }
    .brand img { width: 94px; }
    .brand span { display: none; }
    .header-cta { padding: 9px 12px; font-size: .9rem; }
    .container { width: min(100% - 28px, var(--container)); }
    .section-pad { padding: 56px 0; }
    .hero { min-height: 720px; }
    .hero-overlay {
        background: linear-gradient(0deg, rgba(6,9,11,.92), rgba(6,9,11,.46));
    }
    .hero-content { margin: 0 auto; }
    h1 { font-size: clamp(2.6rem, 18vw, 4rem); }
    .card-grid,
    .strip-grid,
    .team-grid { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; }
    .gallery img { height: 240px; }
    .footer-grid { align-items: flex-start; flex-direction: column; }
    .btn { width: 100%; }
}
