/* ═══════════════════════════════════════
   Kirkana About Page
   guide.css 의 토큰·topbar·footer 스타일을 그대로 이어 사용한다.
   이 파일은 about 페이지 고유 레이아웃만 정의.
   ═══════════════════════════════════════ */

/* ═══ LAYOUT ═══ */
.about-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

/* ═══ HERO ═══ */
.about-hero {
    padding: 3.5rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
    margin-bottom: 3rem;
}

.about-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    opacity: 0.8;
}

.about-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 900;
    color: var(--parchment);
    line-height: 1.3;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.about-tagline {
    font-size: 1.02rem;
    color: #b0a888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.85;
}

/* ═══ SECTIONS ═══ */
.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.18);
}

.about-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: var(--gold-light);
    letter-spacing: 0.03em;
    margin: 0 0 0.7rem;
}

.about-section p {
    color: #b8b09a;
    font-size: 0.98rem;
    line-height: 1.95;
    margin-bottom: 1.1rem;
}

.about-section strong {
    color: var(--parchment);
    font-weight: 700;
}

.about-section em {
    color: var(--gold-light);
    font-style: italic;
}

.about-section a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.about-section a:hover {
    color: var(--gold-light);
}

/* ═══ QUOTE ═══ */
.about-section p.about-quote {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: var(--gold-light);
    text-align: center;
    margin: 2.5rem 0 1rem;
    padding: 1.8rem 1rem;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    letter-spacing: 0.02em;
    font-style: italic;
    line-height: 1.7;
}

/* ═══ TIME CARDS — 토막 시간 섹션 ═══ */
.time-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
}

.time-card {
    background: rgba(201, 169, 110, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.12);
    padding: 1.5rem 1.4rem;
    transition: all 0.3s;
}

.time-card:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: rgba(201, 169, 110, 0.25);
    transform: translateY(-3px);
}

.time-card h3 {
    margin-bottom: 0.6rem;
}

.time-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 0;
    color: #a09880;
}

/* ═══ PAY-TO-TIME LIST ═══ */
.p2t-list {
    margin: 2rem 0;
}

.p2t-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    align-items: start;
}

.p2t-item:last-child {
    border-bottom: none;
}

.p2t-num {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(201, 169, 110, 0.4);
    line-height: 1;
    min-width: 3rem;
}

.p2t-body h3 {
    margin-bottom: 0.6rem;
}

.p2t-body p {
    margin-bottom: 0;
}

/* ═══ ROADMAP ═══ */
.roadmap {
    margin: 1.5rem 0;
}

.roadmap-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    align-items: start;
}

.roadmap-item:last-child {
    border-bottom: none;
}

.roadmap-stage {
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    padding: 0.4rem 0.5rem;
    border: 1px solid rgba(201, 169, 110, 0.3);
    text-align: center;
    height: fit-content;
}

.roadmap-content h3 {
    margin-bottom: 0.6rem;
}

.roadmap-content p {
    margin-bottom: 0;
}

/* ═══ CONTACT ═══ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin: 1.5rem 0;
}

.contact-card {
    background: rgba(201, 169, 110, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.12);
    padding: 1.5rem 1.4rem;
}

.contact-label {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0.7rem;
}

.contact-card h3 {
    margin-bottom: 0.7rem;
}

.contact-card p {
    margin-bottom: 0;
    font-size: 0.92rem;
}

.about-section a.contact-email {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
}

/* ═══ CREDITS ═══ */
.credits-list {
    list-style: none;
    padding: 1rem 0;
    margin: 1rem 0;
}

.credits-list li {
    padding: 0.7rem 0;
    font-size: 0.92rem;
    color: #a09880;
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
    line-height: 1.7;
}

.credits-list li:last-child {
    border-bottom: none;
}

.credits-list strong {
    color: var(--gold-light);
    display: inline-block;
    min-width: 7rem;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* ═══ CTA SECTION ═══ */
.about-cta-section {
    text-align: center;
    padding: 4rem 1rem;
    margin-top: 3rem;
    background:
            radial-gradient(ellipse at center, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.about-cta-section h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.3rem);
    color: var(--parchment);
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

.about-cta-section p {
    color: #a09880;
    margin-bottom: 2rem;
    line-height: 1.85;
}

.about-cta-button {
    display: inline-block;
    padding: 14px 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.12em;
    border: 1px solid var(--gold);
    transition: all 0.3s;
}

.about-cta-button:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 0 30px rgba(201, 169, 110, 0.3);
    transform: translateY(-2px);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
    .about-container {
        padding: 1.5rem 1.2rem 3rem;
    }

    .about-hero {
        padding: 2rem 0 2.5rem;
    }

    .about-section {
        margin-bottom: 3rem;
    }

    .p2t-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .p2t-num {
        font-size: 1.4rem;
    }

    .roadmap-item {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .roadmap-stage {
        width: fit-content;
    }

    .credits-list strong {
        display: block;
        margin-bottom: 0.2rem;
    }
}