/* ============================================
   이윤선 쿠킹스튜디오 - 기업 케이터링
   Dark Crimson Theme
   ============================================ */

:root {
    --cc-crimson: #DC2626;
    --cc-crimson-dark: #B91C1C;
    --cc-crimson-light: #EF4444;
    --cc-bg: #0A0707;
    --cc-bg-card: #151010;
    --cc-bg-card2: #1C1414;
    --cc-bg-elevated: #221818;
    --cc-cream: #F5EBE1;
    --cc-white: #FAF5F0;
    --cc-text: #E8DDD3;
    --cc-text-muted: #9C8B80;
    --cc-border: #2E2222;
    --cc-border-light: #3D2E2E;
    --cc-gold: #D4AF37;
    --cc-shadow: rgba(0, 0, 0, 0.4);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cc-bg);
    color: var(--cc-text);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

/* ========== NAVIGATION ========== */
.cc-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 7, 7, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--cc-border);
    transition: all 0.3s;
}

.cc-nav.scrolled {
    border-bottom-color: var(--cc-crimson);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.08);
}

.cc-nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.cc-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.cc-logo img { height: 44px; width: auto; }

.cc-nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
}

.cc-nav-menu a {
    color: var(--cc-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    position: relative;
}

.cc-nav-menu a:hover { color: var(--cc-crimson-light); }

.cc-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cc-crimson);
    transition: width 0.3s;
}

.cc-nav-menu a:hover::after { width: 100%; }

.cc-nav-cta {
    padding: 9px 22px;
    background: transparent;
    color: var(--cc-crimson) !important;
    border: 1.5px solid var(--cc-crimson);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.cc-nav-cta:hover {
    background: var(--cc-crimson);
    color: #fff !important;
}

.cc-mob-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.cc-mob-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cc-cream);
    margin: 5px 0;
    transition: 0.3s;
}

/* ========== HERO ========== */
.cc-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--cc-bg);
}

.cc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cc-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: saturate(0.6);
}

.cc-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(10,7,7,0.95) 0%, rgba(10,7,7,0.7) 50%, rgba(10,7,7,0.85) 100%);
}

.cc-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1140px;
    margin: 0 auto;
    padding: 140px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cc-hero-tag {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid var(--cc-crimson);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--cc-crimson);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.cc-hero h1 {
    font-size: 52px;
    font-weight: 900;
    color: var(--cc-white);
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.cc-hero h1 span {
    color: var(--cc-crimson);
}

.cc-hero-desc {
    font-size: 17px;
    color: var(--cc-text-muted);
    line-height: 1.9;
    margin-bottom: 40px;
}

.cc-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.cc-btn-crimson {
    background: var(--cc-crimson);
    color: #fff;
}

.cc-btn-crimson:hover {
    background: var(--cc-crimson-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.25);
}

.cc-btn-ghost {
    background: transparent;
    color: var(--cc-cream);
    border: 1.5px solid var(--cc-border-light);
}

.cc-btn-ghost:hover {
    border-color: var(--cc-crimson);
    color: var(--cc-crimson-light);
}

.cc-hero-visual {
    position: relative;
}

.cc-hero-visual img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--cc-border);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.cc-hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--cc-border);
}

.cc-stat strong {
    display: block;
    font-size: 34px;
    font-weight: 800;
    color: var(--cc-crimson);
}

.cc-stat span {
    font-size: 12px;
    color: var(--cc-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========== SECTIONS ========== */
.cc-section {
    padding: 100px 24px;
}

.cc-section-dark {
    background: var(--cc-bg-card);
}

.cc-container {
    max-width: 1140px;
    margin: 0 auto;
}

.cc-sec-head {
    text-align: center;
    margin-bottom: 64px;
}

.cc-sec-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cc-crimson);
    margin-bottom: 16px;
}

