/*
|--------------------------------------------------------------------------
| OutdoorReh – Stylesheet
|--------------------------------------------------------------------------
| Aufbau:
|   1. Variablen & Basis
|   2. Header & Navigation
|   3. Hero (Startseite)
|   4. Buttons
|   5. Inhaltsseiten
|   6. Rechtliche Seiten / Karten
|   7. FAQ
|   8. Kontakt
|   9. Partner
|  10. Footer
|  11. Projekte
|  12. Equipment
|  13. Responsive
*/

/* 1. Variablen & Basis
-------------------------------------------------------------------------- */

:root {
    --bg: #2e3620;
    --bg-soft: #353e26;
    --footer: #232b16;
    --footer-dark: #1a2110;
    --accent: #b3a755;
    --accent-soft: #5f5c2d;
    --accent-soft-hover: #6f6b35;
    --text: #ece5c4;
    --muted: #cfc9a6;
    --line: rgba(236, 229, 196, 0.16);
    --shadow: rgba(0, 0, 0, 0.35);
    --max-width: 1360px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.unterschrift {
    font-family: "Herr Von Muellerhoff", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    line-height: 1;
    color: var(--text);
    margin-top: 28px;
    margin-bottom: 4px;
    display: block;
}

/* 2. Header & Navigation
-------------------------------------------------------------------------- */

.site-header {
    background: #242c17;
    box-shadow: 0 5px 18px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 5px solid var(--line);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    min-height: 76px;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 650;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.brand-badge {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--text);
}

.brand-text {
    font-size: 20px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 17px;
    font-weight: 500;
}

.nav-link {
    text-decoration: none;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    cursor: pointer;
    opacity: 0.9;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--accent);
    opacity: 1;
}

.nav-dropdown {
    position: relative;
}

.dropdown-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 230px;
    padding: 10px;
    background: #242c17;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 14px 28px var(--shadow);
    display: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
}

.dropdown-menu a:hover {
    background: var(--footer);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.nav-toggle {
    display: none;
    border: 0;
    background: var(--accent-soft);
    color: var(--text);
    width: 42px;
    height: 42px;
    border-radius: 9px;
}

/* 3. Hero (Startseite)
-------------------------------------------------------------------------- */

.hero-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 58px 60px 40px;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 780px) minmax(360px, 1fr);
    align-items: center;
    gap: 48px;
}

.text-column h1,
.content-section h1,
.page-header h1 {
    margin: 0 0 22px;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.12;
    font-weight: 650;
    letter-spacing: -0.04em;
}

.headline-icon {
    color: var(--accent);
    margin-right: 10px;
}

.hero-pull-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.5;
    color: var(--accent);
    border-left: 3px solid var(--accent);
    padding: 4px 0 4px 18px;
    margin: 0 0 32px 0;
    max-width: 580px;
    opacity: 0.92;
}

.text-column p {
    max-width: 85ch;
    margin: 0;
    font-size: 16.5px;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(236, 229, 196, 0.9);
}

.text-column p + p {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(236, 229, 196, 0.08);
}

.text-column p:first-of-type::first-letter {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4em;
    font-weight: 600;
    line-height: 0.78;
    float: left;
    margin-right: 7px;
    margin-top: 5px;
    color: var(--accent);
}

.text-column .hl {
    color: var(--text);
    font-weight: 500;
}

.hero-stats {
    display: flex;
    margin: 0;
    border-top: none;
    border-bottom: none;
    padding: 16px 0;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-right: 28px;
    margin-right: 28px;
    border-right: 1px solid var(--line);
}

.hero-stat:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.hero-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(236, 229, 196, 0.5);
    font-weight: 400;
}

.visual-column {
    text-align: center;
}

.legal-company-logo-home img {
    width: 350px;
}

.claim {
    display: inline-block;
    margin: 0;
    color: var(--text);
    font-size: 19px;
    font-weight: 400;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 5px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
    margin-top: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-buttons .button {
    margin-top: 0;
}

.social-row {
    display: flex;
    gap: 5px;
}

.social-row a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    font-size: 35px;
    transition: transform .2s ease, opacity .2s ease;
}

