
/* ═══════════════════════════════════════
   DESIGN TOKENS — Glass Tech
═══════════════════════════════════════ */
:root {
  /* Dark reference — hero, dark contexts */
  --navy:       #0a0f1e;
  --navy2:      #0d1528;
  --navy3:      #111d36;
  --navy4:      #162040;

  /* Light content palette */
  --bg:         #FAFBFC;
  --bg2:        #F1F5F9;
  --surface:    #FFFFFF;
  --surface-h:  #F8FAFC;
  --border:     rgba(0,0,0,.06);
  --border2:    rgba(0,0,0,.10);

  /* Glass */
  --glass-bg:     rgba(255,255,255,.7);
  --glass-border: rgba(0,0,0,.05);
  --glass-blur:   blur(12px);

  /* Text */
  --text:       #111827;
  --text2:      #6b7280;
  --text3:      #9ca3af;

  /* Accent — primary */
  --gold:       #c9a96e;
  --gold2:      #d4b87a;
  --gold-glow:  rgba(201,169,110,.12);
  --blue-acc:   #3b82f6;
  --blue-glow:  rgba(59,130,246,.10);

  /* Category colors */
  --cat-default:  #c9a96e;
  --cat-digital:  #3b82f6;
  --cat-ai:       #8b5cf6;
  --cat-esports:  #10b981;
  --cat-media:    #f59e0b;
  --cat-cyber:    #ef4444;

  /* Fonts */
  --mono: 'DM Mono', monospace;

  /* Sizing */
  --nav-h:      68px;
  --r:          6px;
  --max:        1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }

/* ─── SELECTION ─── */
::selection { background: var(--gold-glow); color: var(--gold); }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  background: rgba(250,251,252,.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: border-color .3s, background .3s;
}
.nav.solid { background: rgba(250,251,252,.95); border-color: var(--border2); }
.nav-in {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; height: 100%; gap: 0;
}
.nav-logo {
  font-size: 16px; font-weight: 800; letter-spacing: -.03em;
  color: var(--text); margin-right: 40px; white-space: nowrap; flex-shrink: 0;
}
.nav-logo .accent { color: var(--gold); font-style: italic; font-family: 'Playfair Display', serif; }
.nav-links { display: flex; align-items: center; flex: 1; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text2);
  padding: 0 16px; height: var(--nav-h); display: flex; align-items: center;
  border-bottom: 2px solid transparent; transition: all .2s; cursor: pointer;
  white-space: nowrap; letter-spacing: .01em;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.on { color: var(--text); border-bottom-color: var(--gold); }
.nav-sp { flex: 1; }
.nav-tgrt {
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  color: #fff; background: var(--text);
  padding: 8px 18px; border-radius: 3px;
  transition: background .2s, transform .15s; white-space: nowrap; flex-shrink: 0;
}
.nav-tgrt:hover { background: #1f2937; transform: translateY(-1px); }
.nav-admin {
  background: none; border: 1px solid var(--border2); color: var(--text3);
  font-size: 12px; font-weight: 500; padding: 7px 14px; border-radius: 3px;
  cursor: pointer; margin-left: 10px; transition: all .2s; white-space: nowrap;
}
.nav-admin:hover { border-color: var(--gold); color: var(--gold); }
/* language switcher */
.nav-lang {
  display: flex; gap: 6px; margin-left: 32px; margin-right: 12px;
  background: rgba(0,0,0,.03); padding: 4px; border-radius: 4px; border: 1px solid var(--border);
}

.nav-lang button {
  background: none; border: 1px solid transparent; color: var(--text3);
  font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 2px;
  cursor: pointer; transition: all .24s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase; letter-spacing: .05em;
}
.nav-lang button:hover { color: var(--text); background: rgba(0,0,0,.04); }
.nav-lang button.active {
  background: var(--text); color: #fff; border-color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

/* hamburger */

.ham {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px; flex-shrink: 0;
}
.ham span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all .3s; }
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
/* mobile menu */
.mob-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--border2); z-index: 899;
  flex-direction: column;
}
.mob-nav.open { display: flex; animation: slideDown .25s ease; }
@keyframes slideDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.mob-nav a {
  font-size: 15px; font-weight: 500; color: var(--text2);
  padding: 15px 28px; border-bottom: 1px solid var(--border); cursor: pointer;
  transition: color .2s, padding .2s;
}
.mob-nav a:hover, .mob-nav a.on { color: var(--gold); padding-left: 36px; }
.mob-lang { padding: 24px 28px; display: flex; gap: 12px; border-top: 1px solid var(--border); background: var(--bg2); }
.mob-lang button {
  background: var(--surface); border: 1px solid var(--border2); color: var(--text2);
  font-size: 13px; font-weight: 700; padding: 12px 20px; border-radius: 4px;
  cursor: pointer; flex: 1; transition: all .2s;
  text-transform: uppercase; letter-spacing: .05em;
}
.mob-lang button.active { background: var(--text); color: #fff; border-color: var(--text); }


/* ═══════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════ */
.hero-slider {
  margin-top: var(--nav-h); position: relative;
  height: calc(100vh - var(--nav-h)); min-height: 480px; max-height: 500px;
  overflow: hidden;
}
.hero-track {
  display: flex; width: 300%; height: 100%;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.hero-slide { flex: 0 0 calc(100% / 3); }

/* Arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--surface); border: 1px solid var(--border2);
  color: var(--text2); font-size: 20px; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.hero-arrow:hover { background: var(--surface-h); border-color: var(--gold); color: var(--gold); }
.hero-arrow-l { left: 20px; }
.hero-arrow-r { right: 20px; }

/* Dots */
.hero-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.hero-dot {
  width: 24px; height: 3px; border-radius: 2px;
  background: #e5e7eb; border: none;
  cursor: pointer; transition: all .3s; padding: 0;
}
.hero-dot.on { background: var(--gold); width: 32px; }

.hero {
  position: relative;
  height: 100%;
  overflow: hidden; display: block; cursor: pointer;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  transition: transform 1.2s ease;
  filter: brightness(.88) saturate(.95);
}
.hero:hover .hero-img { transform: scale(1.03); }
/* light glass overlay — acik tema uyumlu */
.hero-vign {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201,169,110,.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(59,130,246,.15) 0%, transparent 50%),
    linear-gradient(to top,
      rgba(10, 15, 30, 0.98) 0%,
      rgba(10, 15, 30, 0.92) 15%,
      rgba(10, 15, 30, 0.75) 35%,
      rgba(10, 15, 30, 0.40) 65%,
      rgba(10, 15, 30, 0)    100%
    );
}
/* subtle bottom border */
.hero-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--border);
}
.hero-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  max-width: var(--max); margin: 0 auto; padding: 0 28px 48px;
  backdrop-filter: blur(2px);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border: 1.5px solid var(--gold); border-radius: 50%; }
