/* =========================================================
   Grünwerk – Styles
   Farben:
   - Dunkelgrün #123D2A
   - Salbeigrün #A7B99A
   - Creme     #F7F3EA
   - Warm-Weiß #FFFDF8
   - Sand      #D8C7A3
   ========================================================= */

:root {
    --c-dark: #123D2A;
    --c-dark-2: #0E2E20;
    --c-sage: #A7B99A;
    --c-sage-soft: #C9D4BE;
    --c-cream: #F7F3EA;
    --c-white: #FFFDF8;
    --c-sand: #D8C7A3;
    --c-text: #1F2A23;
    --c-muted: #5C6A60;
    --c-border: #E6E1D3;

    --shadow-sm: 0 2px 8px rgba(18, 61, 42, 0.06);
    --shadow-md: 0 12px 30px rgba(18, 61, 42, 0.08);
    --shadow-lg: 0 24px 60px rgba(18, 61, 42, 0.12);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --font-serif: "Cormorant Garamond", "Times New Roman", serif;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --container: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--c-dark);
    line-height: 1.15;
    margin: 0 0 .5em;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }
h4 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: .02em; text-transform: uppercase; }

p { margin: 0 0 1em; color: var(--c-text); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 22px;
    border-radius: var(--radius-pill);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--c-dark);
    color: var(--c-white);
}
.btn-primary:hover { background: var(--c-dark-2); box-shadow: var(--shadow-md); }
.btn-outline {
    background: transparent;
    color: var(--c-dark);
    border-color: var(--c-dark);
}
.btn-outline:hover { background: var(--c-dark); color: var(--c-white); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    backdrop-filter: saturate(180%) blur(10px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 24px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.logo-icon { width: 56px; height: 56px; object-fit: contain; }
.logo-light .logo-icon { filter: brightness(0) invert(1); }
.logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--c-dark);
    font-size: 1.8rem;
    letter-spacing: -.01em;
}
.logo-light .logo-text { color: var(--c-white); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav-list { display: flex; gap: 36px; }
.nav-list a {
    color: var(--c-text);
    font-weight: 500;
    font-size: .98rem;
    padding: 6px 0;
    position: relative;
    transition: color .2s;
}
.nav-list a:hover { color: var(--c-dark); }
.nav-list a::after {
    content: ''; position: absolute; left: 0; bottom: -2px;
    width: 0; height: 2px; background: var(--c-dark);
    transition: width .2s ease;
}
.nav-list a:hover::after { width: 100%; }
.nav-cta { padding: 12px 22px; }

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}
.menu-toggle span {
    display: block; width: 24px; height: 2px; background: var(--c-dark);
    margin: 0 auto;
    transition: transform .2s, opacity .2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    border-top: 1px solid var(--c-border);
    padding: 16px 24px 24px;
    background: var(--c-white);
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu a {
    display: block;
    padding: 14px 8px;
    font-weight: 500;
    border-bottom: 1px solid var(--c-border);
}
.mobile-menu .btn { margin-top: 12px; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
    padding: 56px 0 64px;
    background: var(--c-white);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: center;
}
.hero-text h1 { margin-bottom: 12px; }
.hero-sub {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--c-dark);
    margin: 0 0 28px;
    font-style: italic;
}
.hero-desc {
    color: var(--c-muted);
    max-width: 460px;
    margin-bottom: 36px;
    font-size: 1.05rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: var(--c-sage-soft);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Trust bar ---------- */
.trustbar {
    background: var(--c-cream);
    padding: 36px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.trust-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    background: var(--c-white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-item h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    margin: 0 0 4px;
    color: var(--c-dark);
}
.trust-item p {
    margin: 0;
    font-size: .9rem;
    color: var(--c-muted);
    line-height: 1.4;
}

/* ---------- Section base ---------- */
.section {
    padding: 88px 0;
}
.section-cream { background: var(--c-cream); }
.section-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--c-muted); font-size: 1.05rem; }

/* ---------- Cards grid ---------- */
.cards-grid {
    display: grid;
    gap: 24px;
}
.services-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.prices-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ---------- Service cards ---------- */
.service-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 28px;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
    box-shadow: var(--shadow-sm);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-sage-soft);
}
.service-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { margin-bottom: 8px; color: var(--c-dark); font-family: var(--font-sans); font-weight: 600; }
.service-card p { color: var(--c-muted); font-size: .95rem; margin-bottom: 20px; }
.card-arrow {
    width: 40px; height: 40px;
    background: var(--c-cream);
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: var(--c-dark);
    transition: background .2s, color .2s, transform .2s;
}
.card-arrow svg { width: 18px; height: 18px; }
.card-arrow:hover { background: var(--c-dark); color: var(--c-white); transform: translateX(4px); }

/* ---------- Price cards ---------- */
.price-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-card h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--c-dark);
    margin-bottom: 14px;
    font-size: 1.1rem;
}
.price {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--c-dark);
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 12px;
}
.price-note { color: var(--c-muted); font-size: .9rem; margin-bottom: 18px; }
.price-list {
    text-align: left;
    margin: 0 0 22px;
    padding: 18px 0 0;
    border-top: 1px solid var(--c-border);
    font-size: .92rem;
    color: var(--c-text);
}
.price-list li {
    padding: 6px 0 6px 22px;
    position: relative;
}
.price-list li::before {
    content: ''; position: absolute; left: 0; top: 12px;
    width: 14px; height: 14px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M5 12l5 5L20 7' stroke='%23123D2A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}
