@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Noto+Serif+KR:wght@400;500;600;700&family=Noto+Sans+KR:wght@300;400;500;600;700&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans KR', sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; line-height: 1.7; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
    --bg: #f7f5f1;
    --bg-alt: #efebe4;
    --card: #ffffff;
    --ink: #232220;
    --accent: #a8865a;
    --accent-dark: #8a6c42;
    --accent-light: #e8d5b7;
    --cta: #232220;
    --cta-dark: #000000;
    --text: #232220;
    --text-sub: #5c564e;
    --text-light: #8f887d;
    --border: #d9d2c6;
    --border-light: #e8e3d9;
    --shadow: 0 10px 40px rgba(35,34,32,0.07);
    --shadow-hover: 0 18px 50px rgba(35,34,32,0.13);
    --radius: 2px;
    --radius-sm: 2px;
    --max-w: 1160px;
    --nav-h: 72px;
    --serif: 'Cormorant Garamond', 'Noto Serif KR', serif;
    --sans: 'Noto Sans KR', sans-serif;
}

::selection { background: var(--accent-light); color: var(--ink); }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--ink);
    padding: 10px 24px;
    font-size: 12px;
    letter-spacing: 0.4px;
}
.top-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-left, .top-bar-right { display: flex; gap: 24px; align-items: center; }
.top-bar a { color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.top-bar a:hover { color: var(--accent-light); }

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247,245,241,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 1px 24px rgba(35,34,32,0.08); }
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-logo {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 1px;
    flex-shrink: 0;
    margin-right: 28px;
}
.nav-logo span { color: var(--accent); }
.nav-menu { display: flex; gap: 6px; align-items: center; flex: 1; }
.nav-item { position: relative; }
.nav-item > a {
    display: block;
    padding: 8px 16px;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: var(--text-sub);
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
}
.nav-item > a::after {
    content: '';
    position: absolute;
    left: 16px; right: 16px; bottom: 2px;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-item > a:hover, .nav-item.active > a { color: var(--ink); }
.nav-item > a:hover::after, .nav-item.active > a::after { transform: scaleX(1); }
.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 8px;
    background: #fff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    padding: 8px 0;
    min-width: 168px;
    z-index: 200;
}
.dropdown::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0; right: 0;
    height: 14px;
}
.nav-item:hover .dropdown { display: block; animation: fadeDown 0.18s ease; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 13.5px;
    color: var(--text-sub);
    transition: all 0.2s;
}
.dropdown a:hover { background: var(--bg); color: var(--accent-dark); padding-left: 25px; }
.nav-actions { margin-left: auto; }
.btn-nav-cta {
    display: inline-block;
    background: var(--ink);
    color: #fff;
    padding: 10px 26px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: all 0.25s;
    white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--accent-dark); }

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.hamburger span { display: block; width: 26px; height: 1.5px; background: var(--text); transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    z-index: 99;
    padding: 8px 0 28px;
    box-shadow: 0 20px 40px rgba(35,34,32,0.12);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu-item { border-bottom: 1px solid var(--border-light); }
.mobile-menu-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}
.mobile-menu-item > a span { font-size: 10px; color: var(--text-light); transition: transform 0.3s; }
.mobile-menu-item > a.open span { transform: rotate(180deg); }
.mobile-sub { display: none; background: #fff; }
.mobile-sub.open { display: block; }
.mobile-sub a {
    display: block;
    padding: 12px 36px;
    font-size: 14px;
    color: var(--text-sub);
    border-top: 1px solid var(--border-light);
}
.mobile-sub a:hover { color: var(--accent-dark); }
.mobile-menu-cta {
    display: block;
    margin: 20px 24px 0;
    background: var(--ink);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.5px;
}

/* ===== LAYOUT ===== */
.section { padding: 110px 24px; }
.section-alt { background: var(--bg-alt); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
    display: block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    text-align: center;
}
.section-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--accent);
    margin: 14px auto 0;
}
.section-title {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.35;
    letter-spacing: -0.5px;
}
.section-subtitle { font-size: 15.5px; color: var(--text-light); text-align: center; margin-bottom: 64px; font-weight: 300; letter-spacing: 0.3px; }

