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

body {
    font-family: 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif;
    line-height: 1.6;
    color: #3d3d3d;
    background: #fffef9;
}

.pet-header {
    background: #fff;
    color: #3d3d3d;
    padding: 1.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

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

.brand h1 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #d4a574;
    margin-bottom: 0.2rem;
    letter-spacing: 3px;
}

.subtitle {
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 2px;
}

.pet-nav {
    display: flex;
    gap: 2.5rem;
}

.pet-nav a {
    color: #3d3d3d;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s;
}

.pet-nav a:hover {
    color: #d4a574;
}

.welcome-section {
    padding: 0;
    background: #fffef9;
}

.welcome-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 650px;
    align-items: center;
}

.welcome-image {
    width: 100%;
    height: 650px;
    background: #f5f0e8;
    overflow: hidden;
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.welcome-text {
    padding: 4rem;
}

.welcome-title {
    font-size: 4.5rem;
    font-weight: 300;
    color: #3d3d3d;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: 2px;
}

.welcome-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
}

.welcome-btn {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
    background: #d4a574;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 400;
    letter-spacing: 1px;
}

.welcome-btn:hover {
    background: #c49564;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 300;
    color: #3d3d3d;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
}

.services-section {
    padding: 6rem 0;
    background: #fff;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.service-item.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.service-item.reverse .service-image {
    order: 2;
}

.service-item.reverse .service-content {
    order: 1;
}

.service-image {
    width: 100%;
    height: 400px;
    background: #f5f0e8;
    overflow: hidden;
    border-radius: 12px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.service-content {
    padding: 2rem 0;
}

.service-content h3 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #3d3d3d;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.service-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-tags span {
    font-size: 0.85rem;
    color: #d4a574;
    background: rgba(212, 165, 116, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 500;
    color: #d4a574;
    display: block;
}

.products-section {
    padding: 6rem 0;
    background: #fffef9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.15);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 280px;
    background: #f5f0e8;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-info {
    padding: 2rem;
}

.product-info h4 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #3d3d3d;
    margin-bottom: 0.8rem;
}

.product-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 500;
    color: #d4a574;
    display: block;
}

.grooming-section {
    padding: 6rem 0;
    background: #fff;
}

.grooming-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.grooming-info h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #3d3d3d;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.grooming-intro {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.grooming-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #d4a574;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 500;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #3d3d3d;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.grooming-image {
    width: 100%;
    height: 600px;
    background: #f5f0e8;
    overflow: hidden;
    border-radius: 12px;
}

.grooming-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.visit-section {
    padding: 6rem 0;
    background: #fffef9;
}

.visit-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.visit-image {
    width: 100%;
    height: 600px;
    background: #fff;
    overflow: hidden;
    border-radius: 12px;
}

.visit-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.visit-info h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #3d3d3d;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.visit-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.detail-box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-box h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #3d3d3d;
    margin-bottom: 1rem;
}

.detail-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

.pet-footer {
    background: #fff;
    color: #3d3d3d;
    padding: 4rem 0 2rem;
    border-top: 1px solid #e8e8e8;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #d4a574;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.footer-brand p {
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.link-column h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #3d3d3d;
    letter-spacing: 1px;
}

.link-column a {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
    font-weight: 300;
}

.link-column a:hover {
    color: #d4a574;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    font-weight: 300;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 5px;
    max-width: 700px;
    position: relative;
}

.modal-content h2 {
    color: #3d3d3d;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 1px;
}

.modal-content h3 {
    color: #3d3d3d;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.modal-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.close {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    transition: color 0.3s;
}

.close:hover {
    color: #3d3d3d;
}

@media (max-width: 1024px) {
    .welcome-container {
        grid-template-columns: 1fr;
    }
    
    .welcome-text {
        padding: 3rem 2rem;
    }
    
    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-item.reverse .service-image,
    .service-item.reverse .service-content {
        order: initial;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grooming-layout {
        grid-template-columns: 1fr;
    }
    
    .visit-content {
        grid-template-columns: 1fr;
    }
    
    .visit-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .pet-nav {
        gap: 1.5rem;
    }
    
    .welcome-title {
        font-size: 3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
