:root {
  --navy:       #0D2B55;
  --navy-dark:  #081A38;
  --blue:       #1B5CA8;
  --blue-mid:   #2E7DD1;
  --blue-light: #5BA3E8;
  --accent:     #5BA3E8;
  --white:      #FFFFFF;
  --off:        #F0F5FB;
  --text-light: rgba(255,255,255,0.65);
  --ease:       cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--off);
  color: var(--navy);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 10px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(13,43,85,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.nav-logo-icon img {
  width: 100%; height: 100%; object-fit: contain;
}

.nav-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex; gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ── SHARED ── */
section { min-height: 100vh; padding: 80px 60px 60px; position: relative; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.sec-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.sec-label::before {
  content: ''; display: block;
  width: 18px; height: 2px;
  background: var(--accent); border-radius: 2px;
}

/* ── COVER ── */
#cover {
  background: var(--navy-dark);
  display: flex; align-items: center;
  padding: 0; overflow: hidden; position: relative;
  min-height: 100vh;
}

.cover-ship-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #051830 0%, #0D2B55 40%, #1B5CA8 70%, #0A3060 100%);
  overflow: hidden;
}
.cover-ship-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
  mix-blend-mode: luminosity;
}

.cover-gradient-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 70%, rgba(91,163,232,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 30% 20%, rgba(14,42,90,0.6) 0%, transparent 70%);
  pointer-events: none;
}

.cover-lines {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.cover-lines svg { position: absolute; right: -60px; top: -60px; width: 70%; height: 140%; }

.cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,26,56,0.92) 35%, rgba(8,26,56,0.25) 100%);
}

.cover-content {
  position: relative; z-index: 2;
  padding: 100px 80px 80px;
  max-width: 620px;
  animation: coverIn 1s var(--ease) both;
}

@keyframes coverIn {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cover-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-mid);
  color: white; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 32px;
}

.cover-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--white); line-height: 1.1; margin-bottom: 12px;
}
.cover-title span { color: var(--blue-light); }

.cover-title2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white); line-height: 1.2; margin-bottom: 24px;
  font-weight: 700;
}

.cover-sub {
  font-size: 1rem; color: var(--text-light); font-weight: 300;
  line-height: 1.7; max-width: 440px; margin-bottom: 48px;
}

.cover-meta { display: flex; gap: 32px; }
.cover-meta-label {
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 2px;
}
.cover-meta-value { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.85); }

.cover-scroll {
  position: absolute; bottom: 32px; right: 60px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.3); font-size: 0.7rem;
  letter-spacing: 1px; text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.cover-scroll::after { content: '↓'; font-size: 1rem; }

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ── TOC ── */
#toc {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 0; align-items: stretch;
}

.toc-left {
  background: var(--navy); padding: 100px 64px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.toc-left::after {
  content: ''; position: absolute;
  bottom: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  border: 40px solid rgba(91,163,232,0.12);
}
.toc-left-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.6rem; color: white; line-height: 1.2; margin-bottom: 16px;
}
.toc-left-title span { color: var(--blue-light); }
.toc-left-desc {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.8; max-width: 340px;
}

.toc-right {
  padding: 100px 64px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--off);
}
.toc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem; color: var(--navy); margin-bottom: 36px;
}
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.toc-item {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 0; border-bottom: 1px solid rgba(13,43,85,0.08);
  cursor: pointer; text-decoration: none; color: inherit;
  transition: padding-left 0.25s var(--ease);
}
.toc-item:hover { padding-left: 8px; }
.toc-num { font-size: 0.68rem; font-weight: 700; color: var(--accent); min-width: 28px; letter-spacing: 0.5px; }
.toc-item-text { flex: 1; }
.toc-item-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.toc-item-desc { font-size: 0.72rem; color: #8AABBF; margin-top: 2px; }
.toc-arrow { color: #C4D8E8; font-size: 0.85rem; transition: color 0.2s, transform 0.2s; }
.toc-item:hover .toc-arrow { color: var(--accent); transform: translateX(4px); }

/* ── OVERVIEW ── */
#overview { background: var(--white); padding: 100px 80px; }

.overview-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 60px;
}
.overview-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem; color: var(--navy); line-height: 1.2;
}
.overview-note { font-size: 0.78rem; color: #8AABBF; max-width: 220px; text-align: right; line-height: 1.6; }

.overview-chart { display: flex; flex-direction: column; align-items: center; gap: 0; }

.ov-row {
  display: flex; justify-content: center;
  align-items: flex-start; gap: 16px; position: relative;
}
.ov-vline {
  width: 2px; height: 32px;
  background: linear-gradient(to bottom, var(--blue-mid), rgba(91,163,232,0.3));
  margin: 0 auto;
}
.ov-branch { display: flex; flex-direction: column; align-items: center; }
.ov-stub { width: 2px; height: 16px; background: rgba(91,163,232,0.4); }

.ov-card {
  border-radius: 8px; padding: 10px 18px;
  font-size: 0.74rem; font-weight: 600; text-align: center;
  white-space: nowrap; position: relative;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  cursor: default; display: flex; align-items: center; gap: 10px;
}
.ov-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(13,43,85,0.14); }