/* ===== 스크롤 리빌 ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== HERO (메인) ===== */
.hero-main {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--ink);
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1.8s ease;
    opacity: 0;
}
.hero-bg-img.active { opacity: 1; animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,18,15,0.62) 0%, rgba(20,18,15,0.32) 45%, rgba(20,18,15,0.66) 100%);
    z-index: 1;
}
.hero-main::after { display: none; }
.hero-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.hero-dot {
    width: 26px; height: 2px;
    border-radius: 0;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}
.hero-dot.active { background: var(--accent-light); width: 44px; }
.hero-content { position: relative; z-index: 3; max-width: 780px; margin: 0 auto; padding: 0 24px; }
.hero-eyebrow {
    display: inline-block;
    color: var(--accent-light);
    padding: 0 0 18px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(232,213,183,0.45);
}
.hero-main h1 {
    font-family: var(--serif);
    font-size: 66px;
    font-weight: 600;
    color: #fff;
    line-height: 1.28;
    margin-bottom: 26px;
    letter-spacing: -1px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero-main p { font-size: 16.5px; font-weight: 300; color: rgba(255,255,255,0.78); margin-bottom: 44px; line-height: 2; letter-spacing: 0.5px; text-shadow: 0 1px 10px rgba(0,0,0,0.3); }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    display: inline-block;
    background: var(--accent-light);
    color: var(--ink);
    padding: 16px 46px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: 1px solid var(--accent-light);
}
.btn-primary:hover { background: #fff; border-color: #fff; }
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 16px 46px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ===== 메인 서비스 카드 ===== */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    display: block;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--accent-light); }
.service-card-thumb {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.service-card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    filter: saturate(0.92);
}
.service-card:hover .service-card-thumb img { transform: scale(1.05); filter: saturate(1); }
.service-card-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(20,18,15,0.35) 100%);
}
.service-card-body { padding: 30px 28px 32px; }
.service-card-category { font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 3px; margin-bottom: 12px; }
.service-card-title { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.service-card-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.8; margin-bottom: 18px; font-weight: 300; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.stag { border: 1px solid var(--border); color: var(--text-sub); padding: 4px 12px; font-size: 11.5px; letter-spacing: 0.5px; }
.service-card-arrow { display: flex; align-items: center; gap: 6px; margin-top: 22px; font-size: 12.5px; font-weight: 500; letter-spacing: 1.5px; color: var(--ink); transition: color 0.3s; }
.service-card:hover .service-card-arrow { color: var(--accent-dark); }

/* ===== 이미지 갤러리 그리드 ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid.col4 { grid-template-columns: repeat(4, 1fr); }
.gallery-item {
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
}
.gallery-item.tall { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20,18,15,0);
    transition: background 0.35s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(20,18,15,0.28); }

/* ===== Before/After 슬라이더 ===== */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ba-card {
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--card);
    border: 1px solid var(--border-light);
}
.ba-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
}
.ba-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-img-after { clip-path: inset(0 50% 0 0); }
.ba-divider {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--accent-light);
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.45);
}
.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 42px; height: 42px;
    background: var(--accent-light);
    border-radius: 50%;
    box-shadow: 0 2px 14px rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--ink);
    pointer-events: none;
}
.ba-labels { display: flex; }
.ba-label {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
}
.ba-label.before { background: var(--bg-alt); color: var(--text-light); }
.ba-label.after  { background: var(--ink); color: var(--accent-light); }

