.tm-home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #FDFBF7;
}

.tm-home-header {
    text-align: center;
    margin-bottom: 50px;
}

.tm-home-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 50%;
}

.tm-home-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #3E3340;
    margin: 0;
    letter-spacing: 0.02em;
}

.tm-home-tiles {
    display: flex;
    gap: 30px;
    max-width: 700px;
    width: 100%;
}

.tm-tile {
    flex: 1;
    border-radius: 16px;
    padding: 40px 30px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.tm-tile-inner {
    text-align: center;
}

.tm-tile h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

/* Coming Soon tile */
.tm-tile-coming-soon {
    background: #FBF7FA;
    border: 2px solid #e8d5e0;
}

.tm-tile-coming-soon h2 {
    color: #3E3340;
}

.tm-tile-badge {
    display: inline-block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #B889A6;
    background: rgba(184, 137, 166, 0.12);
    padding: 6px 16px;
    border-radius: 50px;
}

/* Bunny Den tile */
.tm-tile-bunny {
    background: #B889A6;
    border: 2px solid #B889A6;
    cursor: pointer;
}

.tm-tile-bunny h2 {
    color: #fff;
}

.tm-tile-bunny:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(184, 137, 166, 0.35);
    background: #A97595;
    border-color: #A97595;
}

.tm-tile-arrow {
    display: inline-block;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.25s ease;
}

.tm-tile-bunny:hover .tm-tile-arrow {
    transform: translateX(4px);
    color: #fff;
}

/* Mobile */
@media (max-width: 600px) {
    .tm-home-tiles {
        flex-direction: column;
        gap: 20px;
    }

    .tm-home-header h1 {
        font-size: 1.8rem;
    }

    .tm-tile {
        padding: 32px 24px;
    }

    .tm-tile h2 {
        font-size: 1.4rem;
    }
}