.hero-eyebrow::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(201,169,110,.6), transparent); min-width: 40px; }
.hero-title {
  font-size: clamp(28px, 4vw, 52px); font-weight: 800;
  line-height: 1.12; letter-spacing: -.03em; color: #ffffff;
  max-width: 700px; margin-bottom: 16px;
}
.hero-title em {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-weight: 700; color: var(--gold);
}
.hero-desc {
  font-size: clamp(14px, 1.3vw, 17px); line-height: 1.7; font-weight: 300;
  color: rgba(255, 255, 255, 0.85); max-width: 520px; margin-bottom: 28px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-gold {
  background: #ffffff; color: var(--text);
}
.hero-actions .btn-gold:hover {
  background: var(--gold); color: #ffffff; box-shadow: 0 8px 24px rgba(201,169,110,.3);
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  padding: 13px 26px; border-radius: 3px;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,.25); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border2); color: var(--text2);
  font-size: 13px; font-weight: 500;
  padding: 12px 22px; border-radius: 3px;
  transition: all .2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-load-more {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--surface); color: var(--text2);
  border: 1px solid var(--border2); border-radius: 4px;
  padding: 14px 40px; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  cursor: pointer; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.btn-load-more:hover {
  background: var(--surface-h); color: var(--gold2);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,151,58,.1);
}
.btn-load-more::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform .3s;
}
.btn-load-more:hover::after { transform: scaleX(1); }
.hero-scroll {
  position: absolute; bottom: 28px; right: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text3); opacity: .6;
}
.hero-scroll-line {
  width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(.6)} }

/* ═══════════════════════════════════════
   TICKER
═══════════════════════════════════════ */
.ticker {
  height: 40px; overflow: hidden; display: flex; align-items: center;
  background: var(--bg2); border-bottom: 1px solid var(--border);
}
.ticker-lbl {
  font-size: 9px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); padding: 0 20px; border-right: 1px solid var(--border2);
  height: 100%; display: flex; align-items: center; white-space: nowrap;
  flex-shrink: 0; background: rgba(201,169,110,.06);
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-roll {
  display: inline-flex; gap: 56px; white-space: nowrap;
  animation: rolling 55s linear infinite;
}
.ticker-roll span {
  font-size: 12px; color: var(--text2); display: inline-flex; align-items: center; gap: 8px;
}
.ticker-roll span::before { content: '◆'; color: var(--gold); font-size: 6px; opacity: .6; }
@keyframes rolling { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════════════
   VISION STRIP — "Ben şekillendiriyorum"
═══════════════════════════════════════ */
.vision-strip {
  background: var(--bg2);
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 40%),
    var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
}
.vision-strip::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.vision-in {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center;
}
.vision-quote {
  font-size: clamp(22px, 2.8vw, 38px); font-weight: 800; line-height: 1.25;
  letter-spacing: -0.02em; color: var(--text);
  margin-bottom: 20px;
}
.vision-quote em {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-weight: 700; color: var(--gold2);
  position: relative;
}
.vision-quote em::after {
  content: ''; position: absolute; bottom: 4px; left: 0; width: 100%; height: 4px;
  background: var(--gold-glow); z-index: -1;
}
.vision-sub {
  font-size: 15px; line-height: 1.75; color: var(--text2); font-weight: 300;
  max-width: 540px; border-left: 2px solid var(--gold); padding-left: 24px;
  opacity: 0.9;
}
.vision-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
}
.vm-cell {
  background: var(--surface); padding: 28px 24px;
  transition: background .25s;
}
.vm-cell:hover {
  background: var(--surface-h);
}
.vm-n {
  font-size: 38px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--gold2); font-family: var(--mono); line-height: 1; margin-bottom: 6px;
}
.vm-label { 
  font-size: 12px; font-weight: 500; color: var(--text2); 
  letter-spacing: 0.04em;
}
.vm-sub { font-size: 11px; color: var(--text3); margin-top: 3px; }