.cc-sec-head h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--cc-white);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.cc-sec-head p {
    font-size: 16px;
    color: var(--cc-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========== SERVICE GRID ========== */
.cc-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cc-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cc-card {
    background: var(--cc-bg-card2);
    border: 1px solid var(--cc-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s;
}

.cc-card:hover {
    transform: translateY(-6px);
    border-color: var(--cc-crimson);
    box-shadow: 0 16px 48px rgba(220, 38, 38, 0.08);
}

.cc-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: saturate(0.85);
    transition: filter 0.3s;
}

.cc-card:hover img {
    filter: saturate(1);
}

.cc-card-body {
    padding: 24px;
}

.cc-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--cc-white);
    margin-bottom: 8px;
}

.cc-card p {
    font-size: 14px;
    color: var(--cc-text-muted);
    line-height: 1.7;
}

.cc-card-price {
    margin-top: 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--cc-crimson);
}

/* ========== FEATURE CARDS ========== */
.cc-feat {
    text-align: center;
    padding: 36px 20px;
    background: var(--cc-bg-card2);
    border: 1px solid var(--cc-border);
    border-radius: 12px;
    transition: all 0.3s;
}

.cc-feat:hover {
    border-color: var(--cc-crimson);
    transform: translateY(-4px);
}

.cc-feat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: var(--cc-bg);
    border: 1px solid var(--cc-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-feat h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--cc-white);
    margin-bottom: 8px;
}

.cc-feat p {
    font-size: 13px;
    color: var(--cc-text-muted);
    line-height: 1.7;
}

/* ========== PROCESS STEPS ========== */
.cc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.cc-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--cc-border);
}

.cc-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cc-step-num {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    background: var(--cc-bg);
    border: 2px solid var(--cc-crimson);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--cc-crimson);
}

.cc-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--cc-white);
    margin-bottom: 6px;
}

.cc-step p {
    font-size: 13px;
    color: var(--cc-text-muted);
    line-height: 1.6;
}

/* ========== GALLERY ========== */
.cc-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.cc-gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--cc-border);
    filter: saturate(0.8) brightness(0.9);
    transition: all 0.3s;
    cursor: pointer;
}

.cc-gallery img:hover {
    filter: saturate(1) brightness(1);
    transform: scale(1.02);
    border-color: var(--cc-crimson);
}

/* ========== FAQ ========== */
.cc-faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.cc-faq-item {
    border: 1px solid var(--cc-border);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--cc-bg-card2);
    transition: border-color 0.3s;
}

.cc-faq-item:hover {
    border-color: var(--cc-border-light);
}

.cc-faq-q {
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--cc-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.cc-faq-q:hover {
    background: var(--cc-bg-elevated);
}

.cc-faq-q::after {
    content: '+';
    font-size: 20px;
    color: var(--cc-crimson);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.cc-faq-item.active .cc-faq-q::after {
    transform: rotate(45deg);
}

.cc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.cc-faq-item.active .cc-faq-a {
    max-height: 500px;
    padding: 0 24px 20px;
}

.cc-faq-a p {
    font-size: 14px;
    color: var(--cc-text-muted);
    line-height: 1.9;
}

/* ========== POSTS GRID ========== */
.cc-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.cc-post-card {
    background: var(--cc-bg-card2);
    border: 1px solid var(--cc-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.cc-post-card:hover {
    transform: translateY(-4px);
    border-color: var(--cc-crimson);
    box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}

.cc-post-card a {
    text-decoration: none;
    color: inherit;
}

.cc-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: saturate(0.85);
}

.cc-post-card:hover img {
    filter: saturate(1);
}

.cc-post-body {
    padding: 22px;
}

.cc-post-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--cc-white);
    margin-bottom: 8px;
    line-height: 1.4;
}

.cc-post-body p {
    font-size: 13px;
    color: var(--cc-text-muted);
    line-height: 1.7;
}

/* ========== CTA ========== */
.cc-cta {
    background: linear-gradient(135deg, #1A0A0A, #2D1111);
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cc-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220,38,38,0.06), transparent 60%);
    transform: translate(-50%, -50%);
}