.social-row a:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

/* 4. Buttons
-------------------------------------------------------------------------- */

.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 18px;
    background: var(--accent-soft);
    color: var(--text);
    text-decoration: none;
    border: 0;
    border-radius: 9px;
    font: inherit;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.button:hover {
    background: var(--accent-soft-hover);
    transform: translateY(-1px);
}

.button-outline {
    background: transparent;
    border: 1px solid var(--accent-soft);
}

.button-outline:hover {
    background: var(--accent-soft);
    transform: translateY(-1px);
}

/* 5. Inhaltsseiten
-------------------------------------------------------------------------- */

.content-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 70px 60px;
    min-height: 55vh;
}

.content-section h1 {
    color: var(--text);
}

/* 6. Rechtliche Seiten / Karten
-------------------------------------------------------------------------- */

.legal-page {
    max-width: 1100px;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 34px;
}

.page-header h1 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-subtitle {
    margin: 0;
    color: rgba(236, 229, 196, 0.68);
    font-size: 16px;
    font-weight: 400;
}

.legal-card {
    background: rgba(236, 229, 196, 0.04);
    border: 1px solid rgba(236, 229, 196, 0.1);
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 24px;
}

.legal-card h2 {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.legal-card h3 {
    margin: 30px 0 12px;
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
}

.legal-card p {
    margin: 0 0 16px;
    line-height: 1.8;
    font-size: 15.5px;
    font-weight: 400;
    color: rgba(236, 229, 196, 0.88);
}

.legal-card a {
    color: var(--accent);
    text-decoration: none;
}

.legal-card a:hover {
    text-decoration: underline;
}

.legal-notice {
    margin-top: 20px;
    padding: 15px 16px;
    border-left: 4px solid var(--accent);
    background: rgba(236, 229, 196, 0.05);
    border-radius: 8px;
    color: rgba(236, 229, 196, 0.92);
}

.legal-list {
    margin: 1rem 0 1.5rem;
    padding-left: 1.4rem;
}

.legal-list li {
    margin-bottom: .5rem;
    line-height: 1.7;
    font-size: 15.5px;
    font-weight: 400;
    color: rgba(236, 229, 196, 0.88);
}

.legal-company {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.legal-company-info {
    flex: 1;
}

.legal-company-logo img {
    width: 250px;
    display: block;
}

/* 7. FAQ
-------------------------------------------------------------------------- */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
    max-width: 100%;
}

.faq-list details {
    background: rgba(236, 229, 196, 0.04);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    transition: border-color .25s ease, background .25s ease;
}

.faq-list details:hover,
.faq-list details[open] {
    border-color: rgba(179, 167, 85, 0.55);
    background: rgba(236, 229, 196, 0.06);
}

.faq-list summary {
    padding: 18px 22px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    user-select: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    color: var(--accent);
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: 0;
    padding: 0 22px 20px;
    font-size: 15.5px;
    line-height: 1.8;
    color: rgba(236, 229, 196, 0.88);
}

/* 8. Kontakt
-------------------------------------------------------------------------- */

.contact-intro {
    width: 100%;
    max-width: none;
    margin-bottom: 28px;
    color: rgba(236, 229, 196, 0.88);
}

.contact-intro p {
    margin: 0;
    line-height: 1.8;
    font-size: 15.5px;
}

.contact-form {
    width: 100%;
    max-width: none;
    background: rgba(236, 229, 196, 0.04);
    border: 1px solid rgba(236, 229, 196, 0.1);
    border-radius: 14px;
    padding: 30px;
    margin-top: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    background: rgba(236, 229, 196, 0.05);
    border: 1px solid var(--line);
    border-radius: 9px;
    color: var(--text);
    font: inherit;
    font-size: 15.5px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(236, 229, 196, 0.45);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(236, 229, 196, 0.07);
}

.form-group textarea {
    resize: vertical;
    min-height: 170px;
}

.contact-form .button {
    margin-top: 8px;
}

.form-message {
    max-width: 850px;
    margin: 24px 0;
    padding: 15px 16px;
    border-left: 4px solid var(--accent);
    background: rgba(236, 229, 196, 0.05);
    border-radius: 8px;
    color: rgba(236, 229, 196, 0.92);
}

.form-message.success {
    border-left-color: var(--accent);
}

.form-message.error {
    border-left-color: #a94442;
}

/* 9. Partner
-------------------------------------------------------------------------- */

.partner-intro {
    max-width: 100%;
    margin-bottom: 32px;
}

.partner-intro p {
    margin: 0;
    line-height: 1.8;
    font-size: 15.5px;
    color: rgba(236, 229, 196, 0.88);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 48px;
}

.partner-card {
    display: block;
    padding: 26px;
    background: rgba(236, 229, 196, 0.04);
    border: 1px solid var(--line);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.partner-card:hover {
    border-color: rgba(179, 167, 85, 0.55);
    background: rgba(236, 229, 196, 0.06);
    transform: translateY(-3px);
}

.partner-logo {
    height: 70px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.partner-logo img {
    max-height: 100%;
    max-width: 160px;
    object-fit: contain;
}

.partner-card h2 {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.partner-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(236, 229, 196, 0.85);
}

.partner-empty {
    margin-bottom: 48px;
    padding: 36px 24px;
    text-align: center;
    border: 1px dashed rgba(236, 229, 196, 0.25);
    border-radius: 14px;
    color: rgba(236, 229, 196, 0.8);
}

.partner-empty i {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.partner-empty p {
    margin: 0;
    font-size: 15.5px;
}

.partner-cta {
    background: rgba(236, 229, 196, 0.04);
    border: 1px solid rgba(236, 229, 196, 0.1);
    border-radius: 14px;
    padding: 36px 30px;
    text-align: center;
}

.partner-cta h2 {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.partner-cta p {
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 15.5px;
    color: rgba(236, 229, 196, 0.88);
}

/* 10. Footer
-------------------------------------------------------------------------- */

.site-footer {
    background: var(--footer);
    color: var(--text);
    border-top: 5px solid var(--line);
    border-bottom: 5px solid var(--line);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 48px 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.footer-logo-img {
    display: inline-block;
}

.footer-logo-img img {
    width: 120px;
    display: block;
    transition: transform .25s ease;
}

.footer-logo-img:hover img {
    transform: scale(1.04);
}

.footer-title {
    margin: 0 0 5px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 1px;
}

.footer-col a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    opacity: 0.92;
}

.footer-col a:hover {
    color: var(--accent);
    opacity: 1;
}

.footer-col i {
    margin-right: 3px;
    font-size: 12px;
    color: var(--accent);
}

.extern-icon {
    margin-left: 4px;
    margin-right: 0 !important;
}

.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 34px;
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

/* 11. Projekte
-------------------------------------------------------------------------- */

.projekte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.projekt-card {
    display: flex;
    flex-direction: column;
    background: rgba(236, 229, 196, 0.04);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: border-color .25s, background .25s, transform .25s;
}

.projekt-card:hover {
    border-color: rgba(179, 167, 85, 0.55);
    background: rgba(236, 229, 196, 0.07);
    transform: translateY(-4px);
}

.projekt-img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.projekt-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.projekt-card:hover .projekt-img-wrap img {
    transform: scale(1.04);
}

.projekt-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #1a2110;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.projekt-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.projekt-datum {
    font-size: 12px;
    color: rgba(236, 229, 196, 0.5);
    letter-spacing: 0.04em;
}

.projekt-body h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.projekt-body p {
    margin: 0;
    font-size: 14.5px;
    color: rgba(236, 229, 196, 0.75);
    line-height: 1.6;
    flex: 1;
}

.projekt-detail-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.projekt-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--accent);
    text-decoration: none;
    margin-right: auto;
}

.projekt-back:hover {
    text-decoration: underline;
}

.projekt-detail .projekt-badge {
    position: static;
}

.projekt-hero-img {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 36px;
    aspect-ratio: 16/7;
}

.projekt-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projekt-text {
    max-width: 780px;
    margin-bottom: 48px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(236, 229, 196, 0.9);
}

.projekt-text p {
    margin: 0 0 20px;
}

.projekt-galerie {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
    margin-bottom: 48px;
}

.projekt-galerie img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--line);
    transition: transform .3s;
    cursor: pointer;
}