/* ═══════════════════════════════════════
   MAIN BODY
═══════════════════════════════════════ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 64px 28px; }
.two-col { display: grid; grid-template-columns: 1fr 296px; gap: 56px; align-items: start; }

/* ─── SECTION HEADING ─── */
.sec-h {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 28px;
  border-bottom: 1px solid var(--border2);
}
.sec-h::before {
  content: ''; position: absolute; left: 0; bottom: -1px;
  width: 40px; height: 1px; background: var(--gold);
}
.sec-h { position: relative; }
.sec-title { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text); }
.sec-more {
  font-size: 12px; font-weight: 500; color: var(--text3);
  display: flex; align-items: center; gap: 4px; transition: all .2s;
}
.sec-more:hover { color: var(--gold); gap: 8px; }

/* ─── REFRESH BAR ─── */
.rf-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 8px; }
.rf-info { font-size: 11px; color: var(--text3); display: flex; align-items: center; gap: 7px; font-family: 'DM Mono', monospace; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; flex-shrink: 0; animation: lp 2s infinite; }
@keyframes lp { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(34,197,94,.4)} 50%{opacity:.7;box-shadow:0 0 0 4px rgba(34,197,94,0)} }
.rf-btn {
  background: none; border: 1px solid var(--border2); color: var(--text3);
  font-size: 11px; font-weight: 500; padding: 5px 12px; border-radius: 3px;
  cursor: pointer; display: flex; align-items: center; gap: 5px; transition: all .2s;
}
.rf-btn:hover { border-color: var(--gold); color: var(--gold); }
.rf-btn.loading .rfic { animation: spin .8s linear infinite; }
.rfic { display: inline-block; }
@keyframes spin { to{transform:rotate(360deg)} }

/* ─── ARTICLE CARDS ─── */
.art-card {
  display: grid; grid-template-columns: 200px 1fr; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; position: relative;
  transition: opacity .15s;
  /* scroll reveal */
  opacity: 0; transform: translateY(16px);
  animation: revealCard .5s ease forwards;
}
@keyframes revealCard { to{opacity:1;transform:translateY(0)} }
.art-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--cat-color, var(--gold)); transition: width .3s; border-radius: 0 2px 2px 0;
}
.art-card:hover::before { width: 2px; }
.art-card:hover .ac-thumb img { transform: scale(1.06); filter: brightness(1) saturate(1.05); }
.art-card:hover .ac-title { color: var(--gold2); }
.ac-thumb {
  width: 200px; height: 130px; overflow: hidden; border-radius: var(--r);
  background: var(--bg2); flex-shrink: 0; position: relative;
}
.ac-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
  filter: brightness(.97) saturate(1);
}
.ac-body { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.ac-cat {
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cat-color, var(--gold)); margin-bottom: 8px;
}
.ac-title {
  font-size: 17px; font-weight: 700; line-height: 1.38; letter-spacing: -.01em;
  color: var(--text); margin-bottom: 9px; transition: color .2s;
}
.ac-exc {
  font-size: 13.5px; line-height: 1.65; color: var(--text2); font-weight: 300;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden; margin-bottom: 12px;
}
.ac-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ac-date { font-size: 11px; color: var(--text3); letter-spacing: .06em; font-family: var(--mono); }
.ac-badge {
  font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-glow); border: 1px solid rgba(201,169,110,.15);
  padding: 2px 8px; border-radius: 2px;
}

/* stagger cards */
.art-card:nth-child(1){animation-delay:.05s}
.art-card:nth-child(2){animation-delay:.10s}
.art-card:nth-child(3){animation-delay:.15s}
.art-card:nth-child(4){animation-delay:.20s}
.art-card:nth-child(5){animation-delay:.25s}
.art-card:nth-child(n+6){animation-delay:.3s}

/* spinner */
.spinner { display: flex; align-items: center; gap: 12px; padding: 48px 0; color: var(--text3); font-size: 13px; }
.spin-r { width: 18px; height: 18px; border: 1.5px solid var(--border2); border-top-color: var(--gold); border-radius: 50%; animation: spin .8s linear infinite; flex-shrink: 0; }

/* ═══════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════ */
.sb-wrap { position: sticky; top: calc(var(--nav-h) + 24px); display: flex; flex-direction: column; gap: 28px; }
.sb-lbl { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text3); margin-bottom: 12px; display: block; }

