/* ===== TOKENS ===== */
:root {
  --blue:       #2563eb;
  --text:       #111;
  --text-muted: #666;
  --text-faint: #999;
  --bg:         #fff;
  --bg-2:       #f7f7f7;
  --border:     #ebebeb;
  --nav:        60px;
  --t:          .15s ease;
  --font:       'Inter', system-ui, sans-serif;
}

[data-theme="dark"] {
  --text:       #f0f0f0;
  --text-muted: #888;
  --text-faint: #555;
  --bg:         #0a0a0a;
  --bg-2:       #111;
  --border:     #222;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.7; -webkit-font-smoothing: antialiased; transition: background var(--t), color var(--t); }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar { position: sticky; top: 0; z-index: 300; height: var(--nav); background: var(--bg); border-bottom: 1px solid transparent; transition: border-color var(--t), background var(--t); }
.navbar.scrolled { border-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { font-size: 1rem; font-weight: 800; letter-spacing: -.4px; }
.logo em { font-style: normal; color: var(--blue); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: .85rem; color: var(--text-muted); transition: color var(--t); }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.theme-btn { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: none; border: 1px solid var(--border); color: var(--text-muted); transition: color var(--t); }
.theme-btn:hover { color: var(--text); }
[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"]  .icon-sun  { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 18px; height: 1.5px; background: var(--text); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== BUTTON ===== */
.btn-primary { display: inline-block; padding: 9px 22px; background: var(--text); color: var(--bg); font-size: .85rem; font-weight: 600; border-radius: 5px; border: none; transition: opacity var(--t); }
.btn-primary:hover { opacity: .75; }

/* ===== LABELS ===== */
.section-label { display: inline-block; font-size: .65rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.section-label.centered { display: block; text-align: center; }
.section-title { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -.5px; line-height: 1.2; margin-bottom: 8px; }
.section-title.centered { text-align: center; }
.section-sub { font-size: .88rem; color: var(--text-muted); max-width: 460px; margin: 0 auto 40px; text-align: center; }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; min-height: calc(100vh - var(--nav)); display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.78) 0%, rgba(0,0,0,.35) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 2; padding: 80px 0; max-width: 540px; }
.hero-kicker { display: inline-block; font-size: .62rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.hero-content h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 900; line-height: 1.05; letter-spacing: -2px; color: #fff; margin-bottom: 10px; }
.hero-content h1 span { color: #93c5fd; }
.hero-sub { font-size: .9rem; color: rgba(255,255,255,.5); margin-bottom: 28px; }
.hero-scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.25); font-size: .6rem; letter-spacing: 2px; text-transform: uppercase; z-index: 2; }
.scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, rgba(255,255,255,.25), transparent); }

/* ===== INTRO STRIP ===== */
.intro-strip { border-bottom: 1px solid var(--border); }
.intro-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.intro-stat { display: flex; flex-direction: column; align-items: center; padding: 18px 40px; gap: 2px; }
.intro-stat strong { font-size: .95rem; font-weight: 800; letter-spacing: -.3px; }
.intro-stat span { font-size: .62rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.intro-divider { width: 1px; height: 22px; background: var(--border); }

/* ===== ABOUT ===== */
.about { padding: 88px 0; }
.about-grid { display: grid; grid-template-columns: 270px 1fr; gap: 56px; align-items: start; }
.about-img-frame { border-radius: 8px; overflow: hidden; aspect-ratio: 3/4; }
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-caption { font-size: .68rem; color: var(--text-faint); margin-top: 8px; text-align: center; font-style: italic; }
.about-body h2 { font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 800; letter-spacing: -.5px; margin-bottom: 14px; }
.about-lead { font-size: .98rem; font-weight: 500; color: var(--text); margin-bottom: 14px; line-height: 1.65; }
.about-body p { font-size: .87rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.8; }
.about-body strong { color: var(--text); font-weight: 600; }
.about-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.about-tags span { font-size: .68rem; padding: 3px 9px; color: var(--text-muted); border-radius: 3px; border: 1px solid var(--border); }

/* ===== TIMELINE ===== */
.timeline-section { padding: 72px 0 88px; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.timeline { max-width: 580px; margin: 32px auto 0; }
.tl-item { display: grid; grid-template-columns: 64px 1fr; gap: 0 16px; padding-bottom: 28px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ''; position: absolute; left: 5px; top: 16px; bottom: 0; width: 1px; background: var(--border); }
.tl-item:last-child::before { display: none; }
.tl-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--blue); border: 2px solid var(--bg-2); margin-top: 3px; grid-column: 1; grid-row: 1/3; align-self: start; justify-self: start; }
.tl-year { font-size: .62rem; font-weight: 700; color: var(--blue); letter-spacing: .5px; text-transform: uppercase; grid-column: 2; }
.tl-text { font-size: .85rem; color: var(--text-muted); line-height: 1.75; grid-column: 2; }
.tl-text strong { color: var(--text); font-weight: 600; }