.projekt-galerie img:hover {
    transform: scale(1.02);
}

.projekt-video {
    margin-bottom: 48px;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid var(--line);
}

.projekt-video iframe {
    width: 100%;
    height: 100%;
}

.projekt-karte {
    margin-bottom: 48px;
    border-radius: 14px;
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--line);
}

.projekt-karte iframe {
    width: 100%;
    height: 100%;
}

.projekt-links {
    margin-bottom: 24px;
}

.projekt-links h2 {
    font-size: 18px;
    margin: 0 0 16px;
    color: var(--text);
}

.projekt-links .button {
    margin-right: 10px;
    margin-bottom: 10px;
}

/* 12. Equipment
-------------------------------------------------------------------------- */

.equip-intro {
    margin: 0 0 32px;
    font-size: 15.5px;
    color: rgba(236, 229, 196, 0.85);
    line-height: 1.8;
}

.equip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.equip-card {
    display: flex;
    flex-direction: column;
    background: rgba(236, 229, 196, 0.04);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: border-color .25s, background .25s, transform .25s;
}

.equip-card:hover {
    border-color: rgba(179, 167, 85, 0.55);
    background: rgba(236, 229, 196, 0.07);
    transform: translateY(-4px);
}

.equip-img-wrap {
    aspect-ratio: 1/1;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
}

