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

:root {
    --primary-dark: #1a1a1a;
    --primary-gold: #d4a574;
    --text-light: #f5f5f5;
    --text-dark: #2c2c2c;
    --accent-blue: #3d5a80;
    --bg-light: #fafafa;
    --border-subtle: #e0e0e0;
}

body {
    font-family: 'Georgia', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-light);
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-subtle);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.nav-disclaimer {
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
    max-width: 200px;
    text-align: center;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 4%;
}

.hero-text-block {
    width: 45%;
    padding-right: 3rem;
    z-index: 2;
}

.hero-title-offset {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #555;
    line-height: 1.8;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-dark);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-hero:hover {
    background-color: var(--primary-gold);
    transform: translateX(5px);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 10%;
    width: 55%;
    height: 80%;
    background-color: #ddd;
}

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

.intro-narrative {
    padding: 6rem 4%;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    background-color: white;
}

.intro-left {
    width: 40%;
}

.intro-left h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--primary-dark);
    font-weight: 400;
}

.intro-left p {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.intro-right {
    width: 60%;
}

.intro-right p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.problem-amplification {
    padding: 5rem 4%;
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: var(--bg-light);
}

.problem-card-offset {
    width: 50%;
    padding: 3rem;
    background-color: white;
    border-left: 4px solid var(--primary-gold);
    margin-left: 5%;
}

.problem-card-offset h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 400;
}

.problem-card-offset p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.problem-visual {
    width: 40%;
    background-color: #ccc;
}

.problem-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.insight-section {
    padding: 7rem 4%;
    background-color: var(--accent-blue);
    color: var(--text-light);
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.insight-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.3;
}

.insight-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.insight-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.insight-large {
    width: calc(60% - 1rem);
}

.insight-medium {
    width: calc(55% - 1rem);
}

.insight-small {
    width: calc(40% - 1rem);
}

.insight-number {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 300;
}

.insight-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.insight-item p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.trust-building {
    padding: 6rem 4%;
    background-color: white;
}

.trust-content-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-text {
    width: 50%;
}

.trust-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 400;
}

.trust-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.trust-image {
    width: 50%;
    background-color: #ddd;
}

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

.testimonials-inline {
    padding: 7rem 4%;
    background-color: var(--bg-light);
}

.testimonial-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    padding: 2.5rem;
    border-left: 3px solid var(--primary-gold);
}

.testimonial-offset-1 {
    margin-left: 0;
    width: 70%;
}

.testimonial-offset-2 {
    margin-left: auto;
    width: 75%;
    margin-right: 0;
}

.testimonial-offset-3 {
    margin-left: 10%;
    width: 65%;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #888;
    font-weight: 600;
}

.benefits-reveal {
    padding: 6rem 4%;
    background-color: white;
}

.benefits-header-asymmetric {
    margin-bottom: 4rem;
    margin-left: 8%;
}

.benefits-header-asymmetric h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    font-weight: 400;
    line-height: 1.3;
}

.benefits-layout-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.benefit-block {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    overflow: hidden;
}

.benefit-primary {
    width: 100%;
    flex-direction: row;
}

.benefit-secondary {
    width: calc(45% - 1.25rem);
    padding: 2.5rem;
}

.benefit-tertiary {
    width: calc(55% - 1.25rem);
    flex-direction: row-reverse;
}

.benefit-block img {
    width: 40%;
    height: 300px;
    object-fit: cover;
    background-color: #ccc;
}

.benefit-primary img {
    width: 35%;
    height: 400px;
}

.benefit-content {
    padding: 2.5rem;
}

.benefit-content h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.benefit-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.collections-preview {
    padding: 7rem 4%;
    background-color: var(--bg-light);
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    margin-left: 10%;
    color: var(--primary-dark);
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 4rem;
    margin-left: 10%;
    color: #666;
}

.collections-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.collection-card {
    position: relative;
    overflow: hidden;
    background-color: white;
}

.card-large {
    width: calc(50% - 1rem);
}

.card-medium {
    width: calc(30% - 1rem);
}

.card-small {
    width: calc(20% - 1rem);
}

.collection-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: #ddd;
    transition: transform 0.4s;
}

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

.collection-info {
    padding: 2rem;
}

.collection-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.collection-info p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.cta-collection {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s, color 0.3s;
}

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

.pricing-reveal {
    padding: 7rem 4%;
    background-color: white;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 400;
}

.pricing-intro p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

.pricing-cards-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-left: 5%;
}

.price-card {
    width: calc(33.333% - 1.33rem);
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-top: 3px solid var(--primary-gold);
    position: relative;
}

.price-featured {
    background-color: var(--accent-blue);
    color: var(--text-light);
}

.price-premium {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.price-label {
    position: absolute;
    top: -12px;
    left: 2.5rem;
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.price-featured h3,
.price-premium h3 {
    color: var(--text-light);
}

.price-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #555;
}

.price-featured p,
.price-premium p {
    color: rgba(255, 255, 255, 0.85);
}

.price-amount {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.cta-price {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--primary-dark);
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.3s, transform 0.3s;
}

.price-featured .cta-price,
.price-premium .cta-price {
    background-color: var(--primary-gold);
    color: var(--primary-dark);
}

.cta-price:hover {
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.form-section {
    padding: 7rem 4%;
    background-color: var(--bg-light);
}

.form-wrapper-asymmetric {
    max-width: 900px;
    margin-left: 8%;
    display: flex;
    gap: 4rem;
}

.form-intro {
    width: 40%;
}

.form-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 400;
}

.form-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.contact-form {
    width: 60%;
    background-color: white;
    padding: 3rem;
    border-left: 4px solid var(--primary-gold);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-subtle);
    font-size: 1rem;
    font-family: 'Georgia', serif;
    background-color: var(--bg-light);
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--primary-dark);
    color: white;
    border: none;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-family: 'Georgia', serif;
}

.btn-submit:hover {
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 4rem 4%;
    background-color: #f0f0f0;
    border-top: 1px solid var(--border-subtle);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

.footer-asymmetric {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 4rem 4% 2rem 4%;
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--primary-gold);
}

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

.footer-column li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.85;
    transition: opacity 0.3s, color 0.3s;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-email {
    margin-top: 0.5rem;
    font-weight: 500;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 1.5rem 4%;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--primary-gold);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s;
    font-family: 'Georgia', serif;
}

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

.btn-cookie-accept:hover {
    background-color: #e0b589;
}

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

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-text-block {
        width: 100%;
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .intro-narrative,
    .trust-content-split {
        flex-direction: column;
    }

    .intro-left,
    .intro-right,
    .trust-text,
    .trust-image {
        width: 100%;
    }

    .problem-amplification {
        flex-direction: column;
    }

    .problem-card-offset,
    .problem-visual {
        width: 100%;
        margin-left: 0;
    }

    .insight-large,
    .insight-medium,
    .insight-small {
        width: 100%;
    }

    .benefit-primary,
    .benefit-secondary,
    .benefit-tertiary {
        width: 100%;
    }

    .card-large,
    .card-medium,
    .card-small {
        width: 100%;
    }

    .price-card {
        width: calc(50% - 1rem);
    }

    .form-wrapper-asymmetric {
        flex-direction: column;
        margin-left: 0;
    }

    .form-intro,
    .contact-form {
        width: 100%;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-disclaimer {
        max-width: 100%;
    }

    .hero-title-offset {
        font-size: 2.5rem;
    }

    .price-card {
        width: 100%;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .testimonial-offset-1,
    .testimonial-offset-2,
    .testimonial-offset-3 {
        margin-left: 0;
        width: 100%;
    }
}