.ov-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: white;
  flex-shrink: 0; overflow: hidden;
  cursor: pointer;
}
.ov-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ov-avatar:hover { opacity: 0.85; transform: scale(1.1); transition: transform 0.2s, opacity 0.2s; }

.ov-card-text { text-align: left; }
.ov-card-name { font-size: 0.74rem; font-weight: 700; }
.ov-card-role { font-size: 0.6rem; font-weight: 400; opacity: 0.72; margin-top: 1px; }

.ov-card.root {
  background: var(--navy); color: white;
  padding: 12px 20px; border-radius: 10px;
  box-shadow: 0 4px 20px rgba(13,43,85,0.25);
}
.ov-card.root .ov-avatar { background: rgba(255,255,255,0.15); }
.ov-card.l1 { background: var(--blue); color: white; min-width: 170px; }
.ov-card.l1 .ov-avatar { background: rgba(255,255,255,0.2); }
.ov-card.l2 {
  background: var(--off); color: var(--navy);
  border: 1.5px solid rgba(27,92,168,0.18); min-width: 150px;
}
.ov-card.l2 .ov-avatar { background: var(--blue-mid); }
.ov-card.l3 {
  background: white; color: var(--blue-mid);
  border: 1px solid rgba(91,163,232,0.3); min-width: 130px;
}
.ov-card.l3 .ov-avatar { background: var(--blue-light); }

/* ── DIVISI SECTIONS ── */
.divisi-section {
  background: var(--off); padding: 100px 80px;
  border-top: 1px solid rgba(13,43,85,0.06);
}
.divisi-section:nth-child(even) { background: var(--white); }

.divisi-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 52px;
}
.divisi-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem; color: var(--navy);
}
.divisi-badge {
  background: var(--navy); color: white;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}

.dept-tree { display: flex; flex-direction: column; align-items: center; gap: 0; }
.dept-vline {
  width: 2px; height: 36px;
  background: linear-gradient(to bottom, var(--blue-mid), rgba(91,163,232,0.25));
}
.dept-row {
  display: flex; justify-content: center;
  align-items: flex-start; gap: 20px; flex-wrap: wrap;
}
.dept-branch { display: flex; flex-direction: column; align-items: center; }
.dept-stub { width: 2px; height: 20px; background: rgba(91,163,232,0.35); }

.emp-card {
  background: var(--white);
  border: 1.5px solid rgba(13,43,85,0.09);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  min-width: 200px; max-width: 240px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
  cursor: default; position: relative;
}
.emp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(13,43,85,0.12);
  border-color: var(--blue-light);
}
.emp-card.head {
  background: var(--navy); border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(13,43,85,0.28);
}
.emp-card.head .emp-name { color: white; }
.emp-card.head .emp-role { color: rgba(255,255,255,0.6); }
.emp-card.head .emp-div  { color: rgba(255,255,255,0.38); }

.emp-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: white;
  overflow: hidden; flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.emp-avatar:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 14px rgba(13,43,85,0.25);
}
.emp-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 50%;
}