/* ===== 이미지 배경 페이지 헤더 ===== */
.page-header-img {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--ink);
}
.page-header-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.page-header-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,18,15,0.66) 0%, rgba(20,18,15,0.44) 100%);
}
.page-header-img::after { display: none; z-index: 2; }
.page-header-img-content { position: relative; z-index: 3; }
.page-header-img h1 { font-family: var(--serif); font-size: 48px; font-weight: 600; color: #fff; margin-bottom: 14px; letter-spacing: -0.5px; text-shadow: 0 2px 16px rgba(0,0,0,0.3); }
.page-header-img p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.78); letter-spacing: 0.5px; }
.page-header-img .section-label { color: var(--accent-light); }
.page-header-img .section-label::after { background: var(--accent-light); }

/* ===== 이미지 카드 (썸네일 위주) ===== */
.img-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: none;
    transition: all 0.35s;
}
.img-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--accent-light); }
.img-card-thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.img-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.img-card:hover .img-card-thumb img { transform: scale(1.05); }
.img-card-body { padding: 22px 24px; }
.img-card-title { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.img-card-desc { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 12px; font-weight: 300; }
.img-card-price { font-size: 19px; font-weight: 600; color: var(--accent-dark); }
.img-card-price small { font-size: 12px; font-weight: 400; color: var(--text-light); }
.btn-consult { display: inline-block; margin-top: 8px; padding: 8px 20px; background: var(--ink); color: #fff; font-size: 12.5px; font-weight: 500; letter-spacing: 1px; text-decoration: none; transition: background 0.2s; }
.btn-consult:hover { background: var(--accent-dark); }

/* ===== 어바웃 이미지 ===== */
.about-img {
    overflow: hidden;
    height: 460px;
    position: relative;
}
.about-img::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(232,213,183,0.55);
    pointer-events: none;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== 어바웃 섹션 ===== */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
    background: linear-gradient(135deg, var(--bg-alt), var(--accent-light));
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    order: -1;
}
.about-text .section-label { text-align: left; }
.about-text .section-label::after { margin-left: 0; }
.about-text h2 { font-family: var(--serif); font-size: 38px; font-weight: 600; color: var(--text); margin-bottom: 24px; line-height: 1.42; letter-spacing: -0.5px; }
.about-text p { font-size: 15px; color: var(--text-sub); line-height: 2; margin-bottom: 16px; font-weight: 300; }
.stats-row { display: flex; gap: 48px; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--border); }
.stat-num { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--accent-dark); }
.stat-label { font-size: 12px; color: var(--text-light); margin-top: 4px; letter-spacing: 1px; }

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--bg-alt);
    padding: 90px 24px 76px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% -20%, rgba(232,213,183,0.35) 0%, transparent 65%);
    pointer-events: none;
}
.page-header-content { position: relative; }
.page-header h1 { font-family: var(--serif); font-size: 44px; font-weight: 600; color: var(--text); margin-bottom: 14px; letter-spacing: -0.5px; }
.page-header p { font-size: 16px; color: var(--text-sub); font-weight: 300; letter-spacing: 0.3px; }

/* ===== SUB NAV ===== */
.sub-nav {
    background: rgba(247,245,241,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 0 24px;
    position: sticky;
    top: var(--nav-h);
    z-index: 50;
}
.sub-nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.sub-nav a {
    display: block;
    padding: 17px 22px;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-light);
    border-bottom: 1px solid transparent;
    white-space: nowrap;
    transition: all 0.2s;
}
.sub-nav a:hover, .sub-nav a.active { color: var(--ink); border-bottom-color: var(--accent); }

