/* ─────────────────────────────────────────────────────────
   Sotiris Barsakis Theme — main.css
   Dark immersive canvas · Open Sans · Breaking Red #d63444
   ───────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #d63444;
  --bg:     #06080f;
  --bg2:    #07090f;
  --bg3:    #030408;
  --white:  #ffffff;
  --dim:    rgba(255,255,255,0.6);
  --dim2:   rgba(255,255,255,0.35);
  --dim3:   rgba(255,255,255,0.08);
  --font:   'Open Sans', sans-serif;
}

html { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); }

.sb-red { color: var(--red); }

/* ── Container ── */
.sb-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section label ── */
.sb-label {
  font-weight: 700;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  display: block;
}

/* ── Section base ── */
.sb-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.sb-section__divider {
  position: absolute;
  top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.07), transparent);
}

/* ── Buttons ── */
.sb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.sb-btn--primary {
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
}
.sb-btn--primary:hover { opacity: 0.85; }
.sb-btn--ghost {
  background: none;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 13px 28px;
}
.sb-btn--ghost:hover { border-color: var(--red); color: var(--white); }
.sb-btn--sm { padding: 9px 20px; font-size: 11px; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
.sb-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
.sb-nav.is-scrolled {
  background: rgba(6,8,15,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(214,52,68,0.18);
}
.sb-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sb-nav__desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}
.sb-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.sb-nav__num {
  font-weight: 700;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.05em;
}
.sb-nav__label {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.sb-nav__item:hover .sb-nav__label { color: var(--white); }
.sb-nav__underline {
  position: absolute;
  bottom: 0; left: 20px; right: 20px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.sb-nav__item:hover .sb-nav__underline { transform: scaleX(1); }
.sb-nav__cta {
  margin-left: 16px;
  padding: 10px 22px;
  background: var(--red);
  border: none;
  color: var(--white);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
}
.sb-nav__cta:hover { opacity: 0.85; }

/* Mobile burger */
.sb-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.sb-nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.sb-nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sb-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.sb-nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.sb-nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(6,8,15,0.98);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.sb-nav__mobile.is-open {
  max-height: 400px;
  padding: 12px 0;
}
.sb-nav__mobile-item {
  display: block;
  padding: 14px 32px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: color 0.2s;
}
.sb-nav__mobile-item:hover { color: var(--white); }

@media (max-width: 768px) {
  .sb-nav__desktop { display: none; }
  .sb-nav__burger  { display: flex; }
  .sb-nav__mobile  { display: flex; }
}

/* ═══════════════════════════════
   NAV LOGO (S.B.)
═══════════════════════════════ */
.nb-logo {
  display: flex;
  align-items: center;
  gap: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 4px;
  position: relative;
  height: 64px;
  text-decoration: none;
}
.nb-logo__perspective {
  perspective: 300px;
  perspective-origin: 50% 60%;
}
.nb-logo__mark {
  display: flex;
  align-items: center;
  gap: 1px;
  transform-style: preserve-3d;
  transition: transform 0.48s cubic-bezier(0.34,1.56,0.64,1);
}
.nb-logo:hover .nb-logo__mark {
  transform: rotateY(-18deg) rotateX(6deg) scale(1.12);
}
.nb-letter, .nb-dot {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1;
  display: inline-block;
  letter-spacing: -0.03em;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), color 0.2s;
}
.nb-letter { font-size: 2.8rem; color: var(--white); }
.nb-dot    { font-size: 2.6rem; color: var(--red); letter-spacing: 0; }
.nb-logo:hover .nb-letter { transform: translateZ(10px) translateY(-1px); color: var(--white); }
.nb-logo:hover .nb-dot    { transform: translateZ(18px) translateY(-2px) scale(1.25); color: #ff4a5c; }
.nb-logo__rule {
  width: 1px; height: 0;
  background: rgba(214,52,68,0.5);
  margin-left: 0;
  opacity: 0;
  transition: height 0.35s ease 0.1s, opacity 0.3s ease 0.1s, margin-left 0.35s ease;
}
.nb-logo:hover .nb-logo__rule { height: 34px; margin-left: 14px; opacity: 1; }
.nb-logo__name {
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  margin-left: 0;
  transition: max-width 0.48s cubic-bezier(0.34,1.56,0.64,1) 0.08s, opacity 0.3s ease 0.08s, margin-left 0.35s ease;
}
.nb-logo:hover .nb-logo__name { max-width: 200px; opacity: 1; margin-left: 14px; }
.nb-logo__name span {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--white);
  display: inline-block;
  transform: translateX(-16px);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1) 0.12s;
}
.nb-logo:hover .nb-logo__name span { transform: translateX(0); }
.nb-logo__sweep {
  position: absolute;
  bottom: 8px; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--red) 0%, rgba(214,52,68,0.4) 60%, transparent 100%);
  transition: width 0.5s ease 0.05s;
}
.nb-logo:hover .nb-logo__sweep { width: 100%; }
.nb-logo--footer { height: auto; }

