/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #c9a96e;
    --gold-light: #e4d4b0;
    --gold-dark: #a8873f;
    --dark: #1a1a1a;
    --text: #333;
    --text-light: #666;
    --bg: #fff;
    --bg-soft: #faf8f5;
    --bg-dark: #1a1a1a;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,.08);
    --transition: .3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,169,110,.15);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.logo { height: 55px; width: 55px; border-radius: 50%; object-fit: cover; }

.main-nav ul { display: flex; list-style: none; gap: 28px; align-items: center; }
.main-nav a { font-size: .95rem; font-weight: 500; color: var(--text); letter-spacing: .3px; }
.main-nav a:hover { color: var(--gold-dark); }
.nav-cta {
    background: #25d366; color: #fff !important; padding: 8px 18px; border-radius: 50px;
    font-weight: 600; font-size: .85rem;
}
.nav-cta:hover { background: #1fb855; color: #fff !important; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 24px; height: 2px; background: var(--dark);
    margin: 5px 0; transition: var(--transition); border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 90vh; display: flex; align-items: center;
    justify-content: center; overflow: hidden; margin-top: 70px;
}
.hero-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center 30%;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,.7) 0%, rgba(26,26,26,.4) 50%, rgba(201,169,110,.2) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 40px 20px; }

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.5rem); color: #fff; font-weight: 700;
    letter-spacing: 1px; margin-bottom: 16px; line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-sub {
    color: var(--gold-light); font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 32px; letter-spacing: .5px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px; font-weight: 600;
    font-size: .95rem; border: none; cursor: pointer; transition: all var(--transition);
    text-decoration: none; line-height: 1;
}
.btn .icon { width: 20px; height: 20px; flex-shrink: 0; }

.btn-primary { background: #25d366; color: #fff; }
.btn-primary:hover { background: #1fb855; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }

.btn-secondary { background: var(--gold); color: #fff; }
.btn-secondary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,169,110,.35); }

.btn-large { padding: 18px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* Pulse animation */
.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== STICKY CTA (Mobile) ===== */
.sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    padding: 10px; gap: 10px; background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px); border-top: 1px solid rgba(201,169,110,.2);
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.sticky-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; border-radius: 50px; font-weight: 700; font-size: .9rem; color: #fff;
}
.sticky-btn .icon { width: 20px; height: 20px; }
.sticky-wa { background: #25d366; }
.sticky-wa:hover { background: #1fb855; color: #fff; }
.sticky-tel { background: var(--gold); }
.sticky-tel:hover { background: var(--gold-dark); color: #fff; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section:nth-child(even) { background: var(--bg-soft); }
.section-title {
    text-align: center; font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--dark); margin-bottom: 12px; position: relative;
}
.section-title::after {
    content: ''; display: block; width: 60px; height: 3px;
    background: var(--gold); margin: 12px auto 0; border-radius: 2px;
}
.section-intro {
    text-align: center; color: var(--text-light);
    font-size: 1.05rem; max-width: 600px; margin: 0 auto 48px;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    align-items: center; margin-bottom: 64px; background: var(--bg);
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.service-card--reverse .service-images { order: 2; }
.service-card--reverse .service-text { order: 1; }

.service-images {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px; height: 100%;
}
.service-images img {
    width: 100%; height: 100%; object-fit: cover; min-height: 280px;
}

.service-text { padding: 36px; }
.service-text h3 {
    font-size: 1.5rem; color: var(--dark); margin-bottom: 12px;
    position: relative; padding-left: 16px;
}
.service-text h3::before {
    content: ''; position: absolute; left: 0; top: 4px; bottom: 4px;
    width: 4px; background: var(--gold); border-radius: 2px;
}
.service-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }

.service-highlights { list-style: none; margin-bottom: 24px; }
.service-highlights li {
    padding: 6px 0 6px 24px; position: relative; color: var(--text);
    font-size: .93rem;
}
.service-highlights li::before {
    content: ''; position: absolute; left: 0; top: 13px;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--gold-light); border: 2px solid var(--gold);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    padding: 64px 0; text-align: center;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.4rem, 4vw, 2rem); margin-bottom: 12px; }