/* PROFILE */
.prof {
  border: 1px solid var(--border2); border-radius: var(--r);
  overflow: hidden; background: var(--surface);
  transition: border-color .3s;
}
.prof:hover { border-color: var(--gold); }
.prof-photo { position: relative; width: 100%; height: 220px; overflow: hidden; }
.prof-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: brightness(.95) saturate(.98);
  transition: transform .5s ease, filter .5s ease;
}
.prof:hover .prof-photo img { transform: scale(1.04); filter: brightness(1) saturate(1); }
.prof-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(transparent, var(--surface));
}
.prof-body { padding: 20px; }
.prof-name { font-size: 18px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 4px; }
.prof-role { font-size: 12px; color: var(--text2); margin-bottom: 12px; line-height: 1.5; font-style: italic; }
.prof-bio { font-size: 13px; line-height: 1.7; color: var(--text2); margin-bottom: 16px; font-weight: 300; }
.prof-cta {
  display: block; text-align: center;
  background: var(--text); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  padding: 11px; border-radius: 3px; transition: background .2s;
}
.prof-cta:hover { background: #1f2937; }
.social-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px;
}
.prof-social { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.prof-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.04); color: var(--text2);
  transition: background .2s, color .2s;
}
.prof-social-link:hover { background: var(--gold); color: #fff; }

/* STATS */
.stats-block { background: var(--glass-bg); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: var(--r); overflow: hidden; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.stat { background: transparent; padding: 18px 12px; text-align: center; transition: background .2s; }
.stat:hover { background: var(--surface-h); }
.stat-n { font-size: 24px; font-weight: 800; letter-spacing: -.02em; color: var(--text); font-family: var(--mono); line-height: 1; }
.stat-l { font-size: 10px; color: var(--text3); margin-top: 4px; letter-spacing: .06em; font-weight: 500; }

/* TOPICS */
.topics-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.topic-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 16px; border-bottom: 1px solid var(--border); cursor: pointer;
  transition: background .2s;
}
.topic-row:last-child { border-bottom: none; }
.topic-row:hover, .topic-row.on { background: var(--surface-h); }
.topic-row:hover .t-name, .topic-row.on .t-name { color: var(--gold); }
.topic-row.on .t-cnt { color: var(--gold2); font-weight: 600; }
.t-name {
  font-size: 13px; color: var(--text2); transition: color .2s;
  display: flex; align-items: center; gap: 8px; font-weight: 400;
}
.t-name::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--cat-color, var(--gold)); flex-shrink: 0; }
.t-cnt { font-size: 11px; color: var(--text3); font-family: var(--mono); }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-hero {
  display: grid; grid-template-columns: 300px 1fr; gap: 56px;
  align-items: start; margin-bottom: 64px;
}
.about-img-wrap {
  border-radius: var(--r); overflow: hidden; position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,.08);
}
.about-img-wrap img {
  width: 100%; display: block; aspect-ratio: 3/4;
  object-fit: cover; object-position: top;
  filter: brightness(.95) saturate(.98);
  transition: transform .6s ease, filter .6s ease;
}
.about-img-wrap:hover img { transform: scale(1.03); filter: brightness(1) saturate(1); }
.about-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(transparent, rgba(250,251,252,.8));
}
.about-text h2 {
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 6px;
}
.about-text h2 em {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-weight: 700; color: var(--gold2);
}
.about-lbl {
  font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text3); margin-bottom: 28px;
}
.about-p { font-size: 16px; line-height: 1.8; color: var(--text2); margin-bottom: 18px; font-weight: 300; }
.about-p strong { color: var(--text); font-weight: 600; }

.feat-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); margin-bottom: 64px; }
.feat-block { background: var(--surface); padding: 28px 24px; transition: background .25s; }
.feat-block:hover { background: var(--surface-h); }
.feat-block-title {
  font-size: 14px; font-weight: 700; letter-spacing: .04em; margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.feat-block-title::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.feat-block-body { font-size: 14px; line-height: 1.75; color: var(--text2); font-weight: 300; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 64px; }
.gal-i { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--r); position: relative; cursor: zoom-in; }
.gal-i img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.95) saturate(.98);
  transition: transform .5s ease, filter .5s ease;
}
.gal-i:hover img { transform: scale(1.08); filter: brightness(1) saturate(1); }
.gal-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px; background: linear-gradient(transparent, rgba(0,0,0,.7));
  font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.75); opacity: 0; transition: opacity .3s;
}
.gal-i:hover .gal-cap { opacity: 1; }

