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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fcfaf7;
    color: #4a4a4a;
    font-size: 1.1rem;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    overflow-x: hidden;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/handmade-paper.png');
    opacity: 0.2;
    pointer-events: none;
    z-index: 100;
}

.navbar-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links li:not(:last-child)::after {
    content: "🍃";
    margin-left: 1.5rem;
    color: #cbd5e0;
    font-size: 0.6rem;
    pointer-events: none;
}

.nav-links li a {
    font-family: Verdana, sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2d3436;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #ff69b4;
}

.logo img {
    height: 140px;
    width: auto;
    margin: 0 3rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 8rem;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 105, 180, 0.35), transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(64, 224, 208, 0.4), transparent 60%);
    background-blend-mode: multiply;
    filter: contrast(110%) brightness(105%);
}

.hero-img {
    width: 85%;
    max-width: 650px;
    height: auto;
    margin-top: -1rem;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.05));
}

.hero-title {
    font-size: clamp(4rem, 12vw, 6rem);
    color: #2d3436;
    margin-top: -2.5rem;
    text-shadow: 0 2px 10px rgba(255,255,255,0.8);
}

.hero-text {
    font-family: Verdana, sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #666666;
    margin-bottom: 2.5rem;
}

.btn-primary {
    background: #2d3436;
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-family: Verdana, sans-serif;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #ff69b4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.2);
}

.features-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #ff69b4;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: 
        "large pink teal"
        "large tall seed";
    gap: 1.5rem;
    grid-auto-rows: 300px;
}

.feature {
    background: white;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
}

.feature:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 15px 40px rgba(216, 151, 170, 0.2);
}

.feature-content { 
    position: relative;
    z-index: 2;
    margin-bottom: auto;}

.bento-item-large { 
    grid-area: large; 
    border-radius: 40% 60% 70% 30% / 50% 40% 60% 50%;
}
.bento-item-large .feature-content { padding-top: 3.5rem; }

.pink-wash { 
    grid-area: pink; 
    background: rgba(255, 105, 180, 0.08); 
    border-radius: 60% 40% 30% 70% / 40% 50% 60% 40%;
}
.teal-wash { 
    grid-area: teal; 
    background: rgba(64, 224, 208, 0.08); 
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
    justify-content: space-between;
    padding-top: 1.5rem;
}
.tall-wash { 
    grid-area: tall; 
    background: #fff; 
    border-radius: 45% 55% 35% 65% / 60% 40% 60% 40%;
    padding-top: 1.5rem;
}
.seed-wash { 
    grid-area: seed; 
    background: rgba(144, 238, 144, 0.08); 
    border-radius: 30% 70% 50% 50% / 40% 40% 60% 60%;
}

.bento-mini-img {
    mix-blend-mode: multiply;
    width: 100%;
    height: auto;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-height: 70%;
    z-index: 1;
}

.bento-item-large .bento-mini-img {
    top: 15%;
    bottom: auto;
    height: 80%;
    max-height: none;
    width: 120%;
    max-width: 120%;
}

.seasonal-bloom {
    padding: 10rem 2rem;
    display: flex;
    justify-content: center;
}

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

.bloom-card {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(64, 224, 208, 0.1));
    padding: 4rem;
    border-radius: 100px 20px 100px 20px;
    text-align: left;
    max-width: 750px;
    border: 1px solid rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.tag {
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 5px;
    color: #DC143C; 
    font-family: Verdana, sans-serif;
}

.bloom-card h3 {
    font-size: clamp(2.5rem, 4vw, 3.5rem); 
    margin: 1rem 0;
    font-weight: 400;
    white-space: nowrap;
}

