:root {
    --bg: #0d0d0d;
    --bg-elev: #161616;
    --bg-card: #1c1c1c;
    --line: #2a2a2a;
    --text: #ededed;
    --text-dim: #a8a8a8;
    --text-muted: #7a7a7a;
    --accent: #c9a35a;
    --accent-soft: rgba(201, 163, 90, 0.12);
    --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Pretendard Variable', Pretendard, -apple-system, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Header */
.pg-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.pg-header-inner {
    max-width: var(--max); margin: 0 auto;
    padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.pg-logo {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Cinzel', serif; font-weight: 700; font-size: 1.1rem;
    letter-spacing: 0.05em;
}
.pg-logo img { width: 32px; height: 32px; }
.pg-nav { display: flex; gap: 24px; font-size: 0.95rem; }
.pg-nav a { color: var(--text-dim); transition: color 0.2s; }
.pg-nav a:hover, .pg-nav a.active { color: var(--accent); }
.pg-cta {
    padding: 10px 20px; background: var(--accent); color: #111;
    border-radius: 999px; font-weight: 600; font-size: 0.9rem;
    transition: transform 0.2s;
}
.pg-cta:hover { transform: translateY(-1px); }
@media (max-width: 768px) { .pg-nav { display: none; } }

/* Hero */
.pg-hero {
    padding: 100px 24px 70px;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(201, 163, 90, 0.08), transparent 60%);
    border-bottom: 1px solid var(--line);
}
.pg-breadcrumb {
    font-size: 0.85rem; color: var(--text-muted);
    margin-bottom: 24px; letter-spacing: 0.04em;
}
.pg-breadcrumb a { color: var(--text-dim); }
.pg-breadcrumb a:hover { color: var(--accent); }
.pg-subtitle {
    font-family: 'Cinzel', serif; font-size: 0.9rem;
    letter-spacing: 0.3em; color: var(--accent);
    text-transform: uppercase; margin-bottom: 18px;
}
.pg-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800; line-height: 1.25;
    margin-bottom: 24px; letter-spacing: -0.02em;
}
.pg-title .accent { color: var(--accent); }
.pg-lead {
    font-size: 1.1rem; color: var(--text-dim);
    max-width: 720px; margin: 0 auto 32px;
}
.hero-btns { margin-top: 32px; }

/* Sections */
.pg-section {
    padding: 90px 24px;
    border-bottom: 1px solid var(--line);
}
.pg-section.alt { background: var(--bg-elev); }
.container { max-width: var(--max); margin: 0 auto; }
.section-h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700; letter-spacing: -0.01em;
    margin-bottom: 50px; text-align: center;
}

/* Location grid */
.loc-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.loc-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 32px 28px;
    transition: all 0.25s;
}
.loc-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.loc-icon { font-size: 2rem; margin-bottom: 16px; }
.loc-card h3 {
    font-size: 1.2rem; font-weight: 700;
    margin-bottom: 12px; color: var(--text);
}
.loc-card p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.65; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 0;
    overflow: hidden;
}
.faq-item summary {
    padding: 22px 26px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    position: relative;
    transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute; right: 26px; top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem; color: var(--accent);
    transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: rgba(201, 163, 90, 0.05); }
.faq-item p {
    padding: 0 26px 22px;
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA */
.pg-cta-section {
    padding: 100px 24px;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(201, 163, 90, 0.05));
    border-top: 1px solid var(--line);
}
.pg-cta-section h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 18px;
}
.pg-cta-section p { color: var(--text-dim); margin-bottom: 32px; }
.pg-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pg-cta-btns .btn {
    padding: 14px 30px; border-radius: 999px;
    font-weight: 600; font-size: 1rem; transition: all 0.2s;
}
.btn-primary { background: var(--accent); color: #111; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 163, 90, 0.3); }
.btn-ghost { border: 1px solid var(--line); color: var(--text-dim); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Footer */
.pg-footer {
    padding: 50px 24px 40px;
    background: #080808;
    border-top: 1px solid var(--line);
    text-align: center; color: var(--text-muted);
    font-size: 0.85rem;
}
.pg-footer a { color: var(--text-dim); margin: 0 8px; }
.pg-footer a:hover { color: var(--accent); }
.pg-footer-info { margin-top: 14px; line-height: 1.9; }