.cc-cta h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--cc-white);
    margin-bottom: 16px;
    position: relative;
}

.cc-cta p {
    font-size: 16px;
    color: var(--cc-text-muted);
    margin-bottom: 36px;
    position: relative;
}

.cc-cta-phone {
    font-size: 36px;
    font-weight: 800;
    color: var(--cc-crimson);
    display: block;
    margin-bottom: 28px;
    text-decoration: none;
    position: relative;
}

/* ========== FOOTER ========== */
.cc-footer {
    background: #050303;
    border-top: 1px solid var(--cc-border);
    padding: 60px 24px 36px;
    color: var(--cc-text-muted);
}

.cc-footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.cc-footer-brand strong {
    color: var(--cc-white);
    font-size: 17px;
    display: block;
    margin-bottom: 14px;
}

.cc-footer-brand {
    font-size: 14px;
    line-height: 1.9;
}

.cc-footer h4 {
    color: var(--cc-white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.cc-footer-links {
    list-style: none;
}

.cc-footer-links li {
    margin-bottom: 8px;
}

.cc-footer-links a {
    color: var(--cc-text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.cc-footer-links a:hover {
    color: var(--cc-crimson);
}

.cc-footer-bottom {
    max-width: 1140px;
    margin: 36px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--cc-border);
    text-align: center;
    font-size: 12px;
    color: var(--cc-text-muted);
}

/* ========== WP POST CONTENT ========== */
.cc-post-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 24px;
}

.cc-post-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--cc-white);
    margin: 40px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--cc-border);
}

.cc-post-content h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--cc-cream);
    margin: 28px 0 12px;
}

.cc-post-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--cc-text);
    margin-bottom: 18px;
}

.cc-post-content ul, .cc-post-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.cc-post-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--cc-text);
    margin-bottom: 6px;
}

.cc-post-content blockquote {
    border-left: 3px solid var(--cc-crimson);
    padding: 16px 24px;
    background: var(--cc-bg-card2);
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
}

.cc-post-content blockquote p {
    font-style: italic;
    color: var(--cc-text-muted);
}

.cc-post-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 24px 0;
    border: 1px solid var(--cc-border);
}

.cc-info-box {
    background: var(--cc-bg-card2);
    border: 1px solid var(--cc-border);
    border-radius: 10px;
    padding: 24px;
    margin: 24px 0;
}

.cc-info-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--cc-white);
    margin-bottom: 12px;
}

.cc-highlight {
    background: var(--cc-bg-elevated);
    border-left: 3px solid var(--cc-crimson);
    border-radius: 0 10px 10px 0;
    padding: 28px;
    margin: 24px 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .cc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .cc-hero h1 { font-size: 40px; }
    .cc-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .cc-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .cc-steps { grid-template-columns: repeat(2, 1fr); }
    .cc-steps::before { display: none; }
    .cc-gallery { grid-template-columns: repeat(2, 1fr); }
    .cc-footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .cc-nav-menu {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(10,7,7,0.98);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--cc-border);
    }
    .cc-nav-menu.open { display: flex; }
    .cc-mob-btn { display: block; }
    .cc-hero { min-height: auto; }
    .cc-hero-inner { padding: 120px 24px 60px; }
    .cc-hero h1 { font-size: 32px; }
    .cc-hero-stats { gap: 24px; flex-wrap: wrap; }
    .cc-stat strong { font-size: 26px; }
    .cc-section { padding: 64px 24px; }
    .cc-sec-head h2 { font-size: 28px; }
    .cc-grid-3, .cc-grid-4 { grid-template-columns: 1fr; }
    .cc-steps { grid-template-columns: 1fr; }
    .cc-gallery { grid-template-columns: repeat(2, 1fr); }
    .cc-gallery img { height: 180px; }
    .cc-cta h2 { font-size: 28px; }
    .cc-cta-phone { font-size: 26px; }
    .cc-hero-btns { flex-direction: column; }
    .cc-btn { justify-content: center; }
}
