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

body {
    font-family: 'Crimson Text', 'Georgia', 'Times New Roman', serif;
    line-height: 1.9;
    color: #3a3a3a;
    background:
        /* Wood grain texture */
        repeating-linear-gradient(
            90deg,
            #8b6f47 0px,
            #9d7f57 2px,
            #8b6f47 4px,
            #7a5f3e 6px,
            #8b6f47 8px,
            #9d7f57 10px,
            #8b6f47 12px
        ),
        /* Wood knots and variation */
        radial-gradient(ellipse 150px 80px at 20% 30%, rgba(90, 70, 45, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 120px 60px at 75% 60%, rgba(90, 70, 45, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 100px 50px at 45% 80%, rgba(90, 70, 45, 0.2) 0%, transparent 50%),
        /* Base wood color with aging */
        linear-gradient(180deg, #9d8863 0%, #8b7651 50%, #7a6540 100%);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    position: relative;
}


.container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero-section {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    background:
        /* Left margin line (starts after top margin) */
        linear-gradient(
            to right,
            transparent 0,
            transparent calc(50% - 325px - 40px),
            rgba(255, 99, 99, 0.25) calc(50% - 325px - 40px),
            rgba(255, 99, 99, 0.25) calc(50% - 325px - 39px),
            transparent calc(50% - 325px - 39px)
        ),
        /* Horizontal lines (college ruled) */
        repeating-linear-gradient(
            to bottom,
            transparent 0px,
            transparent 26px,
            rgba(139, 155, 126, 0.15) 26px,
            rgba(139, 155, 126, 0.15) 27px
        ),
        /* Paper texture */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(200, 195, 180, 0.03) 2px,
            rgba(200, 195, 180, 0.03) 4px
        ),
        /* Aged paper with subtle shadows */
        radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
        #f5f1e8;
    text-align: center;
    position: relative;
    margin: 3rem auto;
    max-width: 900px;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.hero-content {
    max-width: 750px;
    width: 100%;
    padding: 0;
}

.logo {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #e8ede5 0%, #dce3d8 100%);
    border-radius: 2px;
    border: 3px dashed rgba(139, 155, 126, 0.4);
    box-shadow:
        inset 0 0 0 1px rgba(139, 155, 126, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transform: rotate(-2deg);
}

.logo-icon {
    font-size: 2.5rem;
    margin-bottom: 0;
    line-height: 1;
    position: relative;
    display: inline-block;
    font-family: 'UnifrakturMaguntia', 'Crimson Text', Georgia, serif;
    font-weight: 400;
    font-style: normal;
    background: linear-gradient(135deg, #d4af37 0%, #f9d77e 25%, #c5a028 50%, #f9d77e 75%, #d4af37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: 0;
    animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.logo-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3426;
    letter-spacing: 2px;
    text-transform: lowercase;
    opacity: 0.95;
    line-height: 1;
    margin-top: -0.3rem;
}

.letter-content {
    max-width: 650px;
    margin: 0 auto 3rem;
    text-align: left;
    padding: 0;
    background: transparent;
    border-radius: 4px;
    padding-top: 27px;
}

.letter-greeting {
    font-size: 1.5rem;
    color: #2d3426;
    margin-bottom: 27px;
    font-weight: 400;
    font-family: 'Caveat', 'Crimson Text', cursive;
    line-height: 27px;
    padding-bottom: 0;
    position: relative;
    top: -7px;
}

.letter-body {
    font-size: 1.3rem;
    color: #2d3426;
    line-height: 27px;
    margin-bottom: 27px;
    font-weight: 400;
    font-family: 'Caveat', 'Crimson Text', cursive;
    padding-bottom: 0;
    position: relative;
    top: -5px;
}

.letter-signature {
    font-size: 1.4rem;
    color: #2d3426;
    margin-top: 0;
    margin-bottom: 27px;
    font-weight: 400;
    font-family: 'Caveat', 'Crimson Text', cursive;
    line-height: 27px;
    padding-bottom: 0;
    position: relative;
    top: -6px;
}

.letter-char {
    display: inline;
}

.letter-char-hidden {
    opacity: 0;
}

.letter-char:not(.letter-char-hidden) {
    opacity: 1;
    transition: opacity 0.15s ease-in;
}

.hero-signup {
    margin-top: 0;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    position: relative;
}

.hero-signup .sold-out-badge {
    display: inline-block;
    background: transparent;
    color: #2d3426;
    padding: 0;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    font-family: 'Caveat', 'Crimson Text', cursive;
    margin-bottom: 0.5rem;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2d3426;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Caveat', 'Crimson Text', cursive;
    line-height: 1.4;
}

.hero-signup-text {
    font-size: 1.3rem;
    color: #2d3426;
    margin-bottom: 1.5rem;
    line-height: 27px;
    text-align: center;
    font-family: 'Caveat', 'Crimson Text', cursive;
    font-weight: 500;
    position: relative;
    top: -29px;
    padding-bottom: 0;
    margin-top: 0;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-btn {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    font-size: 1.2rem;
    font-family: 'Crimson Text', Georgia, serif;
    font-weight: 600;
    color: #f5f6f3;
    background: #6b7a61;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(107, 122, 97, 0.25);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(107, 122, 97, 0.35);
    background: #5a6951;
}

/* Story Section */
.story-section {
    padding: 7rem 2rem;
    background: #fff;
}

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

.story-section h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: #2d3426;
    margin-bottom: 2.5rem;
    text-align: left;
}

.story-content p {
    font-size: 1.35rem;
    line-height: 2;
    color: #4a4a4a;
    margin-bottom: 1.8rem;
}

.story-signature {
    font-style: italic;
    color: #6a6a6a;
    margin-top: 2.5rem;
    font-size: 1.25rem;
}

/* What You Get Section */
.what-section {
    padding: 7rem 2rem;
    background: #f5f6f3;
}

.what-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 400;
    color: #2d3426;
    margin-bottom: 4.5rem;
}

.what-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
}

.what-item {
    text-align: center;
}

.what-image {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.what-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2d3426;
    margin-bottom: 1rem;
}

.what-item p {
    font-size: 1.25rem;
    color: #5a5a5a;
    line-height: 1.85;
}

/* Plan Section */
.plan-section {
    padding: 7rem 2rem;
    background: #fff;
    text-align: center;
}

.plan-card {
    max-width: 500px;
    margin: 0 auto;
}

.plan-card h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #2d3426;
    margin-bottom: 2rem;
}

.price-display {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 4rem;
    font-weight: 400;
    color: #6b7a61;
}

.frequency {
    font-size: 1.3rem;
    color: #6a6a6a;
    margin-left: 0.5rem;
}

.plan-description {
    font-size: 1.3rem;
    color: #5a5a5a;
    line-height: 1.8;
    font-style: italic;
}

#email {
    padding: 1.1rem 1.3rem;
    font-size: 1.15rem;
    font-family: 'Caveat', 'Crimson Text', cursive;
    border: none;
    border-bottom: 2px solid rgba(139, 155, 126, 0.6);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

#email:focus {
    outline: none;
    border-bottom-color: #6b7a61;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

#email::placeholder {
    color: rgba(45, 52, 38, 0.6);
    font-family: 'Caveat', 'Crimson Text', cursive;
}

.submit-btn {
    padding: 1.1rem 2.5rem;
    font-size: 1.2rem;
    font-family: 'Caveat', 'Crimson Text', cursive;
    font-weight: 500;
    color: #2d3426;
    background: rgba(139, 155, 126, 0.15);
    border: 2px solid rgba(139, 155, 126, 0.6);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: rgba(139, 155, 126, 0.25);
    border-color: #6b7a61;
    transform: none;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    font-size: 1.1rem;
    text-align: center;
    min-height: 24px;
}

.form-message.success {
    color: #2d7a2d;
    font-weight: 600;
}

.form-message.error {
    color: #c44;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 7rem 2rem;
    background: #f5f6f3;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 400;
    color: #2d3426;
    margin-bottom: 4.5rem;
}

.testimonials-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.testimonial {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #8b9b7e;
}

.quote {
    font-size: 1.3rem;
    line-height: 1.85;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    font-size: 1.1rem;
    color: #6a6a6a;
    font-style: normal;
}

/* Final CTA Section */
.final-cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #97a98d 0%, #8b9b7e 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 3.5rem;
    font-weight: 400;
    color: #2d3426;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta p {
    font-size: 1.4rem;
    color: rgba(45, 52, 38, 0.85);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    text-align: center;
    background: #3d4a37;
    color: rgba(245, 246, 243, 0.75);
    font-size: 1.05rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-small {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body::before,
    body::after {
        width: 150px;
        height: 70vh;
    }

    .headline {
        font-size: 3rem;
    }

    .subheadline {
        font-size: 1.2rem;
    }

    .logo {
        padding: 0.8rem 1.3rem;
    }

    .logo-icon {
        font-size: 3rem;
    }

    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .hero-signup {
        padding: 2rem 1.5rem;
    }

    .what-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-section h2,
    .what-section h2,
    .testimonials-section h2 {
        font-size: 2.2rem;
    }

    .final-cta h2 {
        font-size: 2.5rem;
    }

    .price {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    body::before,
    body::after {
        width: 110px;
        height: 60vh;
    }

    .headline {
        font-size: 2.5rem;
    }

    .subheadline {
        font-size: 1.15rem;
    }

    .logo {
        margin-bottom: 2.5rem;
        padding: 0.7rem 1.1rem;
    }

    .logo-icon {
        font-size: 2.5rem;
    }

    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 2.5px;
    }

    .hero-signup {
        padding: 2rem 1.25rem;
        margin-top: 2rem;
    }

    .hero-signup-text {
        font-size: 1.05rem;
    }

    .cta-btn {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
    }

    .hero-section {
        min-height: 85vh;
        padding: 3rem 1.5rem;
    }

    .story-content p {
        font-size: 1.2rem;
    }

    .what-item p,
    .quote {
        font-size: 1.15rem;
    }
}