/* timeline */
.tl-section { padding: 48px 0; border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border); margin-bottom: 64px; }
.tl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; }
.tl-head { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 28px; grid-column: 1/-1; color: var(--text); }
.tl-item { padding-bottom: 24px; border-left: 1px solid var(--border2); padding-left: 22px; position: relative; }
.tl-item::before { content: ''; position: absolute; left: -5px; top: 5px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); border: 2px solid var(--bg); }
.tl-year { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.tl-role { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.tl-co { font-size: 12px; color: var(--text3); font-style: italic; }

/* ═══════════════════════════════════════
   HOBBIES
═══════════════════════════════════════ */
.hob-banner { position: relative; height: 300px; overflow: hidden; border-radius: var(--r); margin-bottom: 40px; box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.hob-banner img { width:100%; height:100%; object-fit:cover; filter:brightness(.88) saturate(.95); transition:transform 1.2s ease; }
.hob-banner:hover img { transform: scale(1.03); }
.hob-banner-overlay { position:absolute; inset:0; background:radial-gradient(ellipse at 20% 50%, rgba(201,169,110,.15) 0%, transparent 60%), linear-gradient(to right, rgba(10,15,30,.98) 0%, rgba(10,15,30,.92) 15%, rgba(10,15,30,.75) 35%, rgba(10,15,30,.40) 65%, transparent 100%); }
.hob-banner-text { position:absolute; top:50%; left:40px; transform:translateY(-50%); z-index:2; width:calc(100% - 80px); }
.hob-eyebrow { display:inline-flex; align-items:center; gap:8px; font-size:10px; font-weight:700; letter-spacing:.28em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.hob-eyebrow::before { content: ''; width: 6px; height: 6px; border: 1.5px solid var(--gold); border-radius: 50%; }
.hob-eyebrow::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(201,169,110,.6), transparent); min-width: 40px; }
.hob-banner-h { font-size:clamp(20px,2.5vw,32px); font-weight:800; letter-spacing:-.02em; max-width:360px; line-height:1.3; color:#ffffff; }
.hob-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:var(--border); }
.hob-card { background:var(--surface); padding:24px 20px; transition:background .25s, transform .25s; position:relative; overflow:hidden; }
.hob-card::after { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .35s; }
.hob-card:hover::after { transform:scaleX(1); }
.hob-card:hover { background:var(--surface-h); }
.hob-icon { font-size:26px; margin-bottom:12px; }
.hob-name { font-size:14px; font-weight:700; margin-bottom:7px; }
.hob-desc { font-size:12px; line-height:1.65; color:var(--text2); font-weight:300; }

.un-thumb {
  width:100%; height:60px; object-fit:cover; border-radius:4px; cursor:pointer;
  border:2px solid transparent; transition:0.2s;
}
.un-thumb:hover { transform: scale(1.05); }
.un-thumb.sel { border-color: var(--gold); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--bg2); border-top: 1px solid var(--border2);
  padding: 56px 28px 28px;
}
.foot-wrap { max-width: var(--max); margin: 0 auto; }
.foot-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.foot-brand { font-size: 18px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; }
.foot-brand .acc { color: var(--gold); font-family: 'Playfair Display', serif; font-style: italic; }
.foot-tagline { font-size: 13px; color: var(--text2); line-height: 1.65; margin-bottom: 20px; font-weight: 300; }
.foot-ext { font-size: 12px; color: var(--text3); text-decoration: none; transition: color .2s; border-bottom: 1px solid var(--border2); padding-bottom: 1px; }
.foot-ext:hover { color: var(--gold); border-color: var(--gold); }
.foot-col-t { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text3); margin-bottom: 14px; }
.foot-lnk { display: block; font-size: 13px; color: var(--text2); margin-bottom: 8px; transition: color .2s; cursor: pointer; }
.foot-lnk:hover { color: var(--gold); }
.foot-btm {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--text3); flex-wrap: wrap; gap: 8px;
}