.cta-banner p { color: var(--gold-light); font-size: 1.05rem; margin-bottom: 28px; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cta-banner--alt {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}
.cta-banner--alt p { color: rgba(255,255,255,.9); }

/* ===== GALERIE ===== */
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 8px; border-radius: var(--radius); overflow: hidden;
}
.gallery-grid img {
    width: 100%; height: 280px; object-fit: cover;
    transition: transform .4s ease; cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.05); }

/* ===== KONTAKT ===== */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.kontakt-info h3, .kontakt-form-wrap h3 {
    font-size: 1.3rem; color: var(--dark); margin-bottom: 12px;
}
.kontakt-info p { color: var(--text-light); margin-bottom: 24px; line-height: 1.7; }

.kontakt-methods { display: flex; flex-direction: column; gap: 16px; }
.kontakt-method {
    display: flex; align-items: center; gap: 16px; padding: 20px;
    background: var(--bg-soft); border-radius: var(--radius); border: 1px solid rgba(201,169,110,.2);
    transition: all var(--transition); text-decoration: none; color: var(--text);
}
.kontakt-method:hover {
    border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,169,110,.15);
    transform: translateY(-2px); color: var(--text);
}
.kontakt-method .icon { width: 32px; height: 32px; color: var(--gold); flex-shrink: 0; }
.kontakt-method strong { display: block; font-size: 1rem; color: var(--dark); }
.kontakt-method span { font-size: .9rem; color: var(--text-light); }

/* ===== FORM ===== */
.kontakt-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 600; font-size: .9rem; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
    padding: 12px 16px; border: 1px solid #ddd; border-radius: 8px;
    font-size: .95rem; font-family: inherit; transition: border-color var(--transition);
    background: var(--bg); color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}
.form-group textarea { resize: vertical; }
.form-hint { font-size: .82rem; color: var(--text-light); text-align: center; margin-top: 4px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.7); padding-top: 48px; }

.footer-top { text-align: center; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { height: 70px; width: 70px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; }
.footer-tagline { font-size: 1rem; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.footer-contact a { color: var(--gold-light); font-size: .9rem; }
.footer-contact a:hover { color: var(--gold); }

/* Legal accordions */
.legal-accordion { border-bottom: 1px solid rgba(255,255,255,.1); }
.legal-toggle {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0; background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,.7); font-size: .95rem; font-weight: 600;
    font-family: inherit; text-align: left; transition: color var(--transition);
}
.legal-toggle:hover { color: var(--gold-light); }
.legal-toggle .chevron {
    width: 20px; height: 20px; transition: transform var(--transition); flex-shrink: 0;
}
.legal-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.legal-content {
    max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease;
    padding: 0 0;
}
.legal-content.open { padding: 0 0 24px; }
.legal-content p { font-size: .85rem; line-height: 1.7; margin-bottom: 10px; color: rgba(255,255,255,.6); }
.legal-content a { color: var(--gold-light); }
.legal-content a:hover { color: var(--gold); }
.legal-content strong { color: rgba(255,255,255,.8); }

.footer-bottom { text-align: center; padding: 24px 0; font-size: .8rem; color: rgba(255,255,255,.35); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .service-card { grid-template-columns: 1fr; }
    .service-card--reverse .service-images { order: 0; }
    .service-card--reverse .service-text { order: 0; }
    .service-images { min-height: 200px; }
    .service-images img { min-height: 200px; }

    .kontakt-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid img { height: 220px; }
}

@media (max-width: 680px) {
    /* Nav mobile */
    .nav-toggle { display: block; }
    .main-nav {
        display: none; position: absolute; top: 70px; left: 0; right: 0;
        background: rgba(255,255,255,.98); backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(201,169,110,.15); padding: 16px 20px;
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 16px; }
    .main-nav a { font-size: 1.05rem; }

    /* Hero */
    .hero { min-height: 75vh; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; justify-content: center; }

    /* Sticky CTA visible */
    .sticky-cta { display: flex; }
    body { padding-bottom: 72px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid img { height: 180px; }

    .section { padding: 56px 0; }
    .service-text { padding: 24px; }
}

@media (max-width: 400px) {
    .gallery-grid img { height: 140px; }
    .btn-large { padding: 16px 24px; font-size: 1rem; }
}
