<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --main-color: #FAF1E9;
    --accent-color: #D4A373;
    --dark-color: #5C4033;
    --text-color: #3C2A21;
    --light-text: #6B5A4E;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pretendard', 'Apple SD Gothic Neo', sans-serif;
}

body {
    background-color: var(--main-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header &amp; Navigation */
header {
    background-color: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 5%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo img {
    height: 40px;
}

.logo h1 {
    font-size: 1.5rem;
    margin-left: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover {
    color: var(--accent-color);
}

nav ul li a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark-color);
}

/* Main Content */
main {
    padding-top: 56px;
}

section {
    padding: 4rem 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-size: 2rem;
    color: var(--dark-color);
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto;
}

/* Hero Section &amp; Carousel */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide-bg.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.slide-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(212, 163, 115, 0.3);
}

.btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.director-profile {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: var(--main-color);
    border-radius: 10px;
}

.director-img {
    width: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
}

.director-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.director-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.director-info p {
    margin-bottom: 0.5rem;
}

.shop-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-img:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services {
    background-color: var(--main-color);
}

.service-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem;
    background-color: var(--white);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--light-text);
    transition: all 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.service-content {
    display: none;
    animation: fadeIn 0.5s;
}

.service-content.active {
    display: block;
}

.service-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.service-info p {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* Booking Section */
.booking {
    background-color: var(--white);
}

.booking-info {
    max-width: 800px;
    margin: 0 auto;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--main-color);
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.booking-policy {
    background-color: #F8F8F8;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.policy-item {
    margin-bottom: 1rem;
}

.policy-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.policy-item p {
    color: var(--light-text);
}

.booking-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Reviews Section */
.reviews {
    background-color: var(--main-color);
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.review-info .date {
    font-size: 0.9rem;
    color: var(--light-text);
}

.more-review {
    text-align: center;
    margin-top: 35px;
}

.stars {
    color: #FFCC00;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--light-text);
    line-height: 1.8;
}

/* Location Section */
.location {
    background-color: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-right: 1rem;
    min-width: 30px;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.info-text p {
    color: var(--light-text);
}

#comehere {
    background-color: #ff816f;
    color: white;
    text-decoration: none;
    padding: 5px 13px;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 10%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-col p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.naver-map {
    font-weight: bold;
    font-style: normal;
    font-family: Arial, sans-serif;
    color: #03c75a;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* 고정 버튼 컨테이너 스타일 */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

/* 버튼 공통 스타일 */
.fixed-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s;
}

.social-links ul li {
    display: flex;
}

.social-links ul li span {
    line-height: 35px;
}

/* 예약하기 버튼 스타일 */
.booking-button {
    background-color: var(--accent-color, #ff6b6b);
    font-weight: bold;
    font-size: 0.75rem;
    text-decoration: none;
}

/* 위로가기 버튼 스타일 */
.top-button {
    background-color: rgba(0, 0, 0, 0.6);
}

/* 위로가기 삼각형 아이콘 */
.top-button .triangle-up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 15px solid white;
}

/* 버튼 호버 효과 */
.fixed-button:hover {
    transform: translateY(-3px);
    background-color: var(--accent-color-hover, #ff8787);
}

.top-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    section {
        padding: 4rem 5%;
    }
    
    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .shop-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .header-container {
        position: relative;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        background-color: var(--white);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        padding: 1rem;
        display: none;
        z-index: 1000;
    }
    
    nav.active {
        display: block;
        animation: fadeIn 0.3s;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    .slide-content {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .shop-gallery {
        grid-template-columns: 1fr;
    }
    
    .service-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 0.6rem 1rem;
        margin: 0.3rem;
        font-size: 0.9rem;
    }
    
    /* 모바일에서 텍스트 줄이기 */
    [data-tab="semipermanent"] {
        font-size: 0.85rem;
    }
    
    [data-tab="facewaxing"] {
        font-size: 0.85rem;
    }
    
    [data-tab="finemark"] {
        font-size: 0.85rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-info {
        margin-bottom: 1rem;
    }
    
    .booking-steps {
        grid-template-columns: 1fr;
    }
    
    .review-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    .fixed-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .fixed-button {
        width: 45px;
        height: 45px;
    }
}

@media screen and (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .slide-content h2 {
        font-size: 1.4rem;
    }
    
    .director-profile {
        flex-direction: column;
    }

    .director-img {
        width: 100%;
        margin-right: 0;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .tab-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
    
    /* 매우 작은 화면에서 텍스트 더 줄이기 */
    [data-tab="semipermanent"]::after,
    [data-tab="eyelash"]::after,
    [data-tab="facewaxing"]::after,
    [data-tab="finemark"]::after {
        font-size: 0.9rem;
    }
}</pre></body></html>