/* ═══════════════════════════════════════
   PAGE SECTIONS
═══════════════════════════════════════ */
.pg { display: none; }
.pg.on { display: block; animation: pgFade .4s ease; }
@keyframes pgFade { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

/* ═══════════════════════════════════════
   ADMIN MODAL
═══════════════════════════════════════ */
.modal-bg {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.65); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 16px;
}
.modal-bg.on { display: flex; }
.modal {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--r); max-width: 860px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,.10);
}
.modal-head {
  padding: 22px 26px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; background: var(--surface); z-index: 1;
}
.modal-title { font-size: 16px; font-weight: 700; }
.modal-x {
  background: none; border: none; font-size: 20px; cursor: pointer;
  color: var(--text3); width: 32px; height: 32px; display: flex;
  align-items: center; justify-content: center; border-radius: 4px;
  transition: all .2s;
}
.modal-x:hover { background: var(--surface-h); color: var(--text); }
.modal-body { padding: 24px 26px; }
.tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 22px; overflow-x: auto; gap: 0; }
.tab { font-size: 12px; font-weight: 500; color: var(--text3); padding: 9px 16px; border: none; background: none; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .2s; white-space: nowrap; letter-spacing: .04em; }
.tab.on { color: var(--gold); border-bottom-color: var(--gold); }
.pane { display: none; }
.pane.on { display: block; }
.fg { margin-bottom: 16px; }
.fl { font-size: 11px; font-weight: 600; color: var(--text2); margin-bottom: 6px; display: block; letter-spacing: .08em; text-transform: uppercase; }
.fi,.fta {
  width: 100%; background: var(--bg2); border: 1px solid var(--border2);
  padding: 10px 13px; font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--text); outline: none; border-radius: 3px; transition: border-color .2s;
}
.fi:focus,.fta:focus { border-color: var(--gold); }
.fta { resize: vertical; min-height: 80px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-s { background: var(--gold); color: #fff; border: none; padding: 10px 22px; font-size: 13px; font-weight: 700; border-radius: 3px; cursor: pointer; transition: background .2s; letter-spacing: .04em; }
.btn-s:hover { background: var(--gold2); }
.btn-d { background: none; border: 1px solid #e74c3c; color: #e74c3c; padding: 5px 12px; font-size: 11px; font-weight: 600; border-radius: 3px; cursor: pointer; transition: all .2s; }
.btn-d:hover { background: #e74c3c; color: #fff; }
.ok { font-size: 12px; color: #22c55e; font-weight: 500; padding: 8px 12px; background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.15); border-radius: 3px; display: none; margin-top: 10px; }
.ok.on { display: block; }
.mlist { display: flex; flex-direction: column; gap: 8px; max-height: 280px; overflow-y: auto; }
.ml-item { display: flex; align-items: center; gap: 10px; padding: 10px 13px; background: var(--surface); border: 1px solid var(--border); border-radius: 3px; }
.ml-i { flex: 1; min-width: 0; }
.ml-t { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ml-m { font-size: 11px; color: var(--text3); }
/* photo upload */
.pgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pbox { border: 1.5px dashed var(--border2); border-radius: var(--r); height: 90px; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; gap: 5px; background: var(--bg2); }
.pbox:hover { border-color: var(--gold); background: var(--surface-h); }
.pbox-icon { font-size: 20px; opacity: .6; }
.pbox-lbl { font-size: 10px; color: var(--text3); letter-spacing: .1em; text-align: center; }
.pbox-name { font-size: 11px; font-weight: 600; color: var(--text2); margin-bottom: 2px; }

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.lb { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 9999; align-items: center; justify-content: center; cursor: zoom-out; padding: 20px; }
.lb.on { display: flex; animation: pgFade .3s ease; }
.lb img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 3px; }

/* ═══════════════════════════════════════
   RICH TEXT EDITOR (Admin)
═══════════════════════════════════════ */
.rt-wrap { border: 1px solid var(--border2); border-radius: 3px; overflow: hidden; }
.rt-wrap:focus-within { border-color: var(--gold); }
.rt-bar {
  display: flex; gap: 2px; padding: 4px 6px;
  background: var(--surface-h); border-bottom: 1px solid var(--border2);
}
.rt-btn {
  background: none; border: 1px solid transparent; color: var(--text2);
  font-size: 12px; padding: 3px 8px; border-radius: 3px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-weight: 600; transition: all .15s;
  line-height: 1.4; min-width: 28px; text-align: center;
}
.rt-btn:hover { background: var(--surface); border-color: var(--border2); color: var(--gold); }
.rt-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }
.rt-sep { width: 1px; background: var(--border2); margin: 2px 4px; }
.rt-editor {
  min-height: 80px; padding: 10px 13px;
  background: var(--bg2); color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.7;
  outline: none; overflow-y: auto;
}
.rt-editor:empty::before {
  content: attr(data-placeholder); color: var(--text3); pointer-events: none;
}
.rt-editor.rt-lg { min-height: 200px; }
.rt-editor strong, .rt-editor b { color: var(--text); font-weight: 700; background: rgba(201,169,110,.12); padding: 0 2px; border-radius: 2px; }
.rt-editor em, .rt-editor i { font-style: italic; color: var(--gold2); font-weight: 500; }

/* ═══════════════════════════════════════
   FEAT BLOCK CARDS (Admin)
═══════════════════════════════════════ */
.fb-card {
  border: 1px solid var(--border); border-radius: 6px;
  margin-bottom: 10px; overflow: hidden; transition: border-color .2s;
}
.fb-card:hover { border-color: var(--border2); }
.fb-card-head {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: var(--surface-h); cursor: pointer;
  user-select: none;
}
.fb-card-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fb-card-title { flex: 1; font-size: 13px; font-weight: 600; color: var(--text); }
.fb-card-toggle {
  font-size: 14px; color: var(--text3); transition: transform .2s;
  background: none; border: none; cursor: pointer; padding: 0;
}
.fb-card.open .fb-card-toggle { transform: rotate(180deg); }
.fb-card-body {
  display: none; padding: 14px;
  border-top: 1px solid var(--border); background: var(--surface);
}
.fb-card.open .fb-card-body { display: block; }
.fb-card-actions {
  display: flex; gap: 8px; align-items: center; margin-top: 10px;
}

/* ═══════════════════════════════════════
   GALLERY ADMIN CARDS
═══════════════════════════════════════ */
.gal-admin-card {
  position: relative; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border); cursor: pointer; transition: border-color .2s;
}
.gal-admin-card:hover { border-color: var(--gold); }
.gal-admin-card img { width: 100%; height: 100px; object-fit: cover; display: block; }
.gal-admin-label {
  padding: 6px 8px; background: var(--surface);
  font-size: 11px; color: var(--text2); transition: color .2s;
}
.gal-admin-card:hover .gal-admin-label { color: var(--gold); }
.gal-admin-del {
  position: absolute; top: 4px; right: 4px;
  padding: 2px 8px; font-size: 10px; background: rgba(0,0,0,.6);
}
.gal-admin-edit {
  display: none; padding: 8px;
  background: var(--surface); border-top: 1px solid var(--border);
}
.gal-admin-card.editing { cursor: default; border-color: var(--gold); }
.gal-admin-card.editing .gal-admin-edit { display: block; }
.gal-admin-card.editing .gal-admin-label { display: none; }

/* ═══════════════════════════════════════
   HERO SLIDE PICKER (Admin)
═══════════════════════════════════════ */
.hs-dropdown {
  display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 10;
  background: var(--surface); border: 1px solid var(--border2); border-top: none;
  border-radius: 0 0 4px 4px; max-height: 220px; overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
}
.hs-dropdown.on { display: block; }
.hs-dropdown-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 13px;
  cursor: pointer; transition: background .15s; border-bottom: 1px solid var(--border);
}
.hs-dropdown-item:last-child { border-bottom: none; }
.hs-dropdown-item:hover { background: var(--surface-h); }
.hs-dropdown-item img {
  width: 48px; height: 32px; object-fit: cover; border-radius: 3px; flex-shrink: 0;
}
.hs-dropdown-item span { font-size: 13px; color: var(--text); }

.hs-selected {
  display: none; align-items: center; gap: 12px; padding: 10px 13px;
  background: var(--surface); border: 1px solid var(--border2); border-radius: 4px;
  margin-top: 8px;
}
.hs-selected.on { display: flex; }
.hs-selected img {
  width: 64px; height: 42px; object-fit: cover; border-radius: 3px; flex-shrink: 0;
}
.hs-selected-info { flex: 1; min-width: 0; }
.hs-selected-info .hs-title { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hs-selected-info .hs-cat { font-size: 11px; color: var(--text3); }
.hs-remove {
  background: none; border: 1px solid #e74c3c; color: #e74c3c; border-radius: 3px;
  padding: 4px 10px; font-size: 11px; cursor: pointer; transition: all .2s; flex-shrink: 0;
}
.hs-remove:hover { background: #e74c3c; color: #fff; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; }
  .sb-wrap { position: static; }
  .vision-in { grid-template-columns: 1fr; gap: 40px; }
  .about-hero { grid-template-columns: 240px 1fr; gap: 36px; }
  .hob-grid { grid-template-columns: repeat(2, 1fr); }
  .tl-grid { grid-template-columns: 1fr; }
  .feat-blocks { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 58px; }
  .hero-slider { height: 400px; }
  .hero-desc { display: none; }
  .hero-title { font-size: clamp(22px, 6vw, 34px); }
  .hero-slider { height: 480px; min-height: 400px; }
  .hero-title { font-size: clamp(22px, 6vw, 34px); }
  .hero-arrow { width: 36px; height: 36px; font-size: 16px; }
  .hero-arrow-l { left: 10px; }
  .hero-arrow-r { right: 10px; }
  .nav-links { display: none; }
  .nav-tgrt, .nav-admin { display: none; }
  .ham { display: flex; }
  .art-card { grid-template-columns: 1fr; }
  .ac-thumb { width: 100%; height: 190px; }
  .vision-strip { padding: 48px 20px; }
  .vm-n { font-size: 28px; }
  .about-hero { grid-template-columns: 1fr; }
  .about-img-wrap img { aspect-ratio: 16/9; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .hob-banner { height: 200px; }
  .hob-banner-text { left: 20px; }
  .foot-cols { grid-template-columns: 1fr; gap: 32px; }
  .wrap { padding: 40px 20px; }
  .frow { grid-template-columns: 1fr; }
  .pgrid { grid-template-columns: 1fr; }
  footer { padding: 40px 20px 20px; }
}
@media (max-width: 480px) {
  .hero-slider { height: 340px; }
  .hero-slider { height: 400px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hob-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .vision-metrics { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════
   POST DETAIL PAGE
   ═══════════════════════════════════════ */
#pg-post { animation: pgFade .6s ease; }
.post-detail { max-width: 1100px; margin: 0 auto; padding-top: 24px; }

/* Top Bar & Back Button */
.post-top-bar {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.btn-back-minimal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--border2);
  color: var(--text2);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.btn-back-minimal:hover {
  background: var(--surface);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateX(-4px);
}
.btn-back-minimal svg {
  transition: transform .2s;
}
.btn-back-minimal:hover svg {
  transform: translateX(-2px);
}

/* 2-Column Layout */
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; margin-top: 12px; }
.post-main { min-width: 0; }
.post-sidebar { display: flex; flex-direction: column; gap: 40px; }

/* Sidebar Components */
.ps-box { padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.ps-box.sticky { position: sticky; top: 100px; border-bottom: none; }
.ps-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; color: var(--gold); margin-bottom: 24px; }

.ps-list { display: flex; flex-direction: column; gap: 24px; }
.ps-art { display: grid; grid-template-columns: 60px 1fr; gap: 16px; text-decoration: none; align-items: center; }
.ps-art img { width: 60px; height: 60px; border-radius: 4px; object-fit: cover; filter: grayscale(.3); transition: .3s; }
.ps-art:hover img { filter: grayscale(0); }
.ps-art-t { font-size: 14px; font-weight: 600; line-height: 1.4; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-clamp: 2; overflow: hidden; }

.ps-social { display: flex; flex-direction: column; gap: 20px; }

/* Post Spot (Summary) */
.post-spot {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  opacity: 0.9;
}
.ps-soc-link {
  display: flex; flex-direction: column; padding: 16px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r); text-decoration: none; transition: .2s;
}
.ps-soc-link:hover { border-color: var(--gold); background: var(--surface); }
.ps-soc-link strong { font-size: 14px; color: var(--gold); }
.ps-soc-link span { font-size: 12px; color: var(--text3); }

.ps-share { margin-top: 12px; }
.ps-share-t { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 16px; letter-spacing: 0.05em; }
.ps-share-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.ps-sh-link {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  color: var(--text2); transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.ps-sh-link svg { width: 18px; height: 18px; fill: currentColor; }
.ps-sh-link:hover {
  background: var(--surface-h); border-color: var(--gold); color: var(--gold);
  transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* Tooltip for copy link */
.copy-tooltip {
  position: absolute; bottom: 125%; left: 50%; transform: translateX(-50%) translateY(5px);
  background: var(--gold); color: #fff; font-size: 10px; font-weight: 700;
  padding: 4px 8px; border-radius: 4px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: all 0.2s;
}
.ps-sh-link.copied .copy-tooltip { opacity: 1; transform: translateX(-50%) translateY(0); }


/* Author Bio Card at Bottom */
.post-bio-card {
  margin-top: 80px; padding: 40px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r);
}
.pbc-head { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.pbc-img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.pbc-name { font-size: 18px; font-weight: 800; color: var(--text); }
.pbc-role { font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.pbc-text { font-size: 15px; line-height: 1.7; color: var(--text2); font-weight: 300; margin-bottom: 24px; }
.pbc-links { display: flex; gap: 20px; }
.pbc-links a { font-size: 13px; font-weight: 600; color: var(--text3); text-decoration: none; border-bottom: 1px solid transparent; transition: .2s; }
.pbc-links a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* Responsive adjustments */
@media (max-width: 960px) {
  .post-layout { grid-template-columns: 1fr; gap: 40px; }
  .post-sidebar { border-top: 1px solid var(--border); padding-top: 40px; }
}

.btn-back { display: none; }

/* Minimalist Post Header */
.post-header-minimal { margin-bottom: 40px; }
.ph-cat { font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--gold); letter-spacing: .2em; margin-bottom: 12px; }
.post-title { font-size: clamp(32px, 5vw, 52px); font-weight: 900; line-height: 1.1; color: var(--text); margin-bottom: 24px; letter-spacing: -.03em; }

.post-meta-bar { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.pm-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.pm-info { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text3); }
.pm-name { color: var(--text); font-weight: 600; }
.pm-dot { color: var(--border2); }

.post-hero { margin-bottom: 48px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); }
.post-hero img { width: 100%; max-height: 480px; object-fit: cover; }
.post-video { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.post-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

.post-content {
  font-size: 19px; line-height: 1.85; color: var(--text); font-weight: 300;
  margin-bottom: 64px;
}
.post-content p { margin-bottom: 24px; }
.post-content p:first-of-type::first-letter {
  float: left;
  font-family: 'Playfair Display', serif;
  font-size: 82px;
  line-height: 0.8;
  padding-top: 8px;
  padding-right: 12px;
  color: var(--gold);
  font-weight: 800;
  font-style: italic;
}

.post-content p { margin-bottom: 32px; }

.post-actions {
  padding: 48px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); text-align: center; margin-top: 64px;
}
.pd-note { font-size: 14px; color: var(--text2); margin-bottom: 24px; font-weight: 300; }

@media (max-width: 768px) {
  .post-detail { padding-top: 20px; }
  .post-head { margin-bottom: 32px; padding-bottom: 32px; }
  .post-hero { margin-bottom: 32px; }
  .post-content { font-size: 16.5px; line-height: 1.75; }
}

/* ADMIN FORM TABS */
.btn-tab-s {
  background: none; border: none; padding: 6px 16px; font-size: 11px; font-weight: 700;
  color: var(--text3); cursor: pointer; border-radius: 8px; transition: all .2s;
}
.btn-tab-s.on { background: var(--gold); color: #fff; }
.btn-tab-s:hover:not(.on) { color: var(--text); background: rgba(0,0,0,.04); }