.emp-info { flex: 1; min-width: 0; }
.emp-name {
  font-size: 0.78rem; font-weight: 700; color: var(--navy);
  line-height: 1.3; margin-bottom: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.emp-role { font-size: 0.66rem; font-weight: 500; color: var(--blue-mid); line-height: 1.3; margin-bottom: 1px; }
.emp-div  { font-size: 0.6rem; color: #9BBDD4; }

.emp-lvl-dot {
  position: absolute; top: 9px; right: 9px;
  width: 6px; height: 6px; border-radius: 50%;
}
.emp-card.head .emp-lvl-dot { background: var(--blue-light); }
.emp-card.l1   .emp-lvl-dot { background: var(--blue-mid); }
.emp-card.l2   .emp-lvl-dot { background: var(--blue-light); }
.emp-card.l3   .emp-lvl-dot { background: #A8D0F0; }

/* ── BACK COVER ── */
#backcover {
  background: var(--navy-dark); min-height: 40vh;
  display: flex; align-items: center;
  justify-content: space-between; gap: 60px;
  overflow: hidden; position: relative; padding: 80px;
}
.backcover-lines { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.backcover-lines svg { position: absolute; right: -40px; bottom: -60px; width: 55%; height: 150%; }

.backcover-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem; color: white; margin-bottom: 12px;
}
.backcover-title span { color: white; }

.backcover-sub { font-size: 0.88rem; color: var(--text-light); }

.backcover-meta {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.backcover-meta-line { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-align: right; }
.backcover-meta-line strong { color: rgba(255,255,255,0.75); font-weight: 600; }
.footer-logo { width: 80px; margin-top: 12px; opacity: 0.7; }

/* ── PHOTO MODAL ── */
.photo-modal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.photo-modal.open {
  opacity: 1; pointer-events: all;
}
.photo-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,26,56,0.82);
  backdrop-filter: blur(8px);
}
.photo-modal-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  transform: scale(0.88);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.photo-modal.open .photo-modal-content {
  transform: scale(1);
}
.photo-modal-content img {
  width: 340px; height: 340px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(8,26,56,0.5);
  border: 3px solid rgba(91,163,232,0.3);
}
.photo-modal-caption {
  text-align: center;
}
.photo-modal-caption .modal-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem; font-weight: 700; color: white;
  display: block; margin-bottom: 4px;
}
.photo-modal-caption .modal-role {
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  display: block;
}
.photo-modal-close {
  position: absolute; top: -16px; right: -16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 0.8rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.photo-modal-close:hover { background: rgba(255,255,255,0.22); }

/* ── SPOTLIGHT ── */
.spotlight {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  background: radial-gradient(
    600px circle at var(--mx, -9999px) var(--my, -9999px),
    rgba(91,163,232,0.055) 0%, transparent 70%
  );
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — tablet (max 900px)
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* NAV */
  nav {
    padding: 0 20px;
    height: 60px;
  }
  .nav-logo-text {
    font-size: 0.82rem;
  }
  .nav-links { display: none; }

  /* SECTIONS */
  section { padding: 80px 24px 60px; }

  /* COVER */
  #cover .cover-content {
    padding: 88px 28px 60px;
    max-width: 100%;
  }
  .cover-sub { max-width: 100%; }
  .cover-scroll { right: 24px; }

  /* TOC */
  #toc { grid-template-columns: 1fr; }
  .toc-left { padding: 60px 32px; min-height: auto; }
  .toc-right { padding: 48px 32px; }

  /* OVERVIEW */
  #overview { padding: 80px 16px; overflow-x: hidden; }
  .overview-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .overview-note { text-align: left; max-width: 100%; }

  /* Overview chart: scrollable horizontally pada tablet */
  .overview-chart {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  /* Kecilkan ov-card agar muat di layar sedang */
  .ov-card { padding: 8px 12px; gap: 8px; }
  .ov-card.l1 { min-width: 140px; }
  .ov-card.l2 { min-width: 120px; }
  .ov-card.l3 { min-width: 110px; }
  .ov-card-name { font-size: 0.68rem; }
  .ov-card-role { font-size: 0.56rem; }
  .ov-avatar { width: 26px; height: 26px; font-size: 0.58rem; }
  .ov-row { gap: 10px; }

  /* DIVISI SECTIONS */
  .divisi-section { padding: 80px 20px; }

  /* Dept tree: kartu lebih kecil, bisa wrap */
  .dept-row { gap: 10px; }
  .emp-card {
    min-width: 160px;
    max-width: 200px;
    padding: 12px 14px;
    gap: 10px;
  }
  .emp-avatar { width: 38px; height: 38px; font-size: 0.8rem; }
  .emp-name { font-size: 0.72rem; }
  .emp-role { font-size: 0.62rem; }

  /* BACK COVER */
  #backcover {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 28px;
    gap: 36px;
    min-height: auto;
  }
  .backcover-title { font-size: 1.8rem; }
  .backcover-meta { align-items: flex-start; }
  .backcover-meta-line { text-align: left; }

  /* MODAL */
  .photo-modal-content img { width: 260px; height: 260px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — mobile kecil (max 480px)
   ══════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* NAV — hanya logo icon + nama singkat */
  nav { padding: 0 16px; height: 56px; }
  .nav-logo { gap: 8px; }
  .nav-logo-icon { width: 30px; height: 30px; }
  .nav-logo-text { font-size: 0.72rem; }

  /* COVER */
  #cover .cover-content { padding: 80px 20px 48px; }
  .cover-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .cover-title2 { font-size: clamp(1.4rem, 6vw, 2rem); }
  .cover-sub { font-size: 0.88rem; margin-bottom: 32px; }
  .cover-meta { gap: 20px; }
  .cover-scroll { bottom: 20px; right: 20px; }

  /* TOC */
  .toc-left { padding: 48px 20px; }
  .toc-left-title { font-size: 2rem; }
  .toc-right { padding: 40px 20px; }
  .toc-title { font-size: 1.4rem; margin-bottom: 24px; }
  .toc-item { gap: 12px; padding: 14px 0; }
  .toc-item-name { font-size: 0.82rem; }
  .toc-item-desc { font-size: 0.68rem; }

  /* OVERVIEW — scroll horizontal */
  #overview { padding: 72px 0 48px; }
  .overview-header { padding: 0 16px; }
  .overview-title { font-size: 1.6rem; }

  .overview-chart {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    display: block;
    padding: 8px 0 20px;
  }

  /* Inner wrapper dengan lebar tetap agar semua card tidak terpotong */
  .ov-inner {
    width: 880px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }

  /* Card ringkas */
  .ov-card { padding: 7px 10px; gap: 6px; white-space: nowrap; min-width: unset; }
  .ov-card.root { padding: 9px 14px; }
  .ov-card.l1 { min-width: unset; }
  .ov-card.l2 { min-width: unset; }
  .ov-card.l3 { min-width: unset; }
  .ov-card-name { font-size: 0.62rem; }
  .ov-card-role { font-size: 0.52rem; }
  .ov-avatar { width: 22px; height: 22px; font-size: 0.5rem; }
  .ov-row { gap: 6px; flex-wrap: nowrap; }
  .ov-vline { height: 24px; width: 2px; }
  .ov-stub { height: 12px; width: 2px; }

  /* DIVISI SECTIONS */
  .divisi-section { padding: 72px 16px 48px; }
  .divisi-title { font-size: 1.5rem; }
  .divisi-header { margin-bottom: 36px; }

  /* Dept tree mobile: tetap horizontal agar hierarki terjaga */
  .dept-tree { overflow-x: auto; padding-bottom: 8px; }
  .dept-row {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .dept-branch { align-items: center; flex-shrink: 0; }
  .emp-card {
    min-width: 130px;
    max-width: 155px;
    padding: 10px 10px;
    gap: 8px;
  }
  .emp-avatar { width: 32px; height: 32px; font-size: 0.68rem; }
  .emp-name {
    font-size: 0.66rem;
    white-space: normal;
  }
  .emp-role { font-size: 0.58rem; }
  .emp-div  { font-size: 0.52rem; }
  .dept-vline { height: 24px; }
  .dept-stub { height: 14px; }

  /* BACK COVER */
  #backcover { padding: 48px 20px; gap: 28px; }
  .backcover-title { font-size: 1.5rem; }
  .backcover-sub { font-size: 0.82rem; }
  .backcover-meta-line { font-size: 0.68rem; }
  .footer-logo { width: 64px; }

  /* MODAL */
  .photo-modal-content img {
    width: calc(100vw - 48px);
    height: calc(100vw - 48px);
    max-width: 300px;
    max-height: 300px;
  }
  .photo-modal-caption .modal-name { font-size: 1rem; }
}