.floating-flower {
    width: 350px;
    animation: float 6s ease-in-out infinite;
    mix-blend-mode: multiply;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

.btn-outline {
    background: #2d3436;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    margin-top: 2rem;
    cursor: pointer;
    font-family: Verdana, sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #ff69b4;
    transform: translateY(-2px);
}

.about-section {
    padding: 10rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #2d2d2d;
}

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

.about-paper-texture {
    background: white;
    padding: 5rem;
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    box-shadow: 10px 10px 40px rgba(0,0,0,0.03);
    transform: rotate(-0.8deg);
}

.signature {
    width: 350px;
    margin-top: 4rem;
    opacity: 0.9;
    mix-blend-mode: multiply;
    transform: rotate(-1deg); 
}

.journal-section {
    padding: 8rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.journal-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.journal-section .section-header h2 {
    font-size: 5.5rem;
    color: #2d3436;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.journal-section .section-header p {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #ff69b4;
    margin-top: -10px;
}

.journal-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 4rem;
}

.journal-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.journal-row:nth-child(even) {
    flex-direction: row-reverse;
}

.journal-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.journal-text {
    flex: 1.2;
}

.journal-text h4 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
    font-weight: 400;
}

.journal-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 1.5rem 0;
    color: #666;
}

.date {
    color: #ff69b4;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    display: block;
}

.journal-row:nth-child(2) .date {
    color: #40e0d0;
}

.read-note {
    position: relative;
    display: inline-block;
    color: #2d3436;
    text-decoration: none;
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    z-index: 1;
    transition: color 0.3s ease;
}

.read-note::after {
    content: "";
    position: absolute;
    left: -5%;
    bottom: 2px;
    width: 0;
    height: 12px;
    background: rgba(255, 105, 180, 0.4);
    border-radius: 20% 80% 30% 70% / 60% 30% 70% 40%;
    transition: width 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.read-note:hover::after {
    width: 110%;
}

.journal-row:nth-child(even) .read-note::after {
    background: rgba(64, 224, 208, 0.4);
}

.journal-img-tape {
    position: relative;
    padding: 1.5rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 380px;
    transform: rotate(-2deg);
}

.journal-row:nth-child(even) .journal-img-tape {
    transform: rotate(3deg);
}

.journal-img-tape img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    filter: sepia(5%) contrast(98%);
}

.journal-img-tape::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 40px;
    opacity: 0.4;
    z-index: 10;
}

.tape-pink::before {
    background: #ffb6c1;
    transform: translateX(-50%) rotate(2deg);
}

.tape-teal::before {
    background: #40e0d0;
    transform: translateX(-50%) rotate(-3deg);
}

.newsletter {
    padding: 10rem 2rem;
    text-align: center;
}

.newsletter-blob {
    background: radial-gradient(circle, rgba(64, 224, 208, 0.12) 0%, transparent 70%);
    padding: 6rem 2rem;
    display: inline-block;
    border-radius: 50%;
}

.newsletter-form {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.newsletter-form input {
    font-size: 1rem;
    padding: 1.2rem 2rem;
    border-radius: 50px 0 0 50px;
    border: 1px solid #eee;
    width: 300px;
    outline: none;
}

.newsletter-form button {
    background: #2d3436;
    color: white;
    padding: 0 2.5rem;
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #ff69b4;
}

footer {
    padding: 0.8rem 1rem;
    background: #f4f1ed;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.footer-content p {
    margin: 0;
    font-size: 0.95rem;
    font-style: italic;
    color: #a0a0a0;
    letter-spacing: 0.5px;
    white-space: nowrap; 
}

.footer-logo-img {
    height: 140px;
    width: auto;
    opacity: 0.7;
    mix-blend-mode: multiply;
    filter: contrast(1.1);
}

.feature, .bloom-card, .about-paper-texture, .journal-row, .newsletter-blob {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(10px);
    transition: 
        opacity 1.2s ease-out, 
        transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), 
        filter 1.5s ease-out;
    will-change: transform, opacity, filter;
}

.is-visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    filter: blur(0) !important;
}