/* ===== BLOG ===== */
.blog-section { padding: 88px 0; }
.blog-layout { display: grid; grid-template-columns: 1fr 230px; gap: 40px; align-items: start; }
.posts-area .section-title { margin-bottom: 20px; }

.post-featured { display: grid; grid-template-columns: 1fr 1fr; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 14px; transition: border-color var(--t); }
.post-featured:hover { border-color: #bbb; }
.post-featured-img-link { display: block; overflow: hidden; }
.post-featured-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-featured:hover .post-featured-img-link img { transform: scale(1.03); }
.post-featured-body { padding: 22px; background: var(--bg); display: flex; flex-direction: column; gap: 8px; }
.post-featured-body h3 { font-size: .95rem; font-weight: 700; line-height: 1.4; }
.post-featured-body h3 a { color: var(--text); transition: color var(--t); }
.post-featured-body h3 a:hover { color: var(--blue); }
.post-featured-body p { font-size: .82rem; color: var(--text-muted); line-height: 1.75; flex: 1; }

.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.post-card { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); background: var(--bg); display: flex; flex-direction: column; transition: border-color var(--t); }
.post-card:hover { border-color: #bbb; }
.post-card-img-link { display: block; overflow: hidden; aspect-ratio: 16/9; }
.post-card-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card-img-link img { transform: scale(1.04); }
.post-card-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.post-card-body h3 { font-size: .85rem; font-weight: 700; line-height: 1.4; }
.post-card-body h3 a { color: var(--text); transition: color var(--t); }
.post-card-body h3 a:hover { color: var(--blue); }
.post-card-body p { font-size: .77rem; color: var(--text-muted); line-height: 1.7; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.post-meta { display: flex; align-items: center; gap: 8px; }
.post-cat { font-size: .6rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--blue); }
.post-date { font-size: .68rem; color: var(--text-faint); }
.read-more { font-size: .77rem; font-weight: 600; color: var(--blue); display: inline-block; margin-top: auto; transition: opacity var(--t); }
.read-more:hover { opacity: .65; }

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 28px; position: sticky; top: calc(var(--nav) + 20px); }
.sidebar-widget { display: flex; flex-direction: column; gap: 0; }
.widget-title { font-size: .6rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-faint); margin-bottom: 10px; }
.facts-list { list-style: none; }
.facts-list li { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: .77rem; gap: 8px; }
.facts-list li:last-child { border-bottom: none; }
.fl { color: var(--text-muted); }
.fv { color: var(--text); font-weight: 600; text-align: right; }
.recent-posts { list-style: none; }
.recent-posts li { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--border); }
.recent-posts li:last-child { border-bottom: none; }
.recent-posts a { font-size: .77rem; color: var(--text); flex: 1; line-height: 1.4; transition: color var(--t); }
.recent-posts a:hover { color: var(--blue); }
.recent-posts time { font-size: .66rem; color: var(--text-faint); white-space: nowrap; margin-top: 2px; }
.fan-widget blockquote { font-size: .78rem; color: var(--text-muted); font-style: italic; line-height: 1.65; padding-left: 10px; border-left: 2px solid var(--border); margin-bottom: 8px; }
.fan-note { font-size: .64rem; color: var(--text-faint); }
.disclaimer-widget p { font-size: .72rem; color: var(--text-muted); line-height: 1.6; }
.disclaimer-widget strong { color: var(--text); }

