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

:root {
    --primary: #1a1a1a;
    --secondary: #c9a962;
    --accent: #8b7355;
    --light: #f8f6f3;
    --dark: #0d0d0d;
    --text: #2d2d2d;
    --text-light: #6b6b6b;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

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

/* Navigation - Floating Minimal */
.nav-floating {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.nav-toggle {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    transform: scale(1.1);
    background: var(--secondary);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.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);
}

.nav-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    min-width: 200px;
}

.nav-menu.active {
    display: flex;
}

.nav-menu a {
    padding: 12px 0;
    color: var(--primary);
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.nav-menu a:last-child {
    border-bottom: none;
}

.nav-menu a:hover {
    color: var(--secondary);
    padding-left: 10px;
}

/* Brand Logo */
.brand-logo {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.brand-logo.dark {
    color: var(--primary);
    text-shadow: none;
}

/* Hero Visual */
.hero-visual {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1542038784456-1ea8e935640e?w=1920') center/cover no-repeat;
}

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

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content h1 span {
    display: block;
    font-weight: 700;
    color: var(--secondary);
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 60px;
    background: var(--white);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

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

.btn-primary:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

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

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

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

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-light {
    background: var(--light);
}

.section-accent {
    background: var(--secondary);
    color: var(--primary);
}

/* Image Overlay Section */
.image-overlay-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.image-overlay-section .bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.image-overlay-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.image-overlay-section .content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

/* Split Section */
.split-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 80vh;
}

.split-section .split-image {
    flex: 1 1 50%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.split-section .split-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

/* Text Styles */
.section-label {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-title strong {
    font-weight: 700;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Services Cards */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.service-card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.service-card-content {
    padding: 30px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Testimonials */
.testimonial-section {
    background: var(--primary);
    color: var(--white);
    padding: 120px 0;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    flex: 1 1 calc(50% - 40px);
    min-width: 300px;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-left: 4px solid var(--secondary);
}

.testimonial-card p {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
}

.testimonial-author-name {
    font-weight: 600;
}

.testimonial-author-role {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Form Styles */
.form-section {
    background: var(--light);
    padding: 100px 0;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e5e5e5;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

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

/* Stats */
.stats-section {
    background: var(--secondary);
    padding: 80px 0;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    color: var(--primary);
    opacity: 0.8;
}

/* Gallery Grid */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 1 1 33.333%;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: all 0.4s ease;
}

.gallery-item:hover::before {
    background: rgba(0,0,0,0.5);
}

.gallery-item-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item-content {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Sticky */
.cta-sticky {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: var(--primary);
    color: var(--white);
    padding: 18px 50px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: none;
}

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

.cta-sticky:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateX(-50%) translateY(-5px);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--secondary);
}

.footer-col a {
    display: block;
    padding: 8px 0;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary);
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal a {
    margin-left: 20px;
    color: rgba(255,255,255,0.5);
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 25px 40px;
    z-index: 9999;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
}

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

.cookie-banner p {
    flex: 1;
    font-size: 0.95rem;
}

.cookie-banner a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--primary);
}

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--light);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--primary);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* About Page */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 60px;
}

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

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Legal Pages */
.legal-page {
    padding: 150px 0 100px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.9;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 10px;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--white);
    text-align: center;
    padding: 20px;
    font-size: 1rem;
}

.urgency-banner strong {
    color: var(--secondary);
}

/* Feature List */
.feature-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 968px) {
    .split-section .split-content {
        padding: 40px 30px;
    }

    .service-card {
        flex: 1 1 calc(50% - 30px);
    }

    .gallery-item {
        flex: 1 1 50%;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 20px;
        right: 20px;
    }

    .brand-logo {
        top: 20px;
        left: 20px;
        font-size: 1.2rem;
    }

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

    .split-section.reverse {
        flex-direction: column;
    }

    .split-section .split-image {
        min-height: 300px;
    }

    .split-section .split-content {
        padding: 50px 25px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .gallery-item {
        flex: 1 1 100%;
        height: 300px;
    }

    .form-wrapper {
        padding: 40px 25px;
    }

    .cta-sticky {
        left: 20px;
        right: 20px;
        transform: none;
        text-align: center;
    }

    .cta-sticky:hover {
        transform: translateY(-5px);
    }

    .footer-grid {
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-legal a {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 70px 0;
    }

    .stats-grid {
        gap: 40px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