/* --- Tablets (Max 1024px) --- */
@media (max-width: 1024px) {
    html, body { overflow-x: hidden; width: 100%; position: relative; }

    /* 1. Slim & Centered Tablet Nav */
    .navbar-center { flex-direction: column; padding: 0.8rem 0; width: 100%; height: auto !important; }
    .logo img { height: 75px !important; margin: 0.5rem 0 !important; width: auto; max-width: 100%; }
    .nav-links { width: 100%; justify-content: center; padding: 0; margin: 0; flex-wrap: wrap; }

    /* 2. RE-STABILIZE TABLET GRID */
    .bento-grid {
        display: grid !important; /* Force Grid on Tablets */
        grid-template-columns: 1fr 1fr !important;
        grid-template-areas: 
            "large large" 
            "pink teal" 
            "tall seed" !important;
        grid-auto-rows: auto !important; /* Let boxes grow with text */
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .feature {
        height: auto !important; /* Allow box to expand */
        min-height: 320px !important; /* Minimum height for shape */
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 2.5rem 1.5rem !important;
    }

    /* Force images to stay at bottom, text at top */
    .feature-content { margin-bottom: 2rem; }

    .bento-mini-img, .bento-item-large .bento-mini-img { 
        position: relative !important; 
        top: auto !important; 
        bottom: 0 !important;
        transform: none !important; 
        left: 0 !important; 
        width: 60% !important; 
        margin: auto auto 0 auto !important; 
        max-height: 200px !important;
    }

    .footer-logo-img { height: 70px !important; }
}

/* --- Smartphones (Max 768px) --- */
@media (max-width: 768px) {
    /* 1. Ultra-Slim Smartphone Nav */
    .navbar-center { padding: 0.2rem 0 !important; height: auto !important; width: 100%; }
    .logo img { height: 45px !important; margin: 0.2rem 0 !important; }
    .nav-links { gap: 0.4rem; padding: 0; width: 100%; justify-content: center; }
    .nav-links li a { font-size: 0.6rem; letter-spacing: 0.5px; }

    /* 2. Restore Flower Visibility */
    .bloom-container { flex-direction: column !important; align-items: center !important; width: 100%; }
    .bloom-visual { display: block !important; order: -1 !important; width: 100%; text-align: center; }
    .floating-flower { 
        display: block !important; 
        width: 130px !important; 
        height: auto !important; 
        margin: 0 auto !important; 
        opacity: 1 !important; 
        visibility: visible !important; 
        position: relative !important;
    }

    /* 3. Smartphone Grid: Single Column Stack */
    .bento-grid { 
        display: flex !important; 
        flex-direction: column !important; 
        grid-template-areas: none !important; 
        padding: 0 1rem; 
    }
    
    .feature { width: 100% !important; min-height: auto !important; padding: 2rem 1.2rem !important; border-radius: 25px !important; }

    .feature-content { margin-bottom: 1.5rem; }

    .bento-mini-img, .bento-item-large .bento-mini-img {
        position: relative !important; 
        top: auto !important; 
        bottom: auto !important; 
        left: 0 !important;
        transform: none !important; 
        width: 60% !important; 
        margin: 0 auto !important;
        display: block !important;
        max-height: 180px !important;
    }

    /* 4. Fix Signature & Paper */
    .about-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .signature {
        width: 80% !important;
        max-width: 220px !important;
        margin: 1.5rem auto 0 auto !important;
        transform: rotate(0deg) !important;
        display: block !important;
        position: relative !important;
    }
    .about-paper-texture { transform: rotate(0deg) !important; padding: 2rem 1.2rem !important; width: 100% !important; }

    /* 5. Fix Newsletter & Footer */
    .newsletter-blob { border-radius: 30px !important; width: 100% !important; padding: 2.5rem 1.2rem !important; }
    .newsletter-form { flex-direction: column; width: 100%; gap: 8px; }
    .newsletter-form input, .newsletter-form button { width: 100% !important; border-radius: 50px !important; padding: 0.8rem !important; }

    footer { padding: 0.4rem 0 !important; min-height: auto !important; }
    .footer-content { flex-direction: row !important; gap: 0.5rem; justify-content: center; align-items: center; width: 100%; }
    .footer-logo-img { height: 35px !important; }
    .footer-content p { font-size: 0.65rem; white-space: normal; }
}







