@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #faf9f7;
    --text: #1a1a1a;
    --text-secondary: #555;
    --accent: #2c5f7c;
    --accent-light: #eaf2f7;
    --border: #e2ddd6;
    --highlight: #f4efe8;
    --white: #ffffff;
    --shadow: rgba(0,0,0,0.06);
    --radius: 2px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 17px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--accent);
    color: var(--white);
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

main {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: var(--text);
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2.2rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 1.8rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1.4rem;
    font-size: 1.05rem;
    color: var(--text);
    text-align: justify;
    hyphens: auto;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    text-align: left;
    hyphens: none;
}

a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

a:hover {
    border-bottom-color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

figure {
    margin: 2.5rem 0;
}

figure img {
    width: 100%;
    box-shadow: 0 8px 30px var(--shadow);
}

figcaption {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.6rem;
    font-style: italic;
    text-align: center;
}

blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

blockquote cite {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.9rem;
    font-style: normal;
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
}

.cta-box {
    background: var(--accent-light);
    border: 1px solid var(--border);
    padding: 2rem;
    margin: 2.5rem 0;
    text-align: center;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
}

.cta-box p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    hyphens: none;
}

.cta-box strong {
    color: var(--accent);
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--accent);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    border-bottom: none;
}

.btn:hover {
    background: #1e4a63;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 124, 0.25);
    border-bottom: none;
}

.highlight-box {
    background: var(--highlight);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--radius);
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
}

.highlight-box li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.55rem;
    color: var(--accent);
    font-size: 0.85rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin: 2rem 0;
}

.spec-item {
    background: var(--white);
    padding: 1.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow);
}

.spec-item i {
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.spec-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.spec-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.8rem;
    margin: 1.5rem 0;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px var(--shadow);
    position: relative;
}

.review-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-light);
}

.review-card .stars {
    color: #c9a84c;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.1em;
}

.review-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: left;
    hyphens: none;
    font-style: italic;
}

.review-card .author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.review-card .author span {
    font-weight: 400;
    color: var(--text-secondary);
}

.meta-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.meta-bar .dot {
    width: 4px;
    height: 4px;
    background: var(--text-secondary);
    border-radius: 50%;
    display: inline-block;
}

.tag {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
}

.inline-cta {
    background: var(--highlight);
    padding: 1.2rem 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-radius: var(--radius);
}

.inline-cta p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    hyphens: none;
    flex: 1;
}

.inline-cta .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.list-styled {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.list-styled li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.intro-section {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.intro-image {
    margin: 2rem 0;
}

.intro-image img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

footer {
    background: var(--white);
    color: var(--text-secondary);
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
    margin-top: 5rem;
    border-top: 1px solid var(--border);
}

footer a {
    color: var(--text-secondary);
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

footer a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

footer nav {
    margin-bottom: 3rem;
}

footer nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 0;
    margin: 0;
}

footer nav li {
    margin: 0;
}

footer nav a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-impressum h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text);
    margin-bottom: 1.2rem;
    margin-top: 0;
    border: none;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.footer-impressum p {
    text-align: left;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    hyphens: none;
    line-height: 1.6;
}

.footer-disclaimer {
    grid-column: 1 / -1;
    padding-top: 2rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-disclaimer a {
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-disclaimer a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding-top: 2rem;
}

@media (max-width: 768px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-impressum p {
        text-align: center;
    }
    
    footer nav ul {
        gap: 1rem;
    }
}

.legal-page {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.legal-page .meta-bar {
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    text-align: left;
    hyphens: none;
    font-size: 1rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.table-responsive {
    overflow-x: auto;
    margin: 1.5rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

th, td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    background: var(--accent-light);
    font-weight: 600;
    color: var(--accent);
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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

    .inline-cta {
        flex-direction: column;
        text-align: center;
    }

    .inline-cta p {
        text-align: center;
    }

    footer nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .container {
        padding: 0 1.2rem;
    }

    .intro-section {
        padding-top: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .btn {
        padding: 0.8rem 1.6rem;
        font-size: 0.85rem;
    }

    .cta-box {
        padding: 1.5rem;
    }
}
