/* ============================================
   파소파소커피 - 원두로스팅 커스텀 CSS
   디자인패턴: 기업 신뢰 (corp-trust)
   ============================================ */

:root {
    --pp-primary: #3C2415;
    --pp-secondary: #8B6914;
    --pp-accent: #D4A843;
    --pp-dark: #1A0F0A;
    --pp-warm: #5C3A1E;
    --pp-cream: #FFF8F0;
    --pp-text: #2C1810;
    --pp-text-light: #6B5B4E;
    --pp-border: #E8DDD0;
    --pp-bg-section: #FAF5EE;
}

/* === Global Reset & Base === */
body {
    font-family: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--pp-text);
    line-height: 1.8;
}

/* === Hero Section === */
.pp-hero {
    background: linear-gradient(135deg, var(--pp-dark) 0%, var(--pp-primary) 50%, var(--pp-warm) 100%);
    color: #fff;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pp-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(212,168,67,0.08)" stroke-width="0.5"/></svg>') repeat;
    background-size: 120px;
}
.pp-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -0.02em;
}
.pp-hero .pp-subtitle {
    font-size: 1.2rem;
    color: var(--pp-accent);
    margin-bottom: 12px;
    font-weight: 500;
}
.pp-hero .pp-contact-badge {
    display: inline-block;
    background: rgba(212,168,67,0.15);
    border: 1px solid rgba(212,168,67,0.3);
    padding: 10px 28px;
    border-radius: 50px;
    color: #fff;
    font-size: 1.1rem;
    margin-top: 20px;
    letter-spacing: 0.05em;
}

/* === Section Base === */
.pp-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.pp-section-alt {
    background: var(--pp-bg-section);
}
.pp-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pp-primary);
    text-align: center;
    margin-bottom: 16px;
}
.pp-section-desc {
    text-align: center;
    color: var(--pp-text-light);
    max-width: 700px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* === Trust Badges === */
.pp-trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: #fff;
    border-bottom: 1px solid var(--pp-border);
}
.pp-trust-item {
    text-align: center;
    min-width: 140px;
}
.pp-trust-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--pp-secondary);
}
.pp-trust-label {
    font-size: 0.9rem;
    color: var(--pp-text-light);
    margin-top: 4px;
}

/* === Service Cards === */
.pp-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.pp-service-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--pp-border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.pp-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(60,36,21,0.1);
}
.pp-service-card h3 {
    color: var(--pp-primary);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}
.pp-service-card p {
    color: var(--pp-text-light);
    line-height: 1.7;
}

/* === Image Gallery === */
.pp-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 40px 0;
}
.pp-gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}
.pp-gallery img:hover {
    transform: scale(1.03);
}

/* === Info Box === */
.pp-info-box {
    background: linear-gradient(135deg, var(--pp-cream), #fff);
    border-left: 4px solid var(--pp-secondary);
    padding: 28px 32px;
    border-radius: 0 10px 10px 0;
    margin: 32px 0;
}
.pp-info-box h3 {
    color: var(--pp-primary);
    margin-bottom: 8px;
}

/* === CTA Section === */
.pp-cta {
    background: linear-gradient(135deg, var(--pp-primary), var(--pp-dark));
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-radius: 16px;
    margin: 40px auto;
    max-width: 900px;
}
.pp-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.pp-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}
.pp-cta-button {
    display: inline-block;
    background: var(--pp-accent);
    color: var(--pp-dark);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s;
}
.pp-cta-button:hover {
    background: #E5BD5A;
}

/* === FAQ Section === */
.pp-faq-item {
    background: #fff;
    border: 1px solid var(--pp-border);
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 24px 28px;
}
.pp-faq-item h3 {
    color: var(--pp-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.pp-faq-item h3::before {
    content: 'Q. ';
    color: var(--pp-secondary);
    font-weight: 800;
}
.pp-faq-item p {
    color: var(--pp-text-light);
    line-height: 1.7;
}

/* === Footer === */
.pp-footer {
    background: var(--pp-dark);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
    line-height: 2;
}
.pp-footer strong {
    color: rgba(255,255,255,0.9);
}

/* === Article/Post Styles === */
.pp-article-wrapper {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}
.pp-article-wrapper h2 {
    color: var(--pp-primary);
    font-size: 1.6rem;
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pp-border);
}
.pp-article-wrapper h3 {
    color: var(--pp-warm);
    font-size: 1.3rem;
    margin: 32px 0 12px;
}
.pp-article-wrapper p {
    margin-bottom: 18px;
    line-height: 1.9;
}
.pp-article-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}
.pp-article-wrapper ul, .pp-article-wrapper ol {
    margin: 16px 0;
    padding-left: 24px;
}
.pp-article-wrapper li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* === Highlight Block === */
.pp-highlight {
    background: linear-gradient(135deg, #FEF9F0, #FFF5E1);
    border: 1px solid #E8D5B8;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 24px 0;
}
.pp-highlight p {
    margin-bottom: 0;
    color: var(--pp-primary);
    font-weight: 500;
}

/* === Future Vision Block (미래상상형) === */
.pp-future-vision {
    background: linear-gradient(135deg, var(--pp-dark), #2A1A10);
    color: #fff;
    border-radius: 14px;
    padding: 36px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
}
.pp-future-vision::after {
    content: '✦';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 1.5rem;
    color: var(--pp-accent);
    opacity: 0.4;
}
.pp-future-vision h3 {
    color: var(--pp-accent);
    margin-bottom: 12px;
}
.pp-future-vision p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

/* === Responsive === */
@media (max-width: 768px) {
    .pp-hero h1 { font-size: 2rem; }
    .pp-hero { padding: 60px 16px 50px; }
    .pp-section { padding: 48px 16px; }
    .pp-trust-bar { gap: 20px; }
    .pp-trust-number { font-size: 1.6rem; }
    .pp-services { grid-template-columns: 1fr; }
    .pp-gallery { grid-template-columns: 1fr 1fr; }
    .pp-gallery img { height: 180px; }
    .pp-article-wrapper { padding: 24px 16px; }
    .pp-future-vision { padding: 24px; }
}