/* ═══════════════════════════════
   HERO v2 — Greece map composition
═══════════════════════════════ */

/* Greece map container */
.sb-gr-wrap {
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translate(-50%, -50%);
  width: min(920px, 64vw);
  height: min(920px, 64vw);
  opacity: 0.55;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}
.sb-gr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(0.42) saturate(0.9);
  display: block;
}
.sb-gr-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

/* Athens pulsing rings */
@keyframes gr-pulse {
  0%   { r: 12px; opacity: .8; }
  70%  { r: 55px; opacity: 0; }
  100% { r: 55px; opacity: 0; }
}
.sb-gr-ring  { animation: gr-pulse 2.2s ease-out infinite; }
.sb-gr-ring2 { animation: gr-pulse 2.2s ease-out 0.8s infinite; }

/* Portrait blend-mode over map */
.sb-hero__photo-blend {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-30%, -50%);
  z-index: 3;
  pointer-events: none;
  user-select: none;
  width: 620px;
  height: 760px;
}
.sb-hero__photo-tilt {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse 52% 56% at 50% 38%, black 0%, rgba(0,0,0,0.9) 30%, transparent 70%);
  mask-image: radial-gradient(ellipse 52% 56% at 50% 38%, black 0%, rgba(0,0,0,0.9) 30%, transparent 70%);
}
.sb-hero__blend-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.1) contrast(1.08);
  opacity: 0.88;
}

/* Hero float animation */
@keyframes hp3d-float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}
@keyframes hp3d-scan {
  0%   { top: -100%; }
  100% { top: 200%; }
}
.hp3d-card-wrap { animation: hp3d-float 6s ease-in-out infinite; }
.hp3d-scan-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.025) 50%, transparent 100%);
  pointer-events: none;
  animation: hp3d-scan 5s linear infinite;
}

