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

:root {
    --primary: #1a1a1a;
    --accent: #c9a961;
    --light: #f5f5f5;
    --dark: #0a0a0a;
    --gray: #666;
    --white: #ffffff;
}

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

.hero-full {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(201,169,97,0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    max-width: 900px;
}

.hero-overlay p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #b39550;
    transform: translateY(-2px);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
}

.story-section {
    padding: 0;
    background: var(--white);
}

.image-block {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
    background-color: #e0e0e0;
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 6rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.overlay-text h2 {
    font-size: 3rem;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 1rem;
}

.overlay-text p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
}

.content-split {
    display: flex;
    min-height: 80vh;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d0d0d0;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    flex: 1;
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
}

.split-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--dark);
}

.split-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.insight-full {
    background: var(--dark);
    color: var(--white);
    padding: 8rem 4rem;
    text-align: center;
}

.insight-full h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--accent);
}

.insight-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.insight-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

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

.insight-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

.services-visual {
    padding: 6rem 4rem;
    background: var(--white);
}

.services-visual h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.service-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    position: relative;
    width: 380px;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    background-color: #c0c0c0;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    color: var(--white);
}

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

.service-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.85);
}

.price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.select-btn {
    padding: 0.8rem 2rem;
    background: var(--accent);
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.select-btn:hover {
    background: #b39550;
}

.select-btn.selected {
    background: #7a6b3e;
}

.testimonial-section {
    padding: 6rem 6rem;
    background: var(--light);
}

.testimonial-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 300;
}

.testimonials {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    padding: 2.5rem;
    background: var(--white);
    border-left: 4px solid var(--accent);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
}

.form-section {
    background: var(--dark);
    padding: 7rem 4rem;
    color: var(--white);
}

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

.form-container h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 300;
    color: var(--accent);
}

.form-container p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

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

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

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent);
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #b39550;
}

.submit-btn:disabled {
    background: #555;
    cursor: not-allowed;
}

.disclaimer {
    background: rgba(201,169,97,0.1);
    padding: 3rem 4rem;
    margin: 4rem 0;
    border-left: 4px solid var(--accent);
}

.disclaimer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray);
}

.references {
    padding: 4rem 4rem;
    background: var(--light);
}

.references h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.references ol {
    list-style-position: inside;
    font-size: 0.95rem;
    line-height: 1.9;
}

.references a {
    color: var(--accent);
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.citation {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
}

footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 4rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 1.2rem;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: var(--white);
    padding: 2rem 4rem;
    display: none;
    z-index: 2000;
    border-top: 2px solid var(--accent);
}

.cookie-banner.show {
    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-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    font-size: 1rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: none;
}

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

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

.cookie-accept:hover {
    background: #b39550;
}

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

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

.page-header {
    padding: 8rem 4rem 4rem;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

.page-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
}

.page-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--gray);
}

.contact-info {
    background: var(--light);
    padding: 3rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent);
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info strong {
    color: var(--dark);
}

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

.thanks-page h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: var(--dark);
}

.thanks-page p {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 600px;
    margin-bottom: 2rem;
}

.thanks-page .cta-hero {
    background: var(--dark);
}

.thanks-page .cta-hero:hover {
    background: var(--primary);
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    nav {
        padding: 1rem 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .testimonials {
        flex-direction: column;
    }

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

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