/* 기본 리셋 및 변수 설정 */
:root {
    --color-primary: #91795e;   /* 큰 글씨 및 강조 색상 */
    --color-primary-dark: #7a634a;
    --color-secondary: #7a6d56; /* 작은 글씨 및 본문 색상 */
    --color-bg-light: #f7f3ee;  /* 박스 및 배경 색상 */
    --color-white: #ffffff;
    --color-accent-soft: #e8dbcc;
    --shadow-sm: 0 2px 10px rgba(122, 99, 74, 0.06);
    --shadow-md: 0 8px 30px rgba(122, 99, 74, 0.10);
    --shadow-lg: 0 16px 48px rgba(122, 99, 74, 0.14);
    --radius-md: 16px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    color: var(--color-secondary);
    line-height: 1.8;
    background-color: var(--color-white);
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 헤더 */
header {
    height: 74px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1000;
    border-bottom: 1px solid rgba(145, 121, 94, 0.12);
    transition: box-shadow 0.3s;
}

header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 6px;
}

header nav ul li a {
    text-decoration: none;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: 50px;
    transition: color 0.25s, background 0.25s;
}

header nav ul li a:hover {
    color: var(--color-primary);
    background: var(--color-bg-light);
}

/* 공통 섹션 타이틀 */
.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 50px;
    letter-spacing: -1px;
    line-height: 1.4;
}

.section-sub {
    text-align: center;
    font-size: 16px;
    color: var(--color-secondary);
    margin: -35px auto 40px;
    opacity: 0.85;
}

/* 공통 버튼 */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 6px 18px rgba(145, 121, 94, 0.28);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: var(--color-primary-dark);
    box-shadow: 0 10px 24px rgba(145, 121, 94, 0.35);
}

.btn-sm {
    padding: 12px 28px;
    font-size: 15px;
    margin-bottom: 20px;
}

/* 히어로 섹션 */
.hero {
    padding: 110px 0 120px;
    text-align: center;
    background: linear-gradient(180deg, var(--color-white) 0%, #fdfbf8 60%, var(--color-bg-light) 100%);
}

.hero-image-wrap {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.35;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-secondary);
    font-weight: 500;
}

/* 소개 섹션 */
.about {
    padding: 100px 0;
    background-color: var(--color-bg-light);
    text-align: center;
}

