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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c9a87c;
    --accent-color: #8b7355;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --white: #ffffff;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

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

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

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 80px;
}

.hero-text-block {
    max-width: 600px;
    color: var(--white);
}

.hero-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-text-block h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-intro {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-link {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
    transition: color 0.3s;
}

.hero-link:hover {
    color: var(--secondary-color);
}

.visual-story {
    display: flex;
    min-height: 700px;
}

.story-image-left {
    flex: 1;
    overflow: hidden;
}

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

.story-text-right {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.story-text-right h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.story-text-right p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.highlight-text {
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 30px;
}

.inline-cta {
    display: inline-block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    border-radius: 4px;
    transition: all 0.3s;
}

.inline-cta:hover {
    background: var(--primary-color);
    color: var(--white);
}

.visual-immersion {
    padding: 120px 80px;
    background: var(--white);
}

.immersion-grid {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.immersion-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 600px;
}

.immersion-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.immersion-card:hover img {
    transform: scale(1.05);
}

.card-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.card-overlay-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card-overlay-text p {
    font-size: 16px;
    opacity: 0.9;
}

.problem-amplification {
    padding: 120px 80px;
    background: var(--primary-color);
    color: var(--white);
}

.narrow-content {
    max-width: 800px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 52px;
    margin-bottom: 30px;
    font-weight: 700;
}

.large-text {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

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

.problem-icon {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 700;
    flex-shrink: 0;
}

.problem-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

.problem-item p {
    opacity: 0.8;
    line-height: 1.7;
}

.revelation {
    font-size: 22px;
    font-style: italic;
    text-align: center;
    margin-top: 40px;
    color: var(--secondary-color);
}

.insight-section {
    padding: 120px 80px;
    background: var(--bg-light);
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-content {
    flex: 1.2;
}

.insight-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    display: block;
    margin-bottom: 20px;
}

.insight-content h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.inline-quote {
    margin: 40px 0;
    padding: 30px;
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
}

.inline-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
}

.insight-image {
    flex: 1;
}

.insight-image img {
    border-radius: 8px;
}

.trust-building {
    padding: 100px 80px;
    background: var(--primary-color);
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 60px;
}

.trust-card {
    text-align: center;
    color: var(--white);
}

.trust-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 16px;
    opacity: 0.9;
}

.testimonials-inline {
    padding: 120px 80px;
    background: var(--bg-light);
}

.testimonials-flow {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

.services-reveal {
    padding: 120px 80px;
    background: var(--white);
}

.reveal-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.reveal-intro h2 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
}

.reveal-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.services-visual-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-visual {
    display: flex;
    gap: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.service-card-visual.featured {
    background: linear-gradient(135deg, #f8f6f3 0%, #ede8df 100%);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.service-image-block {
    flex: 1;
    min-height: 400px;
}

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

.service-details {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-details > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-light);
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.service-includes li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.duration {
    font-size: 14px;
    color: var(--text-light);
}

.service-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.service-cta:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cta-urgency {
    padding: 100px 80px;
    background: var(--secondary-color);
    text-align: center;
}

.urgency-block {
    max-width: 700px;
    margin: 0 auto;
}

.urgency-label {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.urgency-block h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.urgency-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.urgency-countdown {
    margin: 30px 0 40px;
}

.urgency-countdown strong {
    font-size: 24px;
    color: var(--primary-color);
}

.cta-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.form-section {
    padding: 120px 80px;
    background: var(--bg-light);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.booking-form {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    flex: 1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    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-color);
}

.form-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.form-privacy {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
}

.form-privacy a {
    color: var(--accent-color);
    text-decoration: underline;
}

.final-push {
    padding: 120px 80px;
    background: var(--white);
    text-align: center;
}

.final-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.final-question {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--accent-color);
    font-weight: 600;
}

.final-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.final-cta-text {
    font-size: 20px;
    margin: 40px 0;
    color: var(--text-dark);
    font-weight: 600;
}

.cta-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 16px 45px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 80px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

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

.footer-col ul li a {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

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

.sticky-cta button {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.sticky-cta button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
    background: var(--bg-light);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.thanks-service {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.thanks-service strong {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.thanks-service span {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        top: 15px;
        padding: 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .hero-text-block h1 {
        font-size: 48px;
    }

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

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

    .immersion-card {
        height: 400px;
    }

    .insight-wrapper {
        flex-direction: column;
    }

    .trust-grid {
        flex-direction: column;
        gap: 40px;
    }

    .testimonials-flow {
        flex-direction: column;
    }

    .service-card-visual {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-overlay {
        padding: 0 30px;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .story-text-right,
    .visual-immersion,
    .problem-amplification,
    .insight-section,
    .trust-building,
    .testimonials-inline,
    .services-reveal,
    .cta-urgency,
    .form-section,
    .final-push,
    .site-footer {
        padding: 60px 30px;
    }

    .form-row {
        flex-direction: column;
    }

    .narrow-content h2,
    .reveal-intro h2 {
        font-size: 36px;
    }

    .service-details h3 {
        font-size: 24px;
    }

    .price {
        font-size: 32px;
    }
}