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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    border: 1px solid #ddd;
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
}

.hero-minimal {
    margin-top: 100px;
    padding: 8rem 3rem 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-subtext {
    font-size: 1.3rem;
    color: #666;
    font-weight: 300;
    margin-bottom: 4rem;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    margin-top: 3rem;
    background-color: #f5f5f5;
}

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

.story-intro {
    padding: 10rem 3rem;
    background: #fafafa;
}

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

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.story-intro h2 {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

.story-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.problem-amplify {
    padding: 8rem 3rem;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.split-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.insight-reveal {
    padding: 10rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
}

.insight-box h3 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.insight-box > p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    color: #ccc;
}

.insight-points {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
}

.point {
    flex: 1;
}

.point h4 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.point p {
    font-size: 1rem;
    line-height: 1.7;
    color: #bbb;
}

.trust-building {
    padding: 8rem 3rem;
}

.trust-building h3 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.trust-building p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    color: #444;
}

.testimonials-inline {
    padding: 8rem 3rem;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-block blockquote {
    border-left: 3px solid #1a1a1a;
    padding-left: 2rem;
}

.testimonial-block p {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.collection-reveal {
    padding: 10rem 3rem;
}

.collection-reveal h2 {
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 5rem;
}

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

.collection-card {
    width: calc(33.333% - 2rem);
    min-width: 320px;
    cursor: pointer;
    transition: transform 0.3s;
}

.collection-card:hover {
    transform: translateY(-8px);
}

.card-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #f5f5f5;
    margin-bottom: 1.5rem;
}

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

.card-content h4 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.8rem;
}

.price {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin-top: 1rem !important;
}

.cta-primary {
    padding: 8rem 3rem 4rem;
    text-align: center;
}

.cta-primary h3 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.cta-primary p {
    font-size: 1.15rem;
    color: #666;
}

.form-section {
    padding: 4rem 3rem 10rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background: #ffffff;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

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

.final-trust {
    padding: 8rem 3rem;
    background: #fafafa;
}

.final-trust h3 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.final-trust p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.footer-minimal {
    background: #1a1a1a;
    color: #ffffff;
    padding: 5rem 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bbb;
}

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

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

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding-top: 3rem;
    border-top: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #888;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ddd;
    padding: 2rem;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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.5;
    color: #444;
}

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

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

.cookie-btn.accept {
    background: #1a1a1a;
    color: #ffffff;
}

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

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

.cookie-btn.reject:hover {
    background: #f5f5f5;
}

@media (max-width: 1024px) {
    .split-content {
        flex-direction: column;
        gap: 3rem;
    }

    .insight-points {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .collection-card {
        width: calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

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

    .story-intro h2 {
        font-size: 2rem;
    }

    .collection-card {
        width: 100%;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}