.price-card-featured {
    border: 2px solid var(--c-dark);
    box-shadow: var(--shadow-md);
}
.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-dark);
    color: var(--c-white);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .03em;
}
.price-hint {
    margin: 36px auto 0;
    max-width: 760px;
    text-align: center;
    color: var(--c-muted);
    font-size: .92rem;
    font-style: italic;
}

/* ---------- Addons ---------- */
.addons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.addon {
    background: var(--c-cream);
    border-radius: var(--radius-md);
    padding: 22px;
    border: 1px solid var(--c-border);
    transition: transform .2s, box-shadow .2s;
}
.addon:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.addon-price {
    display: inline-block;
    background: var(--c-white);
    color: var(--c-dark);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 12px;
}
.addon h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--c-dark);
    margin-bottom: 6px;
}
.addon p { font-size: .9rem; color: var(--c-muted); margin: 0; }

/* ---------- Notes box ---------- */
.notes-box {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 880px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--c-sage);
}
.notes-box h3 {
    color: var(--c-dark);
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 18px;
}
.notes-box p { color: var(--c-muted); margin-bottom: 14px; }
.notes-box p:last-child { margin-bottom: 0; }

/* ---------- Steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.step {
    text-align: center;
    padding: 32px 24px;
    background: var(--c-cream);
    border-radius: var(--radius-md);
    position: relative;
    transition: transform .2s;
}
.step:hover { transform: translateY(-3px); }
.step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--c-dark);
    color: var(--c-white);
    display: grid; place-items: center;
    margin: 0 auto 18px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.5rem;
}
.step h3 { font-family: var(--font-sans); font-size: 1.1rem; color: var(--c-dark); margin-bottom: 10px; }
.step p { color: var(--c-muted); font-size: .95rem; margin: 0; }

/* ---------- Contact ---------- */
.contact-wrap {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}
.contact-left h2 { margin-bottom: 12px; }
.contact-left > p { color: var(--c-muted); margin-bottom: 30px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--c-text);
    font-weight: 500;
}
.contact-row svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-row a:hover { color: var(--c-dark); text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}
.field { display: block; }
.field-label { display: none; }
.field-full { width: 100%; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
    background: var(--c-cream);
    font-family: var(--font-sans);
    font-size: .95rem;
    color: var(--c-text);
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #8a9089; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--c-dark);
    background: var(--c-white);
    box-shadow: 0 0 0 3px rgba(18, 61, 42, .08);
}
.contact-form textarea { resize: vertical; min-height: 96px; }
.hp { position: absolute; left: -10000px; height: 0; overflow: hidden; }
.form-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--c-muted);
    font-size: .85rem;
    margin: 0;
}
.form-note svg { width: 18px; height: 18px; }
.form-feedback {
    margin-top: 8px;
    padding: 0;
    font-size: .95rem;
}
.form-feedback.success {
    background: var(--c-sage-soft);
    color: var(--c-dark);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
}
.form-feedback.error {
    background: #f8e1de;
    color: #8a2b1f;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--c-dark);
    color: var(--c-white);
    padding: 64px 0 24px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 253, 248, 0.12);
}
.footer-col h4 {
    color: var(--c-white);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: .08em;
}
.footer-col p, .footer-col a, .footer-col li {
    color: rgba(255, 253, 248, .8);
    font-size: .95rem;
}
.footer-col a:hover { color: var(--c-white); text-decoration: underline; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 253, 248, .25);
    display: grid; place-items: center;
    color: var(--c-white);
    transition: background .2s, border-color .2s;
}
.social-link:hover { background: rgba(255, 253, 248, .12); border-color: var(--c-white); }
.social-link svg { width: 18px; height: 18px; }
.footer-bottom {
    padding-top: 22px;
    font-size: .85rem;
    color: rgba(255, 253, 248, .6);
    text-align: center;
}
.footer-bottom p { margin: 0; }

/* ---------- Legal pages ---------- */
.legal-page {
    background: var(--c-cream);
    min-height: 60vh;
    padding: 80px 0 100px;
}
.legal-content {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: 56px;
    max-width: 880px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}
.legal-content h1 { font-size: 2.4rem; margin-bottom: 24px; }
.legal-content h2 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    margin-top: 36px;
    margin-bottom: 14px;
    color: var(--c-dark);
}
.legal-content h3 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    margin-top: 24px;
    margin-bottom: 10px;
    color: var(--c-dark);
}
.legal-content p, .legal-content li { color: var(--c-text); }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-content ul li { margin-bottom: 4px; }
.legal-content a { color: var(--c-dark); text-decoration: underline; }
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-dark);
    margin-bottom: 24px;
    font-weight: 500;
}
.legal-back:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero { padding: 40px 0; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .contact-wrap { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
    .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .legal-content { padding: 36px 28px; }
}

@media (max-width: 720px) {
    .nav { display: none; }
    .menu-toggle { display: flex; }
    .mobile-menu[aria-hidden="false"], .mobile-menu:not([hidden]) { display: block; }
    .section { padding: 64px 0; }
    .section-head { margin-bottom: 40px; }
    .trust-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .contact-wrap { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-buttons .btn { flex: 1 1 100%; justify-content: center; }
    .price { font-size: 2.8rem; }
    .notes-box { padding: 28px 24px; }
    h1 { font-size: 2.4rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero { padding: 32px 0 40px; }
    .logo-text { font-size: 1.5rem; }
    .logo-icon { width: 44px; height: 44px; }
}
