* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
    color: #111111;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Header-Layout */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Name / Logo links */
.logo a {
    text-decoration: none;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.logo a span {
    font-weight: 300;
    color: #555555;
}

/* Menü rechts */
.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #444444;
    font-size: 12px;
    letter-spacing: 0.15em;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #000000;
}

/* Hauptbereich: Auf 820px verengt für kompakte Kacheln */
.main-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 10px 20px 40px;
}

.intro-subtitle {
    text-align: center;
    font-size: 13px;
    color: #444444;
    letter-spacing: 0.04em;
    margin-bottom: 25px;
}

/* 4x3 Galerie-Grid mit engeren Abständen */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

/* Kacheln: Immer 1:1 quadratisch */
.gallery-item {
    aspect-ratio: 1 / 1;
    background-color: #e5e5e5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

/* Footer-Layout */
.site-footer {
    text-align: center;
    padding: 60px 20px 40px;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: #555555;
    line-height: 1.8;
}

.footer-title {
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
    letter-spacing: 0.2em;
}

.site-footer a {
    color: #333333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #000000;
}

.footer-legal {
    margin-top: 25px;
    font-size: 10px;
    color: #888888;
}

/* Responsiv: Auf kleineren Bildschirmen umbrechen */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .site-header {
        flex-direction: column;
        gap: 15px;
        padding: 25px 20px;
    }
    .main-content {
        padding: 10px 20px 30px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Styling für Kontaktseite */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 20px;
}

.contact-direct h2,
.contact-form-wrap h2 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    color: #111111;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 8px;
}

.contact-lead {
    font-size: 13px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 30px;
}

.contact-info-block {
    margin-bottom: 20px;
}

.contact-info-block .label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 4px;
}

.contact-info-block p,
.contact-link {
    font-size: 13px;
    color: #111111;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Minimalistisches Formular */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    font-family: inherit;
    font-size: 13px;
    color: #111111;
    background-color: #fafafa;
    border: 1px solid #dddddd;
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: #ffffff;
    border-color: #111111;
}

.submit-button {
    background-color: #111111;
    color: #ffffff;
    border: 1px solid #111111;
    padding: 12px 24px;
    font-family: inherit;
    font-size: 11px;
    letter-spacing: 0.15em;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.submit-button:hover {
    background-color: #ffffff;
    color: #111111;
}

@media (max-width: 700px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* Angebot / Pricing Styling */
.intro-statement {
    max-width: 680px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.8;
    color: #444444;
    text-align: center;
}

.packages-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0 60px 0;
}

.package-item {
    border: 1px solid #eeeeee;
    padding: 30px;
    background-color: #fafafa;
    transition: border-color 0.2s ease;
}

.package-item:hover {
    border-color: #cccccc;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
}

.package-header h2 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #111111;
    margin-bottom: 4px;
}

.package-sub {
    font-size: 12px;
    color: #666666;
    font-style: italic;
}

.package-price {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #111111;
    white-space: nowrap;
}

.package-specs {
    list-style: none;
}

.package-specs li {
    font-size: 12px;
    line-height: 1.8;
    color: #444444;
}

.package-specs li strong {
    color: #111111;
    font-weight: 600;
}

/* Analoge Add-ons */
.addons-section {
    border-top: 1px solid #111111;
    padding-top: 40px;
    margin-bottom: 50px;
}

.addons-header {
    text-align: center;
    margin-bottom: 30px;
}

.addons-header h3 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #111111;
    margin-bottom: 6px;
}

.addons-intro {
    font-size: 12px;
    color: #666666;
}

.addons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.addon-item {
    border: 1px solid #eeeeee;
    padding: 20px;
    background-color: #ffffff;
}

.addon-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.addon-title-row h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #111111;
}

.addon-price {
    font-size: 13px;
    font-weight: 700;
    color: #111111;
}

.addon-item p {
    font-size: 12px;
    line-height: 1.6;
    color: #555555;
}

/* Abschluss & CTA */
.offer-footer-note {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
}

.offer-footer-note p {
    font-size: 13px;
    color: #444444;
    margin-bottom: 20px;
}

.offer-contact-btn {
    display: inline-block;
    background-color: #111111;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-decoration: none;
    padding: 12px 24px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.offer-contact-btn:hover {
    background-color: #444444;
}

@media (max-width: 700px) {
    .package-header {
        flex-direction: column;
        gap: 8px;
    }
    .addons-grid {
        grid-template-columns: 1fr;
    }
}
/* Kontaktseite Styling */
.contact-box-wrap {
    max-width: 680px;
    margin: 50px auto 0 auto;
}

.contact-card {
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.contact-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #888888;
    margin-bottom: 15px;
}

.contact-email {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    letter-spacing: 0.04em;
    border-bottom: 2px solid #111111;
    padding-bottom: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-email:hover {
    color: #555555;
    border-color: #555555;
}

.contact-hint {
    margin-top: 14px;
    font-size: 12px;
    color: #777777;
    letter-spacing: 0.02em;
}

.contact-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.contact-meta-item {
    border: 1px solid #eeeeee;
    padding: 20px 15px;
    text-align: center;
    background-color: #ffffff;
}

.meta-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #888888;
    margin-bottom: 6px;
}

.meta-value {
    font-size: 12px;
    color: #222222;
    line-height: 1.5;
}

@media (max-width: 700px) {
    .contact-email {
        font-size: 16px;
    }
    .contact-meta-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Zahlungs- & Ablaufhinweis */
.payment-terms-box {
    max-width: 680px;
    margin: 40px auto;
    padding: 16px 20px;
    background-color: #f7f7f7;
    border-left: 2px solid #111111;
    text-align: left;
    box-sizing: border-box;
}

.payment-terms-box p {
    font-family: inherit; /* erbt deine Hauptschriftart */
    font-size: 12px;
    line-height: 1.7;
    color: #444444;
    margin: 0;
}

.payment-terms-box strong {
    color: #111111;
    font-weight: 700;
}

.payment-terms-box .ust-note {
    margin-top: 8px;
    font-size: 11px;
    color: #777777;
    font-style: italic;
}

/* Impressum & Datenschutz */
.legal-content-wrap {
    max-width: 680px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.legal-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 10px;
}

.legal-section p {
    font-size: 13px;
    line-height: 1.7;
    color: #444444;
    margin: 0 0 10px 0;
}

.legal-section a {
    color: #111111;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #666666;
}
/* Minimalistische Portfolio-Platzhalter */
.gallery-item.placeholder-box {
    aspect-ratio: 1 / 1;
    background-color: #161616;
    border: 1px solid #282828;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.placeholder-label {
    color: #999;
    font-weight: bold;
}

.placeholder-sub {
    font-size: 0.7rem;
    color: #555;
    letter-spacing: 0.05em;
}