.equip-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s;
}

.equip-card:hover .equip-img-wrap img {
    transform: scale(1.04);
}

.equip-body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.equip-brand {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.85;
}

.equip-body h3 {
    margin: 0;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.45;
    flex: 1;
}

.equip-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--accent);
}

/* 13. Responsive
-------------------------------------------------------------------------- */

@media (max-width: 980px) {
    .header-inner {
        padding: 0 22px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        padding: 20px 24px;
        background: #242c17;
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav.is-open {
        display: flex;
    }

    .nav-dropdown,
    .dropdown-menu {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: block;
        margin-top: 8px;
    }

    .hero-section {
        padding: 42px 24px 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .visual-column {
        order: -1;
    }

    .hero-stat {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        border-bottom: 1px solid var(--line);
        padding-bottom: 16px;
    }

    .hero-stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .footer-logo-img img {
        width: 140px;
        margin: 0 auto;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .legal-company {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .projekte-grid {
        grid-template-columns: 1fr;
    }

    .projekt-galerie {
        grid-template-columns: 1fr 1fr;
    }

    .equip-grid {
        grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
        gap: 14px;
    }
}

@media (max-width: 620px) {
    .brand-text {
        font-size: 17px;
    }

    .hero-section,
    .content-section,
    .footer-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .text-column p {
        font-size: 15.5px;
    }

    .unterschrift {
        font-size: 40px;
    }

    .claim {
        font-size: 17px;
    }

    .legal-company-logo-home img {
        width: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .legal-card,
    .partner-cta {
        padding: 22px;
    }

    .hero-pull-quote {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .equip-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}
/* ── Galerie Slider ─────────────────────────────────────────── */
.galerie-slider {
    position: relative;
    margin-bottom: 48px;
    user-select: none;
}

.galerie-slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #000;
}

.galerie-slider-track img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.galerie-slider-track img.is-active {
    opacity: 1;
}

/* Pfeile */
.galerie-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,.45);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.galerie-btn:hover {
    background: rgba(0,0,0,.75);
}

.galerie-btn-prev { left: 12px; }
.galerie-btn-next { right: 12px; }

/* Zähler */
.galerie-counter {
    position: absolute;
    bottom: 12px;
    right: 16px;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 10;
    letter-spacing: .5px;
}

/* Thumbnails */
.galerie-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.galerie-thumbs img {
    width: 72px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    opacity: .6;
    transition: opacity .2s, border-color .2s;
}

.galerie-thumbs img.is-active {
    border-color: var(--accent, #e05c2a);
    opacity: 1;
}