/* 4-corner overlay texts */
.sb-hero__tl,
.sb-hero__tr,
.sb-hero__bl,
.sb-hero__br {
  position: absolute;
  z-index: 10;
  font-family: var(--font);
  font-size: 11px;
  line-height: 1.7;
  pointer-events: none;
}
.sb-hero__tl {
  top: 96px;
  left: 32px;
  color: rgba(255,255,255,0.68);
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
}
.sb-hero__tr {
  top: 96px;
  right: 32px;
  text-align: right;
  max-width: 240px;
}
.sb-hero__tr-label {
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.05em;
}
.sb-hero__tr-text {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
  line-height: 1.8;
}
.sb-hero__bl {
  bottom: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  color: rgba(255,255,255,0.72);
}
.sb-hero__br {
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
  pointer-events: auto;
}
.sb-hero__br a {
  font-family: var(--font);
  font-size: 11px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.sb-hero__br a:hover { color: var(--red); }

/* Scroll button */
.sb-hero__scroll-btn {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.sb-hero__scroll-word {
  font-family: var(--font);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.88);
}
.sb-hero__scroll-arrow {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  animation: bounce 1.4s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

/* Pulsing dot */
.sb-pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-anim 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-anim {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

@media (max-width: 900px) {
  .sb-gr-wrap        { left: 50%; width: 90vw; height: 90vw; opacity: 0.35; }
  .sb-hero__photo-blend { display: none; }
  .sb-hero__tl, .sb-hero__tr { display: none; }
}

/* ═══════════════════════════════
   BIO
═══════════════════════════════ */
.sb-bio { background: var(--bg); }
.sb-bio__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  margin-bottom: 80px;
}
.sb-bio__name {
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.sb-bio__body {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
}
.sb-bio__body a { color: var(--red); }
.sb-bio__body strong { color: var(--white); font-weight: 700; }

/* Credentials */
.sb-creds {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sb-cred__num {
  display: block;
  font-weight: 900;
  font-size: clamp(32px,4vw,52px);
  color: var(--red);
  line-height: 1;
}
.sb-cred__label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  display: block;
}

/* Expertise */
.sb-expertise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sb-expertise__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s;
}
.sb-expertise__item:hover { border-color: rgba(214,52,68,0.25); }
.sb-expertise__icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.sb-expertise__item strong {
  display: block;
  font-weight: 800;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 4px;
}
.sb-expertise__item p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* Media properties (right column) */
.sb-bio__media { display: flex; flex-direction: column; gap: 20px; }
.sb-media-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.25s;
}
.sb-media-card:hover { border-color: rgba(214,52,68,0.3); }
.sb-media-card__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}
.sb-media-card__tag {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 14px;
}
.sb-media-card__skai-logo {
  max-height: 44px;
  width: auto;
  margin-bottom: 14px;
  mix-blend-mode: lighten;
  filter: brightness(1.1) saturate(1.2);
}
.sb-media-card__logo {
  max-height: 36px;
  width: auto;
  margin-bottom: 14px;
}
.sb-media-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 14px;
}
.sb-media-card__link {
  font-weight: 700;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.2s;
}
.sb-media-card__link:hover { opacity: 0.75; }

@media (max-width: 1024px) {
  .sb-bio__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ═══════════════════════════════
   RECENT POSTS
═══════════════════════════════ */
.sb-recent-posts { margin-bottom: 64px; }
.sb-recent-posts__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

/* Post grid (shared archive + recent) */
.sb-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sb-post-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
}
.sb-post-card:hover { border-color: rgba(214,52,68,0.35); transform: translateY(-4px); }
.sb-post-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0d1018;
  position: relative;
  flex-shrink: 0;
}
.sb-post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sb-post-card:hover .sb-post-card__img img { transform: scale(1.04); }
.sb-post-card__img-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d1018, #1a0a0d);
  font-weight: 900;
  font-size: 36px;
  color: rgba(214,52,68,0.12);
}
.sb-post-card__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.sb-post-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.sb-post-card__date {
  font-weight: 600;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
}
.sb-post-card__title {
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  line-height: 1.45;
  flex: 1;
}
.sb-post-card__excerpt {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.sb-post-card__read {
  font-weight: 700;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .sb-post-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .sb-post-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════
   BIO v2
═══════════════════════════════ */
.sb-bio-v2 { position: relative; overflow: hidden; }

/* Perspective grid floor */
.sb-bio-grid-floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  overflow: hidden;
  pointer-events: none;
}
.sb-bio-grid-floor::after {
  content: '';
  display: block;
  width: 100%;
  height: 200%;
  background:
    linear-gradient(rgba(214,52,68,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214,52,68,0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  transform: perspective(700px) rotateX(55deg);
  transform-origin: center top;
}

/* Ghost section numbers */
.sb-ghost-num {
  position: absolute;
  left: -2%;
  top: -10%;
  font-size: clamp(180px, 28vw, 380px);
  font-weight: 900;
  font-family: var(--font);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transform: perspective(900px) rotateX(20deg) rotateY(-5deg);
  z-index: 1;
}
.sb-ghost-num--right {
  left: auto;
  right: -4%;
  top: -15%;
  transform: perspective(900px) rotateX(20deg) rotateY(8deg);
}
.sb-ghost-num--bottom-left {
  left: -3%;
  top: auto;
  bottom: -10%;
  transform: perspective(900px) rotateX(20deg) rotateY(-5deg);
}

/* Bio two-column grid */
.sb-bio-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.sb-bio-v2__name {
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  color: rgba(255,255,255,0.95);
  line-height: 1.1;
  margin-bottom: 28px;
}
.sb-bio-v2__border {
  border-left: 2px solid var(--red);
  padding-left: 24px;
  margin-bottom: 32px;
}
.sb-bio-v2__border p {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 14px;
}
.sb-bio-v2__border p:last-child { margin-bottom: 0; }
.sb-bio-v2__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.sb-bio-v2__tag {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.76);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.1);
}
.sb-bio-v2__esiea {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--red);
}
.sb-bio-v2__esiea-title {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 3px;
}
.sb-bio-v2__esiea-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin: 0;
}