/* ===== 서비스 섹션 ===== */
.service-section-title {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.service-section-desc { font-size: 15px; color: var(--text-sub); margin-bottom: 44px; font-weight: 300; }

/* ===== 카드 그리드 ===== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
    background: var(--card);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.35s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--accent-light); }
.card-thumb {
    height: 160px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    position: relative;
}

/* ===== 가격표 ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}
.pricing-card:hover { box-shadow: var(--shadow-hover); }
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.pricing-badge-top {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--accent-light);
    padding: 5px 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}
.pricing-name { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.pricing-price { font-family: var(--serif); font-size: 40px; font-weight: 600; color: var(--accent-dark); }
.pricing-price small { font-size: 16px; font-weight: 400; }
.pricing-unit { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.pricing-features { text-align: left; margin-bottom: 28px; }
.pricing-features li { padding: 9px 0; border-bottom: 1px solid var(--border-light); font-size: 14px; color: var(--text-sub); display: flex; align-items: center; gap: 10px; font-weight: 300; }
.pricing-features li::before { content: '—'; color: var(--accent); font-weight: 400; flex-shrink: 0; }
.pricing-cta { display: block; background: var(--ink); color: #fff; padding: 14px; font-weight: 500; font-size: 13px; letter-spacing: 1.5px; transition: all 0.2s; }
.pricing-cta:hover { background: var(--accent-dark); }
.pricing-card.featured .pricing-cta { background: var(--accent-dark); }
.pricing-card.featured .pricing-cta:hover { background: var(--ink); }
.note-box { background: var(--bg-alt); border-left: 2px solid var(--accent); padding: 22px 26px; font-size: 14px; color: var(--text-sub); margin-top: 32px; line-height: 1.9; font-weight: 300; }

/* ===== 프로세스 ===== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.process-steps::before {
    content: '';
    position: absolute;
    top: 27px; left: 12%; right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}
.process-step { text-align: center; position: relative; }
.process-number {
    width: 54px; height: 54px;
    background: var(--bg);
    border: 1px solid var(--accent);
    color: var(--accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 600;
    margin: 0 auto 18px;
    font-family: var(--serif);
    position: relative;
    z-index: 1;
}
.process-title { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.process-desc { font-size: 13px; color: var(--text-light); line-height: 1.7; font-weight: 300; }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; font-size: 15.5px; font-weight: 500; color: var(--text); gap: 16px; }
.faq-arrow { font-size: 10px; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-answer-inner { padding: 0 0 24px; font-size: 14px; color: var(--text-sub); line-height: 1.9; font-weight: 300; }

/* ===== 특징 리스트 ===== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    padding: 36px 30px;
    transition: all 0.35s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--accent-light); }
.feature-icon { font-size: 34px; margin-bottom: 20px; }
.feature-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.feature-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.8; font-weight: 300; }

/* ===== CTA 섹션 ===== */
.cta-section {
    background: var(--ink);
    padding: 110px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 120%, rgba(168,134,90,0.22) 0%, transparent 60%);
    pointer-events: none;
}
.cta-section > * { position: relative; }
.cta-section h2 { font-family: var(--serif); font-size: 42px; font-weight: 600; color: #fff; line-height: 1.4; margin-bottom: 18px; letter-spacing: -0.5px; }
.cta-section p { font-size: 15.5px; font-weight: 300; color: rgba(255,255,255,0.55); margin-bottom: 48px; letter-spacing: 0.5px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.cta-button {
    display: inline-block;
    background: var(--accent-light);
    color: var(--ink);
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: all 0.3s;
}
.cta-button:hover { background: #fff; }
.cta-button-kakao {
    display: inline-block;
    background: #FEE500;
    color: #3A1D1D;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.cta-button-kakao:hover { transform: translateY(-2px); filter: brightness(1.04); }
.cta-button-outline {
    display: inline-block;
    background: transparent;
    color: rgba(255,255,255,0.85);
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.35);
    transition: all 0.3s;
}
.cta-button-outline:hover { background: rgba(255,255,255,0.08); border-color: var(--accent-light); color: var(--accent-light); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 720px; margin: 0 auto; }
.contact-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 28px 16px;
    text-align: center;
    transition: all 0.3s;
}
.contact-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(232,213,183,0.4); transform: translateY(-3px); }
.contact-icon { font-size: 28px; margin-bottom: 12px; }
.contact-label { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.4); margin-bottom: 8px; text-transform: uppercase; }
.contact-value { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); }

