:root {
    --gold: #C9A962;
    --gold-light: #e8d5a8;
    --gold-glow: rgba(201, 169, 98, 0.25);
    --hope-blue: #7EB8C9;
    --bg-deep: #0a0a0c;
    --bg-subtle: #101014;
    --bg-card: #16161a;
    --text-main: #f0ebe3;
    --text-muted: #8a857a;
    --text-dim: #5a5650;
    --font-display: 'Shippori Mincho', serif;
    --font-body: 'Zen Kaku Gothic New', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-weight: 300; background: var(--bg-deep); color: var(--text-main); line-height: 1.9; font-size: 16px; }

/* Navigation */
.lang-switch {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(12px);
    padding: 0.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(201, 169, 98, 0.15);
}

.lang-switch a {
    padding: 0.4rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.lang-switch a.active {
    background: var(--gold);
    color: var(--bg-deep);
}

.lang-switch a:hover:not(.active) {
    color: var(--text-main);
}

/* Hero */
.press-hero {
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 50%), var(--bg-deep);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.press-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.press-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1rem;
}

.press-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Main Content */
.press-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.press-section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.press-section:last-child {
    border-bottom: none;
}

.press-section h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
}

/* Summary */
.press-summary {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.press-summary .lead {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.press-summary p {
    color: var(--text-muted);
}

/* Fact Grid */
.fact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fact-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(201, 169, 98, 0.1);
}

.fact-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.fact-value {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Story Angles */
.story-angles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.story-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-3px);
}

.story-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.story-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.story-tag {
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    background: rgba(126, 184, 201, 0.1);
    color: var(--hope-blue);
    border-radius: 1rem;
    margin-right: 0.5rem;
}

/* Assets Grid */
.assets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.asset-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.asset-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.asset-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.asset-name {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.asset-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.assets-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Bio Grid */
.bio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.bio-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(201, 169, 98, 0.1);
}

.bio-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.bio-role {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.bio-card p:last-child {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Verification Box */
.verification-box {
    background: rgba(126, 184, 201, 0.05);
    border: 1px solid rgba(126, 184, 201, 0.2);
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.verification-box p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.verification-box ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.verification-box li {
    font-size: 0.9rem;
    color: var(--text-main);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.verification-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--hope-blue);
}

.verification-note {
    font-style: italic;
    color: var(--hope-blue) !important;
    margin-bottom: 0 !important;
}

/* Contact */
.press-contact .contact-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(201, 169, 98, 0.15);
}

.contact-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-method a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--gold-light);
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-memorial {
    font-family: var(--font-display);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

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

.footer-location {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-dim);
}

/* Responsive */
@media (max-width: 900px) {
    .fact-grid { grid-template-columns: repeat(2, 1fr); }
    .assets-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .fact-grid,
    .story-angles,
    .assets-grid,
    .bio-grid { grid-template-columns: 1fr; }

    .lang-switch { top: 1rem; right: 1rem; }

    .press-hero { padding: 5rem 1.5rem 3rem; }

    .contact-method { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* Print */
@media print {
    html, body { background: #fff !important; color: #000 !important; }
    * { background: transparent !important; color: #000 !important; }
    .lang-switch { display: none !important; }
    a[href]:after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
