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

:root {
    --stone:    #5c5248;
    --sand:     #c8b89a;
    --light:    #f5f2ee;
    --white:    #ffffff;
    --text:     #2e2a27;
    --muted:    #6b635b;
    --accent:   #7a6a5a;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.7;
}

/* ── Header ── */
header {
    background-color: var(--stone);
    color: var(--white);
    padding: 2rem 1.5rem;
    text-align: center;
}

.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

header h1 {
    margin: 0;
    line-height: 1;
}

.logo-img {
    max-width: min(360px, 65vw);
    height: auto;
    display: block;
    filter: invert(1);
}

header p.tagline {
    font-size: 1rem;
    color: var(--sand);
    margin-top: 0.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
}

.header-logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

/* ── Nav ── */
nav {
    background-color: var(--accent);
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

nav ul li a {
    display: block;
    padding: 0.7rem 1.4rem;
    color: var(--white);
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    transition: background 0.2s;
}

nav ul li a:hover { background-color: var(--stone); }

/* ── Hero ── */
.hero {
    background-color: var(--sand);
    padding: 3rem 1.5rem;
    text-align: center;
}

.hero h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--stone);
    font-weight: normal;
    margin-bottom: 0.75rem;
}

.hero p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
}

/* ── Main content ── */
main {
    max-width: 960px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

/* ── Services ── */
.section-title {
    font-size: 1.4rem;
    color: var(--stone);
    border-bottom: 2px solid var(--sand);
    padding-bottom: 0.4rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.service-card-body {
    padding: 1rem;
    text-align: center;
    flex: 1;
}

.service-card h3 {
    font-size: 1rem;
    color: var(--stone);
    margin-bottom: 0.4rem;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

/* ── Materials ── */
.materials {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.materials p {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.materials img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

/* ── Contact ── */
.contact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-box {
    background: var(--stone);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 2px;
}

.contact-box h2 {
    font-size: 1.2rem;
    font-weight: normal;
    border-bottom: 1px solid var(--sand);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.contact-box p, .contact-box address {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    font-style: normal;
    line-height: 1.8;
}

.contact-box a {
    color: var(--sand);
    text-decoration: none;
}

.contact-box a:hover { text-decoration: underline; }

.hours-box {
    background: var(--white);
    border: 1px solid #ddd;
    border-top: 3px solid var(--sand);
    padding: 1.5rem;
    border-radius: 2px;
}

.hours-box h2 {
    font-size: 1.2rem;
    color: var(--stone);
    font-weight: normal;
    border-bottom: 2px solid var(--sand);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.hours-box dl {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.25rem 1rem;
}

.hours-box dt { color: var(--muted); }
.hours-box dd { color: var(--text); }

.hours-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #888;
    font-family: Arial, Helvetica, sans-serif;
}

/* ── Footer ── */
footer {
    background-color: var(--stone);
    color: #ccc;
    text-align: center;
    padding: 1.5rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
}

footer a {
    color: var(--sand);
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover { text-decoration: underline; }

footer .footer-links { margin-bottom: 0.5rem; }

/* ── Subpages (Impressum, Datenschutz) ── */
.subpage {
    font-family: Arial, Helvetica, sans-serif;
}

.subpage header {
    padding: 1.5rem;
}

.subpage header h1 {
    font-size: 1.5rem;
    font-weight: normal;
    font-family: Georgia, serif;
}

.subpage header a {
    color: var(--sand);
    font-size: 0.85rem;
    text-decoration: none;
}

.subpage header a:hover { text-decoration: underline; }

.subpage main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1.5rem 3rem;
}

.subpage h2 {
    font-size: 1.2rem;
    color: var(--stone);
    border-bottom: 2px solid var(--sand);
    padding-bottom: 0.3rem;
    margin: 2rem 0 0.75rem;
    font-family: Georgia, serif;
    font-weight: normal;
}

.subpage h3 {
    font-size: 1rem;
    color: var(--stone);
    margin: 1.25rem 0 0.5rem;
}

.subpage p,
.subpage address {
    font-size: 0.95rem;
    color: var(--text);
    font-style: normal;
    margin-bottom: 0.75rem;
}

.subpage ul {
    margin: 0.5rem 0 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.subpage ul li { margin-bottom: 0.3rem; }

.subpage a { color: var(--accent); }
.subpage a:hover { color: var(--stone); }

.subpage footer {
    padding: 1rem;
}

.intro-box {
    background: #fff;
    border-left: 4px solid var(--sand);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--muted);
}