/* ===== GALLERY ===== */
.gallery-section { padding: 88px 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.gallery-grid { columns: 3; column-gap: 8px; margin-top: 36px; }
.g-item { break-inside: avoid; margin-bottom: 8px; border-radius: 8px; overflow: hidden; position: relative; display: block; }
.g-item.g-tall, .g-item.g-wide { all: unset; break-inside: avoid; margin-bottom: 8px; border-radius: 8px; overflow: hidden; position: relative; display: block; }
.g-item img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.g-item:hover img { transform: scale(1.04); }
.g-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 10px 8px; background: linear-gradient(to top, rgba(0,0,0,.45), transparent); color: #fff; font-size: .68rem; font-weight: 600; opacity: 0; transition: opacity var(--t); }
.g-item:hover .g-label { opacity: 1; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--border); padding: 44px 0 22px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 20px; text-align: center; }
.footer-logo { font-size: 1rem; }
.footer-tagline { font-size: .78rem; color: var(--text-muted); max-width: 300px; line-height: 1.6; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); width: 100%; margin-bottom: 16px; }
.footer-nav a { font-size: .78rem; color: var(--text-muted); transition: color var(--t); }
.footer-nav a:hover { color: var(--text); }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.footer-credit { font-size: .72rem; color: var(--text-muted); }
.footer-credit a { color: var(--blue); font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }
.footer-disclaimer { font-size: .68rem; color: var(--text-faint); max-width: 400px; line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 220px 1fr; gap: 36px; }
  .blog-layout { grid-template-columns: 1fr 210px; gap: 28px; }
}

@media (max-width: 780px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: grid; grid-template-columns: 180px 1fr; gap: 18px; align-items: start; }
  .blog-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .disclaimer-widget { grid-column: 1 / -1; }
  .post-featured { grid-template-columns: 1fr; }
  .post-featured-img-link { aspect-ratio: 16/9; }
  .gallery-grid { columns: 2; }
}

@media (max-width: 580px) {
  /* Navbar */
  .nav-links { display: none; position: absolute; top: var(--nav); left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px 24px; gap: 14px; z-index: 299; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 85vh; }
  .hero-content { padding: 60px 0 40px; }
  .hero-content h1 { font-size: clamp(2rem, 10vw, 3rem); letter-spacing: -1px; }
  .hero-sub { font-size: .82rem; }
  .hero-scroll-hint { display: none; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,.6) 0%, rgba(0,0,0,.5) 100%); }

  /* Intro strip */
  .intro-stat { padding: 12px 14px; }
  .intro-divider { height: 18px; }
  .intro-stat strong { font-size: .85rem; }

  /* About */
  .about { padding: 56px 0; }
  .about-visual { grid-template-columns: 1fr; }
  .about-img-frame { max-width: 220px; margin: 0 auto; }

  /* Timeline */
  .timeline-section { padding: 48px 0 56px; }

  /* Blog */
  .blog-section { padding: 56px 0; }
  .post-grid { grid-template-columns: 1fr; }
  .post-featured-body { padding: 16px; }
  .sidebar { grid-template-columns: 1fr; }
  .disclaimer-widget { grid-column: auto; }

  /* Gallery */
  .gallery-section { padding: 56px 0; }
  .gallery-grid { columns: 2; column-gap: 6px; }
  .g-item { margin-bottom: 6px; }
  .g-label { opacity: 1; font-size: .6rem; padding: 14px 8px 6px; }

  /* Section titles */
  .section-title { font-size: 1.4rem; }
  .section-sub { font-size: .82rem; margin-bottom: 28px; }
}

/* ===== CONCERT VIDEO ===== */
.concert-section { padding: 88px 0; border-top: 1px solid var(--border); }
.concert-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; margin-top: 36px; }
.concert-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
