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

:root {
    --primary: #1a1a1a;
    --accent: #c9a050;
    --light: #f5f5f5;
    --white: #ffffff;
    --overlay: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    font-weight: 300;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease;
    padding: 1.5rem 3rem;
}

.nav-floating.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-floating.scrolled .brand {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.nav-floating.scrolled .nav-links a {
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.btn-primary:hover {
    background: #b08f40;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border: 2px solid var(--white);
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.visual-block {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.visual-bg {
    position: absolute;
    width: 60%;
    height: 100%;
    object-fit: cover;
}

.visual-bg.left {
    left: 0;
}

.visual-bg.right {
    right: 0;
}

.visual-content {
    position: relative;
    z-index: 2;
    padding: 4rem;
    max-width: 600px;
}

.visual-content.offset-left {
    margin-left: auto;
    margin-right: 8%;
}

.visual-content.offset-right {
    margin-right: auto;
    margin-left: 8%;
}

.visual-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.visual-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.image-overlay-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: flex-end;
    padding: 4rem;
}

.image-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
}

.overlay-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 8%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 300px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-bg {
    transform: scale(1.1);
}

.service-card-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.service-price {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 600;
    margin: 1rem 0;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.form-section {
    padding: 6rem 8%;
    background: var(--light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.form-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept {
    background: var(--accent);
    color: var(--white);
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
}

.btn-reject {
    background: transparent;
    color: var(--primary);
    padding: 0.8rem 2rem;
    border: 1px solid var(--primary);
    cursor: pointer;
}

.section-text {
    padding: 6rem 8%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.section-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-block {
    background: var(--primary);
    color: var(--white);
    padding: 5rem 8%;
    margin: 4rem 0;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 1.1rem;
    color: var(--accent);
}

.cta-inline {
    display: inline-block;
    color: var(--accent);
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cta-inline:hover {
    color: #b08f40;
}

.split-visual {
    display: flex;
    min-height: 600px;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.split-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 8%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.policy-page {
    padding: 8rem 8% 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.policy-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.policy-page h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.policy-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-page ul {
    margin-bottom: 1rem;
    margin-left: 2rem;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info {
    background: var(--light);
    padding: 4rem 8%;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1 1 300px;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-item p {
    line-height: 1.8;
    color: #666;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav-floating.scrolled .hamburger span {
    background: var(--primary);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--primary);
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .visual-bg {
        width: 100%;
    }

    .visual-content {
        padding: 2rem;
        background: rgba(255, 255, 255, 0.95);
    }

    .visual-content.offset-left,
    .visual-content.offset-right {
        margin: 2rem;
    }

    .services-grid {
        padding: 2rem 5%;
    }

    .split-visual {
        flex-direction: column;
    }

    .form-section,
    .section-text {
        padding: 3rem 5%;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .policy-page {
        padding: 6rem 5% 3rem;
    }

    .nav-floating {
        padding: 1rem 5%;
    }
}