/* Bio portrait */
.sb-bio-v2__portrait-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}
.sb-bio-v2__portrait:hover .sb-bio-v2__portrait-inner {
  transform: rotateY(-6deg) rotateX(3deg) scale(1.02);
}

@media (max-width: 1024px) {
  .sb-bio-v2__grid { grid-template-columns: 1fr; gap: 48px; }
  .sb-bio-v2__portrait { order: -1; }
}

/* Expertise v2 — 4 columns */
.sb-expertise-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}
.sb-expertise-v2__card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}
.sb-expertise-v2__card:hover {
  border-color: rgba(214,52,68,0.35);
  transform: translateY(-4px);
}
.sb-expertise-v2__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(214,52,68,0.1);
  border: 1px solid rgba(214,52,68,0.25);
  font-size: 18px;
  margin-bottom: 18px;
}
.sb-expertise-v2__card h3 {
  font-weight: 800;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  line-height: 1.3;
}
.sb-expertise-v2__card p {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  line-height: 1.7;
}

@media (max-width: 900px)  { .sb-expertise-v2 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .sb-expertise-v2 { grid-template-columns: 1fr; } }

/* ═══════════════════════════════
   PHOTO GRID — 4-col (strip)
═══════════════════════════════ */
.sb-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  perspective: 1400px;
}
.sb-photo-card {
  position: relative;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.sb-photo-card:hover {
  transform: scale(1.07) rotateX(-6deg);
  box-shadow: 0 28px 64px rgba(0,0,0,0.7), 0 0 0 1px rgba(214,52,68,0.25);
}
.sb-photo-card img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse 88% 88% at 50% 50%, black 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 88% 88% at 50% 50%, black 55%, transparent 100%);
}
.sb-photo-card__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.sb-photo-card__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(6,8,15,0.92) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #fff;
}
.sb-photo-card:hover .sb-photo-card__caption { opacity: 1; }

@media (max-width: 900px)  { .sb-photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .sb-photo-grid { grid-template-columns: 1fr 1fr; } }

/* ═══════════════════════════════
   SECTION DIVIDER LINE
═══════════════════════════════ */
.sb-section__divider {
  position: absolute;
  top: 0; left: 25%; right: 25%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}

/* Section title shared */
.sb-section__title {
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  color: rgba(255,255,255,0.95);
  line-height: 1.1;
  margin-bottom: 28px;
}

/* ═══════════════════════════════
   REPORTAZ (SKAI)
═══════════════════════════════ */
.sb-reportaz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sb-reportaz__body {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 32px;
}
.sb-reportaz__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.sb-reportaz__stat-val {
  font-weight: 900;
  font-size: 44px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.sb-reportaz__stat-label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.88);
}

