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

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #8b7355;
    --accent-color: #c9a876;
    --text-color: #333;
    --light-bg: #f8f6f3;
    --white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

.hero-story {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-wrapper {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
}

.intro-hook {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

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

.intro-text {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: center;
    color: var(--primary-color);
}

.problem-reveal {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 400;
}

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.problem-visual {
    flex: 1;
}

.problem-visual img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.insight-section {
    padding: 7rem 2rem;
    background: var(--primary-color);
    color: var(--white);
}

.insight-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.insight-title {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.insight-main {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.insight-detail {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.story-flow {
    padding: 0;
    background: var(--light-bg);
}

.story-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.story-split img {
    width: 50%;
    object-fit: cover;
}

.story-content {
    width: 50%;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 400;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.inline-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease;
}

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

.trust-builder {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.trust-wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 400;
}

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

.trust-card {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.trust-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.trust-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

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

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

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

.testimonial cite {
    font-style: normal;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.visual-break {
    height: 500px;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collections-reveal {
    padding: 6rem 2rem;
    background: var(--white);
}

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

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

.collections-subtext {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.7;
}

.collection-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.collection-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: var(--light-bg);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-5px);
}

.collection-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.collection-details {
    padding: 2rem;
}

.collection-details h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.collection-details p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.collection-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 1.5rem;
}

.select-service-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

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

.select-service-btn.selected {
    background: var(--accent-color);
    color: var(--primary-color);
}

.urgency-block {
    padding: 4rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.urgency-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.final-cta-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.cta-wrapper p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.form-section {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.form-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 400;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-helper {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

.submit-btn {
    padding: 1.2rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

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

.submit-btn:disabled {
    background: var(--border-color);
    cursor: not-allowed;
}

.guarantee-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--white);
    border: 2px solid var(--accent-color);
    text-align: center;
}

.guarantee-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.guarantee-box p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

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

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: var(--white);
    padding: 4rem 3rem;
    border-top: 4px solid var(--accent-color);
}

.thanks-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-detail {
    background: var(--light-bg);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 3px solid var(--secondary-color);
}

.thanks-detail strong {
    color: var(--secondary-color);
}

.back-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease;
}

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

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

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

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

    .content-wrapper,
    .story-split {
        flex-direction: column;
    }

    .story-split img,
    .story-content {
        width: 100%;
    }

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

    .collection-item {
        flex: 1 1 100%;
    }

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

@media (max-width: 640px) {
    .intro-text {
        font-size: 1.2rem;
    }

    .problem-text h2,
    .insight-title,
    .collections-intro h2 {
        font-size: 2rem;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .sticky-btn {
        width: 100%;
    }
}