/* ===== 유튜브 영상 그리드 ===== */
.yt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.yt-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.35s;
    display: block;
    cursor: pointer;
}
.yt-card:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}
.yt-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}
.yt-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.yt-card:hover .yt-thumb img { transform: scale(1.05); }
.yt-play {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.18);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.yt-card:hover .yt-play { background: rgba(0,0,0,0.38); }
.yt-play-btn {
    width: 52px; height: 52px;
    background: #FF0000;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff; padding-left: 4px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    transition: transform 0.3s;
}
.yt-card:hover .yt-play-btn { transform: scale(1.08); }
.yt-body { padding: 14px 16px; }
.yt-badge { font-size: 11px; color: #FF0000; font-weight: 700; margin-bottom: 4px; letter-spacing: 0.5px; }
.yt-title { font-size: 13.5px; font-weight: 500; color: var(--text); line-height: 1.5; }
@media (max-width: 900px) { .yt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .yt-grid { grid-template-columns: 1fr; } }

/* ===== 방송 다시보기 ===== */
.replay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.replay-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.35s;
    display: block;
}
.replay-card:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}
.replay-thumb {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    background: var(--bg-alt);
}
.replay-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.replay-card:hover .replay-thumb img { transform: scale(1.05); }
.replay-play {
    position: absolute;
    inset: 0;
    background: rgba(20,18,15,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.replay-card:hover .replay-play { background: rgba(20,18,15,0.4); }
.replay-play-btn {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding-left: 4px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: transform 0.3s;
}
.replay-card:hover .replay-play-btn { transform: scale(1.08); }
.replay-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: #03C75A;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
}
.replay-body { padding: 15px 17px; }
.replay-platform { font-size: 11px; color: var(--text-light); margin-bottom: 4px; letter-spacing: 0.5px; }
.replay-title { font-size: 14px; font-weight: 500; color: var(--text); }

@media (max-width: 1024px) { .replay-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .replay-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .replay-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ===== 푸터 ===== */
.footer { background: #191816; padding: 68px 24px 36px; }
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { font-family: var(--serif); font-size: 26px; font-weight: 600; color: #fff; margin-bottom: 16px; letter-spacing: 1px; }
.footer-brand span { color: var(--accent-light); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 2; font-weight: 300; }
.footer-heading { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.45); margin-bottom: 18px; letter-spacing: 2.5px; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; font-weight: 300; }
.footer-links a:hover { color: var(--accent-light); }
.footer-contact { display: flex; flex-direction: column; gap: 11px; }
.footer-contact-item { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 300; }
.footer-bottom {
    max-width: var(--max-w);
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.22);
    flex-wrap: wrap;
    gap: 8px;
    letter-spacing: 0.5px;
}

/* ===== 플로팅 버튼 ===== */
.floating-buttons { position: fixed; bottom: 24px; right: 22px; display: flex; flex-direction: column; gap: 10px; z-index: 1000; }
.float-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: all 0.3s;
    cursor: pointer;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,0.25); }