/* Broadcast card */
.sb-broadcast-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(214,52,68,0.25);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  text-align: center;
  transition: transform 0.4s ease;
}
.sb-broadcast-card:hover { transform: rotateY(-4deg) rotateX(2deg) scale(1.02); }
.sb-broadcast-card__scan {
  position: absolute;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to bottom, transparent, rgba(214,52,68,0.05), transparent);
  animation: scan-slow 5s linear infinite;
  pointer-events: none;
}
@keyframes scan-slow {
  0%   { top: -60%; }
  100% { top: 160%; }
}

/* Corner brackets */
.sb-corner {
  position: absolute;
  width: 18px;
  height: 18px;
}
.sb-corner--tl { top: 0; left: 0;  border-top: 2px solid var(--red); border-left: 2px solid var(--red); }
.sb-corner--tr { top: 0; right: 0; border-top: 2px solid var(--red); border-right: 2px solid var(--red); }
.sb-corner--bl { bottom: 0; left: 0;  border-bottom: 2px solid var(--red); border-left: 2px solid var(--red); }
.sb-corner--br { bottom: 0; right: 0; border-bottom: 2px solid var(--red); border-right: 2px solid var(--red); }

@media (max-width: 1024px) { .sb-reportaz-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════
   MEDIA PORTALS — 03
═══════════════════════════════ */
.sb-media-intro {
  font-size: 17px;
  color: rgba(255,255,255,0.74);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 56px;
}
.sb-portals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sb-portal-card {
  display: block;
  text-decoration: none;
  padding: 48px 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.3s ease;
}
.sb-portal-card:hover {
  border-color: rgba(214,52,68,0.35);
  transform: translateY(-4px);
}
.sb-portal-card__ghost {
  position: absolute;
  top: 20px; right: 24px;
  font-weight: 900;
  font-size: 72px;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  font-family: var(--font);
}
.sb-portal-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.sb-portal-card__tag {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 10px;
}
.sb-portal-card__name {
  font-weight: 800;
  font-size: 32px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
  line-height: 1.1;
}
.sb-portal-card__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.70);
  line-height: 1.8;
}
.sb-portal-card__cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--red);
}

@media (max-width: 768px) { .sb-portals-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════
   SOCIAL
═══════════════════════════════ */
.sb-social { background: var(--bg); }
.sb-social__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
}
.sb-social__card {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s;
}
.sb-social__card:hover { border-color: rgba(214,52,68,0.3); }
.sb-social__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}
.sb-social__icon {
  font-size: 28px;
  font-weight: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(214,52,68,0.1);
  color: var(--red);
}
.sb-social__platform {
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
}
.sb-social__handle {
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}
.sb-social__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .sb-social__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
.sb-contact { background: var(--bg); }
.sb-contact__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}
.sb-contact__body {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 32px;
}
.sb-contact__card { border: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02); }
.sb-contact__card-inner {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sb-contact__link {
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sb-contact__link:last-child { border-bottom: none; }
.sb-contact__link:hover { color: var(--red); }

@media (max-width: 900px) {
  .sb-contact__inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.sb-footer {
  background: var(--bg3);
  border-top: 1px solid rgba(214,52,68,0.15);
  padding: 48px 24px;
}
.sb-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.sb-footer__nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.sb-footer__nav a {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.sb-footer__nav a:hover { color: var(--white); }
.sb-footer__copy {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28);
}

/* ═══════════════════════════════
   SINGLE POST
═══════════════════════════════ */
.sb-single {}
.sb-single__hero {
  position: relative;
  width: 100%;
  height: clamp(300px, 55vh, 600px);
  overflow: hidden;
  background: #0a0c14;
}
.sb-single__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.sb-single__hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,8,15,1) 0%, rgba(6,8,15,0.55) 40%, rgba(6,8,15,0.2) 100%);
}
.sb-single__hero-gradient-side {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,8,15,0.35) 0%, transparent 60%);
}
.sb-single__hero-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.sb-single__hero-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 40px;
}
.sb-single__date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.sb-icon-cal { color: var(--red); }
.sb-single__title {
  font-weight: 900;
  font-size: clamp(22px,4vw,46px);
  color: var(--white);
  line-height: 1.2;
}
.sb-single__body {
  max-width: 780px;
  margin: 0 auto;
  padding: 52px 24px 96px;
}
.sb-single__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}
.sb-single__divider-line { width: 32px; height: 2px; background: var(--red); }
.sb-single__divider-text {
  font-weight: 700;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.2em;
}

