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

:root {
    --primary: #1a1a1a;
    --secondary: #c9a962;
    --accent: #2d2d2d;
    --text: #333;
    --text-light: #666;
    --bg: #fafafa;
    --bg-dark: #0d0d0d;
    --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(--bg);
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23c9a962" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    animation: drift 60s linear infinite;
}

@keyframes drift {
    from { transform: translateX(0) translateY(0); }
    to { transform: translateX(-50px) translateY(-50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-content h1 span {
    display: block;
    font-size: 1.2rem;
    color: var(--secondary);
    letter-spacing: 15px;
    margin-top: 20px;
    font-weight: 400;
}

.hero-tagline {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 50px;
    font-weight: 300;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s;
    cursor: pointer;
}

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

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

.btn-solid:hover {
    background: transparent;
    color: var(--secondary);
}

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

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

/* Sections */
.section {
    padding: 120px 0;
}

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

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

.section-alt {
    background: #f5f5f5;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--secondary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-light);
    max-width: 700px;
}

.section-dark .section-text {
    color: rgba(255,255,255,0.7);
}

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

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

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

.split-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(201,169,98,0.2), transparent);
}

/* Services */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background: var(--white);
    padding: 50px 40px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.4s;
}

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

.service-number {
    font-size: 4rem;
    font-weight: 200;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

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

/* Testimonials */
.testimonial {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
}

.testimonial-text {
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--white);
}

.testimonial-author {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
}

/* Features */
.features-row {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.feature {
    flex: 1;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--secondary);
    stroke-width: 1;
    fill: none;
}

.feature h4 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Stats */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 80px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 200;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* Form */
.form-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group select option {
    background: var(--primary);
    color: var(--white);
}

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

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary);
    stroke-width: 1.5;
    fill: none;
}

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

.contact-item p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1;
}

.footer-brand .logo {
    color: var(--white);
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 300px;
}

.footer-links {
    flex: 1;
}

.footer-links h4 {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--secondary);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

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

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

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--secondary);
    stroke-width: 2;
    fill: none;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.thanks-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 25px 40px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    transition: all 0.3s;
}

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

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

.cookie-btn.accept:hover {
    background: transparent;
    color: var(--secondary);
}

/* Page Header */
.page-header {
    padding: 180px 0 100px;
    background: var(--bg-dark);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 8px;
    text-transform: uppercase;
}

.page-header p {
    margin-top: 20px;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 50px 0 20px;
    color: var(--primary);
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 30px 0 15px;
    color: var(--primary);
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--text-light);
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* About Page */
.timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--secondary);
}

.timeline-item {
    position: relative;
    padding-bottom: 50px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 5px;
    width: 9px;
    height: 9px;
    background: var(--secondary);
    border-radius: 50%;
}

.timeline-year {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.timeline-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.timeline-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    z-index: 999;
    padding: 100px 40px;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 30px;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mobile-nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close::before,
.mobile-nav-close::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--white);
}

.mobile-nav-close::before {
    transform: rotate(45deg);
}

.mobile-nav-close::after {
    transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .split {
        flex-direction: column;
    }

    .split-content {
        padding: 60px 40px;
    }

    .split-image {
        min-height: 400px;
    }

    .services-grid {
        flex-direction: column;
    }

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

    .features-row {
        flex-direction: column;
        gap: 40px;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 50px;
    }

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

@media (max-width: 768px) {
    .container,
    .container-narrow {
        padding: 0 25px;
    }

    .section {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .testimonial-text {
        font-size: 1.3rem;
    }

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

    .page-header {
        padding: 140px 0 60px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta .btn {
        padding: 14px 30px;
        font-size: 0.75rem;
    }
}