.float-kakao { background: #FEE500; color: #3A1D1D; font-weight: 800; font-size: 15px; }
.float-talk  { background: #03C75A; color: #fff; font-weight: 700; font-size: 13px; }
.float-phone { background: var(--ink); color: var(--accent-light); font-size: 18px; }
.float-top   { background: rgba(35,34,32,0.85); color: #fff; font-size: 15px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .about-wrap { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { height: 220px; order: 0; }
    .about-img { height: 320px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .nav-menu, .nav-actions { display: none; }
    .hamburger { display: flex; }
    .hero-main h1 { font-size: 38px; }
    .hero-main p { font-size: 14.5px; }
    .hero-eyebrow { font-size: 11px; letter-spacing: 3.5px; }
    .section { padding: 72px 20px; }
    .section-title { font-size: 30px; }
    .section-subtitle { margin-bottom: 44px; }
    .page-header h1 { font-size: 32px; }
    .page-header-img { height: 320px; }
    .page-header-img h1 { font-size: 32px; }
    .cta-section { padding: 80px 24px; }
    .cta-section h2 { font-size: 30px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .top-bar-left { display: none; }
}
@media (max-width: 540px) {
    .service-grid { grid-template-columns: 1fr; }
    .card-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 300px; text-align: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-button, .cta-button-kakao, .cta-button-outline { width: 100%; max-width: 300px; text-align: center; }
}

/* ===== about.html 전용 스타일 ===== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--text-sub);
    line-height: 2.1;
    font-weight: 300;
}
.about-content h3 {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 600;
    color: var(--text);
    margin: 48px 0 18px;
}
.about-content h3:first-child { margin-top: 0; }
.about-content p { margin-bottom: 16px; }
.about-highlight {
    background: var(--card);
    border-left: 2px solid var(--accent);
    padding: 26px 32px;
    margin: 34px 0;
    font-size: 15px;
    color: var(--text-sub);
    line-height: 2;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 44px 0;
}
.about-stat {
    text-align: center;
    padding: 34px;
    background: var(--card);
    border: 1px solid var(--border-light);
}
.about-stat .num {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 8px;
}
.about-stat .label { font-size: 13px; color: var(--text-light); letter-spacing: 0.5px; }
@media (max-width: 768px) {
    .about-stats { grid-template-columns: 1fr; }
}

/* ===== restore.html card-img 호환 ===== */
.card-img {
    width: 100%;
    height: 230px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    position: relative;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    z-index: 2;
}
.badge-best { background: var(--ink); color: var(--accent-light); }
.badge-new  { background: #03C75A; }
.badge-hit  { background: var(--accent-dark); }
.card-body { padding: 24px; }
.card-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.card-desc { font-size: 13.5px; color: var(--text-sub); line-height: 1.8; margin-bottom: 14px; font-weight: 300; }
.card-price { font-size: 21px; font-weight: 600; color: var(--accent-dark); }
.card-price small { font-size: 13px; font-weight: 400; color: var(--text-light); }
.card-action {
    display: inline-block;
    background: #03C75A;
    color: #fff;
    padding: 10px 26px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 12px;
    transition: all 0.2s;
}
.card-action:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(3,199,90,0.3); }

/* ===== 카테고리 탭 갤러리 ===== */
.cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border);
}
.cat-tab {
    padding: 14px 26px;
    border: none;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
    background: transparent;
    color: var(--text-light);
    font-family: var(--sans);
    font-size: 14.5px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s;
}
.cat-tab:hover { color: var(--ink); }
.cat-tab.active { background: transparent; border-bottom-color: var(--ink); color: var(--ink); font-weight: 600; }
.cat-panel { display: none; }
.cat-panel.active { display: block; animation: catFade 0.5s ease; }
@keyframes catFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.cat-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-alt);
}
.cat-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.cat-item:hover img { transform: scale(1.05); }
.cat-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(20,18,15,0.65));
    color: #fff;
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 32px 16px 16px;
    opacity: 0;
    transition: opacity 0.35s;
}
.cat-item:hover .cat-overlay { opacity: 1; }
.cat-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-sub);
}
.cat-empty-icon { font-size: 48px; margin-bottom: 16px; }
.cat-empty p { font-size: 16px; }
@media (max-width: 640px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .cat-tab { padding: 10px 16px; font-size: 13px; }
}

/* ===== 제품사진 다양한 그리드 ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
}
.p-item {
    position: relative;
    overflow: hidden;
    background: var(--bg-alt);
}
.p-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.p-item:hover img { transform: scale(1.05); }
.p-item:hover .cat-overlay { opacity: 1; }
.p-tall { grid-row: span 2; }
.p-wide { grid-column: span 2; }
.p-full { grid-column: span 3; height: 270px; }
@media (max-width: 640px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .p-tall { grid-row: span 2; }
    .p-wide { grid-column: span 2; }
    .p-full { grid-column: span 2; height: 180px; }
}