/* WordPress content inside single post */
.wp-content {
  color: rgba(255,255,255,0.82);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.85;
  word-break: break-word;
}
.wp-content p { margin: 0 0 1.4em; }
.wp-content h1,.wp-content h2,.wp-content h3,
.wp-content h4,.wp-content h5,.wp-content h6 {
  color: var(--white);
  font-weight: 900;
  line-height: 1.25;
  margin: 1.8em 0 0.7em;
}
.wp-content h2 { font-size: 1.6em; }
.wp-content h3 { font-size: 1.3em; }
.wp-content h4 { font-size: 1.1em; }
.wp-content a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.wp-content a:hover { opacity: 0.8; }
.wp-content strong { color: var(--white); font-weight: 800; }
.wp-content em { color: rgba(255,255,255,0.75); font-style: italic; }
.wp-content blockquote {
  border-left: 3px solid var(--red);
  margin: 1.6em 0;
  padding: 12px 0 12px 24px;
  background: rgba(214,52,68,0.04);
  color: rgba(255,255,255,0.7);
  font-style: italic;
}
.wp-content blockquote p { margin: 0; }
.wp-content ul,.wp-content ol { margin: 0 0 1.4em 1.4em; }
.wp-content li { margin-bottom: 0.4em; }
.wp-content img { max-width: 100%; height: auto; display: block; margin: 2em auto; }
.wp-content figure { margin: 2em 0; }
.wp-content figcaption {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  letter-spacing: 0.08em;
}
.wp-content hr { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 2.5em 0; }

.sb-single__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* Post nav */
.sb-single__nav {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}
.sb-single__nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sb-single__nav-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s;
}
.sb-single__nav-item:hover { border-color: rgba(214,52,68,0.3); }
.sb-single__nav-item--right { text-align: right; }
.sb-single__nav-dir {
  font-weight: 700;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.18em;
}
.sb-single__nav-title {
  font-weight: 800;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

/* ═══════════════════════════════
   ARCHIVE
═══════════════════════════════ */
.sb-archive { min-height: 100vh; padding-top: 80px; }
.sb-archive__header {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 56px;
}
.sb-archive__title {
  font-weight: 900;
  font-size: clamp(40px,7vw,80px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.sb-archive__meta {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* Pagination */
.sb-pagination {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.sb-pagination ul {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.sb-pagination li a,
.sb-pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.1em;
}
.sb-pagination li a:hover { border-color: var(--red); color: var(--white); }
.sb-pagination li span.current {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Empty state */
.sb-empty {
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.sb-empty p { color: rgba(255,255,255,0.4); font-size: 16px; }

/* ═══════════════════════════════
   404
═══════════════════════════════ */
.sb-404 { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; }
.sb-404__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 80px 24px;
}
.sb-404__code {
  font-weight: 900;
  font-size: clamp(80px,16vw,160px);
  color: rgba(214,52,68,0.15);
  line-height: 1;
  letter-spacing: -0.04em;
}
.sb-404__title {
  font-weight: 900;
  font-size: clamp(24px,4vw,44px);
  color: var(--white);
}
.sb-404__body { color: rgba(255,255,255,0.5); font-size: 16px; }
.sb-404__actions { display: flex; gap: 16px; }