.about-content {
    background: var(--color-white);
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-title {
    font-size: 26px;
    color: var(--color-primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.about-desc {
    font-size: 17px;
    line-height: 2;
}

/* 매니저 섹션 */
.manager {
    padding: 100px 0;
}

.manager-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
}

.manager-item {
    display: flex;
    align-items: center;
    gap: 28px;
    background: var(--color-white);
    border: 1px solid rgba(145, 121, 94, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.manager-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.manager-icon-box {
    width: 84px;
    height: 84px;
    background-color: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.manager-icon-box .icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.manager-icon-box .icon-img.round {
    border-radius: 50%;
    object-fit: cover;
}

.manager-text h4 {
    font-size: 21px;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.manager-text p {
    font-size: 15.5px;
    line-height: 1.7;
}

/* 서비스 섹션 */
.services {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--color-white);
    text-align: center;
    padding: 44px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card .service-icon {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin: 0 auto 22px;
    display: block;
}

.service-card h4 {
    font-size: 21px;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    line-height: 1.75;
}

.service-card p b {
    color: var(--color-primary);
}

/* 서비스 진행 과정 */
.process {
    padding: 100px 0;
    overflow-x: auto;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    min-width: 800px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-soft), var(--color-primary), var(--color-accent-soft));
    z-index: 0;
}

.process-step {
    text-align: center;
    z-index: 1;
    width: 160px;
}

.process-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, #a08767, var(--color-primary));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 800;
    margin: 0 auto 20px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 8px 20px rgba(145, 121, 94, 0.25);
}

.process-desc {
    font-size: 14.5px;
    line-height: 1.65;
}

/* 선물 & 대여 섹션 */
.gifts-rentals {
    padding: 100px 0;
    background-color: var(--color-white);
    text-align: center;
}

.gift-section {
    margin-bottom: 100px;
}

.gift-image-box {
    width: 100%;
    max-width: 320px;
    margin: 30px auto;
}

.gift-image-box img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.rental-box {
    background-color: var(--color-bg-light);
    color: var(--color-secondary);
    max-width: 520px;
    margin: 0 auto;
    padding: 40px;
    border-radius: var(--radius-lg);
    font-size: 17px;
    line-height: 2;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

/* 가격 정책 */
.pricing {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.pricing-image-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.pricing-image-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* 이벤트 섹션 */
.event-section {
    padding: 100px 0;
    background-color: #faf8f5;
    text-align: center;
}

.event-image-wrap {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.event-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* 안심 책임 보장제 */
.guarantee-section {
    padding: 100px 0;
    background-color: var(--color-white);
    text-align: center;
}

.guarantee-image-wrap {
    max-width: 680px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(145, 121, 94, 0.12);
}

.guarantee-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* 더 많은 장점들 (인스타그램 스타일 갤러리) */
.advantages {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.click-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 50px;
    vertical-align: middle;
    margin-left: 6px;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.07); }
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.adv-item {
    position: relative;
    aspect-ratio: 4 / 5; /* 원본(1080x1350) 비율 그대로 → 잘림 없음 */
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-white);
    border: 1px solid rgba(145, 121, 94, 0.14);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adv-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.adv-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.adv-item:hover img {
    transform: scale(1.04);
}

.adv-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(70, 55, 40, 0);
    transition: background 0.3s;
}

.adv-item:hover::after {
    background: rgba(70, 55, 40, 0.12);
}

/* 인스타그램 스타일 캐러셀(여러 장) 아이콘 */
.adv-carousel {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    z-index: 2;
    display: flex;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55));
}

/* 라이트박스 */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 12, 9, 0.94);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lb-stage {
    max-width: min(90vw, 860px);
    max-height: 84vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-stage img,
.lb-stage video {
    max-width: min(90vw, 860px);
    max-height: 84vh;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lb-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
    z-index: 2;
}

.lb-close:hover {
    background: rgba(255, 255, 255, 0.28);
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
    z-index: 2;
}

.lb-nav:hover {
    background: rgba(255, 255, 255, 0.28);
}

.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.lb-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
}

/* 최근 소식 (인스타그램) */
.news {
    padding: 100px 0;
    text-align: center;
}

.news-content {
    background: var(--color-bg-light);
    max-width: 640px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.news-content > p {
    font-size: 18px;
    margin-bottom: 28px;
    font-weight: 500;
}

.news-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 30px;
}

.news-photo-grid a {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
}

.news-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.news-photo-grid a:hover img {
    transform: scale(1.06);
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent-soft);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 20px;
    color: var(--color-primary);
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.instagram-link:hover {
    background-color: #d8caba;
    transform: translateY(-2px);
}

.instagram-link .icon {
    margin-right: 12px;
    width: 26px;
    height: 26px;
}

/* FAQ (아코디언) */
.faq {
    padding: 100px 0;
    background-color: var(--color-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    margin-bottom: 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(145, 121, 94, 0.16);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 22px 28px;
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background-color: #fcfbf9;
    transition: background 0.3s;
}

.faq-question i {
    flex-shrink: 0;
    transition: transform 0.35s;
}

.faq-question:hover {
    background-color: var(--color-bg-light);
}

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    color: var(--color-secondary);
    font-size: 16px;
    line-height: 1.8;
    background-color: var(--color-white);
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer ul, .faq-answer ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.faq-answer b {
    color: var(--color-primary);
}

.faq-answer a:not(.btn) {
    color: var(--color-primary);
    font-weight: 700;
}

.faq-image-box {
    margin: 15px 0;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(145, 121, 94, 0.14);
    background-color: var(--color-bg-light);
}

.faq-item.active .faq-answer {
    padding: 25px 28px;
    max-height: 1200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* 문의 유도 배너 */
.inquiry-banner {
    background: linear-gradient(135deg, #a08767 0%, var(--color-primary) 55%, #7d6650 100%);
    padding: 90px 0;
    text-align: center;
    color: var(--color-white);
}

.inquiry-content h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.4;
}

.inquiry-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.92;
}

.btn-inquiry {
    background-color: var(--color-white);
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 800;
    padding: 16px 50px;
    border-radius: 50px;
}

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

/* 푸터 */
.site-footer {
    background-color: #fcfbf9;
    padding: 80px 0 40px;
    border-top: 1px solid var(--color-accent-soft);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--color-primary);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 26px;
    letter-spacing: 1.5px;
}

.footer-logo-circle {
    width: 110px;
    height: 110px;
    background-color: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.footer-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-col {
    flex: 1.5;
    min-width: 250px;
}

.brand-desc {
    color: var(--color-primary);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.8;
}

.links-col {
    flex: 1;
    min-width: 150px;
}

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

.links-col ul li {
    margin-bottom: 16px;
}

.links-col ul li a {
    text-decoration: none;
    color: var(--color-secondary);
    font-size: 15.5px;
    font-weight: 500;
    transition: color 0.3s;
}

.links-col ul li a:hover {
    color: var(--color-primary);
    font-weight: 700;
}

.contact-col {
    flex: 1;
    min-width: 200px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    text-align: center;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: background 0.3s, transform 0.3s;
    width: 160px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--color-accent-soft);
    color: var(--color-secondary);
    font-size: 14.5px;
    line-height: 1.8;
}

.footer-bottom a {
    color: #4a88c7;
    text-decoration: none;
}

/* 카카오톡 플로팅 버튼 */
.kakao-btn {
    position: fixed;
    bottom: 36px;
    right: 36px;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    padding: 15px 26px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(145, 121, 94, 0.35);
    z-index: 9000;
    font-weight: 700;
    font-size: 17px;
    transition: transform 0.3s, background 0.3s;
}

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

/* 모바일 반응형 */
@media (max-width: 768px) {
    .hero { padding: 80px 0 90px; }
    .hero-title { font-size: 32px; }
    header nav { display: none; }

    .section-title { font-size: 27px; margin-bottom: 40px; }
    .section-sub { margin-top: -26px; font-size: 14.5px; }

    .about-content { padding: 40px 24px; }

    .service-grid { grid-template-columns: 1fr; gap: 20px; }

    .manager-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 32px 24px;
    }

    .process-timeline::before { display: none; }
    .process-timeline { flex-direction: column; align-items: center; gap: 40px; min-width: auto; }

    .adv-grid { gap: 7px; }
    .adv-item { border-radius: 10px; }
    .adv-carousel { top: 7px; right: 7px; }
    .adv-carousel svg { width: 15px; height: 15px; }

    .lb-nav { width: 42px; height: 42px; }
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .lb-close { top: 14px; right: 14px; width: 42px; height: 42px; }
    .lb-stage img, .lb-stage video { max-width: 94vw; max-height: 76vh; }

    .news-content { padding: 36px 20px; }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-logo-circle {
        margin: 0 auto 20px;
    }

    .links-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .social-buttons {
        align-items: center;
    }

    .social-btn {
        width: 100%;
        max-width: 250px;
    }

    .kakao-btn {
        bottom: 20px;
        right: 20px;
        padding: 13px 20px;
        font-size: 15px;
    }
}
