:root {
    --gold: #c5a059;
    --gold-bright: #f1d38a;
    --deep-black: #0a0a0a;
    --bg-dark: #121212;
    --text-silver: #e0e0e0;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif JP', serif;
    background-color: var(--deep-black);
    color: var(--text-silver);
    line-height: 1.8;
    overflow-x: hidden;
}

/* ヒーローセクション */
.vision-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 20px;
}

.gold-gradient-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, #2c2c2c 0%, #000 100%);
    z-index: -1;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 12vw, 7rem);
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--white);
}

.main-title span {
    color: var(--gold);
    font-weight: 400;
    font-style: italic;
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 40px;
}

/* 鼓動するように光るバッジ */
.launch-badge {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    margin-bottom: 40px;
    background: rgba(197, 160, 89, 0.05);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; box-shadow: 0 0 0px var(--gold); }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(197, 160, 89, 0.3); text-shadow: 0 0 8px var(--gold); }
    100% { opacity: 0.5; box-shadow: 0 0 0px var(--gold); }
}

.manifesto {
    font-size: clamp(1rem, 4vw, 1.3rem);
    line-height: 2.4;
    letter-spacing: 0.25em;
    font-weight: 300;
    color: var(--text-silver);
}

.scroll-text {
    position: absolute;
    bottom: 40px;
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--gold);
    opacity: 0.6;
}

/* ビジョンセクション */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

.future-section { padding: 120px 0; }

.section-heading {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 80px;
    color: var(--gold);
}

.vision-grid {
    display: grid;
    gap: 30px;
}

.vision-card {
    padding: 50px 30px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.vision-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    background: rgba(197, 160, 89, 0.03);
}

.number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.4;
}

.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

/* ローンチセクション */
.launch-section { padding: 100px 0 150px; }

.glitter-box {
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg, #111 0%, #000 100%);
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.status-dot {
    width: 8px; height: 8px;
    background-color: #00ff00;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 10px #00ff00;
}

.status-text { font-size: 0.8rem; letter-spacing: 3px; color: #888; }

.grand-open {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.gold-text { color: var(--gold); }

.description {
    color: #999;
    max-width: 600px;
    margin: 0 auto;
}

/* レスポンシブ */
@media (min-width: 768px) {
    .vision-grid { grid-template-columns: repeat(3, 1fr); }
}

footer {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.copyright { font-size: 0.7rem; color: #555; letter-spacing: 1px; }


/* お問い合わせエリアの装飾 */
.contact-area {
    margin-bottom: 40px;
}

.contact-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: #666;
    margin-bottom: 10px;
}

.contact-email {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.contact-email:hover {
    color: var(--gold-bright);
    border-bottom: 1px solid var(--gold-bright);
    opacity: 0.8;
}

/* スマホでのメールアドレスのサイズ微調整 */
@media (max-width: 480px) {
    .contact-email {
        font-size: 1.2rem;
    }
}